Viewing 15 posts - 46 through 60 (of 62 total)
gklundt (12/1/2010)
From BOL (TSQL Reference on ALTER LOGIN):
You cannot use ALTER_LOGIN with the DISABLE argument to deny access to a Windows group. For example,...
October 7, 2013 at 11:59 am
May be number of queries in the report cause OutOfMemory exception. Tyr tuning the queries. You may handle rendering of report by checking record count, but what if the query...
October 1, 2013 at 8:00 am
I remember one of my developers has done this. Let me check with him and get back to you.
September 30, 2013 at 8:36 pm
Agree with Snigdha. It's not supported in SSRS.
September 30, 2013 at 8:30 pm
vina117831 (9/20/2013)
September 25, 2013 at 10:11 am
tibco29 (9/11/2013)
Example: Does the column1,column2 exists:
case1:return column1 and column2
case2:return column1 or column2
case3:return column1
case4:return column2
case5:return...
September 24, 2013 at 12:16 am
Sean Lange (9/17/2013)
C Hrushi (9/17/2013)
*********************************************************************************************
DECLARE @Q NVARCHAR(4000),
@CName VARCHAR(255)
DECLARE ColCur CURSOR
FOR
SELECT C.name as Column_name
FROMsys.columns C
LEFT JOIN sys.tables t
on C.object_id = t.object_id
WHEREt.name...
September 17, 2013 at 12:28 pm
It is possible to achieve. Not sure what values you would be comparing. Please provide some more details.
September 16, 2013 at 12:58 pm
Do you need to create the third table by querying first two tables?
September 12, 2013 at 2:28 pm
I don't see any relationship between these two tables.
Is it that in your Table A, you are maintaining list of Tables
and AssociatedTable1 is an another table for which...
September 12, 2013 at 1:50 pm
ChrisM@Work (9/12/2013)
kapil_kk (9/11/2013)
Amit Raut (9/11/2013)
SELECT * FROM Table AINNER JOIN Table B
WHERE LEFT(A.UserName, 7) = B.ID -- RELEVANT FIELD FROM TABLE B
Its not a good practice to use functions like...
September 12, 2013 at 11:54 am
If you need to handle another condition along with NULL, you may write something like
CASE
WHEN TCBOV.cboValueName IS NOT NULL THEN
CASE TCBOV.cboValueName ...
September 11, 2013 at 6:29 pm
SELECT * FROM Table A
INNER JOIN Table B
WHERE LEFT(A.UserName, 7) = B.ID -- RELEVANT FIELD FROM TABLE B
September 11, 2013 at 6:21 pm
Not sure if this helps you out. In a similar situation, I created a report parameter with values same as the sub-report. For my sub-report, I have a sql stored...
September 9, 2013 at 5:05 pm
Viewing 15 posts - 46 through 60 (of 62 total)