Viewing 12 posts - 136 through 147 (of 147 total)
The ParseName function was exactly what I was looking for and irritated that I couldn't find it.
I looked all over the net looking for string functions and none of the...
June 6, 2011 at 3:40 pm
The reason I am asking is that I am using the following query:
SELECT @IsIdentity = sys.columns.is_identity
FROM sys.columns
JOIN sys.objects
...
June 6, 2011 at 2:28 pm
Well, they aren't working for me but it isn't an issue since the other one does.
Thanks,
Tom
June 6, 2011 at 1:54 pm
Actually, the first 2 are not working (as they did before) for me in 2008 but do in 2005. Which is why I posted it. And I did...
June 6, 2011 at 1:32 pm
The first one gives me an empty set.
The second gives me blanks in my fields.
I did find one that works:
SELECT sys.columns.is_identity
FROM sys.columns
JOIN sys.objects
...
June 6, 2011 at 12:26 pm
The first one also works in 2005 and not 2008
Tom
June 6, 2011 at 12:04 pm
That was my problem.
I forgot the parens.
Thanks,
Tom
June 3, 2011 at 10:32 am
As you can see, I had come to the same conclusion you mention - dynamic SQL. I was just curious if there was a different way to handle it.
I...
May 27, 2011 at 10:28 am
What I am trying to do is try to return the values in certain reference tables. I don't know what the name of the tables are - this is...
May 26, 2011 at 11:15 pm
The problem is that the 9pt is not what is on the cells, they are all 10pt. Not sure why 9pt is in the code file.
Tom
March 24, 2011 at 12:38 pm
We have added and deleted columns as the reports were developed. Unfortunately, we can't really start over building them since we have about 30 reports that would be affected.
Seems...
March 24, 2011 at 12:37 pm
Right - but how would you do that for SSRS?
I am trying to set up my reports to get the Connection string and the Cube to be handled dynamically as...
March 2, 2011 at 1:20 pm
Viewing 12 posts - 136 through 147 (of 147 total)