Viewing 15 posts - 31 through 45 (of 47 total)
I did read those posts from BOL, and they seem to support my findings that you cannot solve my problem with the EXECUTE AS. Please consider the following scenario:
LOGIN1...
July 6, 2009 at 2:10 pm
You are correct about the SA access within a sproc...I only used it as an example as I didn't want to have to explain the whole security model I was...
July 6, 2009 at 1:48 pm
Basically from what I gather from your SP is that you are wanting to pass an array of intergers, and to do it, you are placing them into a string....
June 29, 2009 at 12:46 am
Not sure what you meant by "Hmm, question is how do you take a string and put it in the where clause against 'int' not too sure. "
You can compare...
June 26, 2009 at 12:29 pm
Thanks!
June 26, 2009 at 5:18 am
The last post read my html tags. Any way, you can try adding the break html tag as a string.
June 25, 2009 at 8:48 pm
If your email is set to decipher html tags, to get the carriage return you may also try adding:
'
' + '
'
June 25, 2009 at 8:45 pm
To get the carriage return try a couple things:
try char(10) + char(10) --Wierd, but sometimes adding two carriage returns = 1 carriage return in an email body
try char(13) + char(13)
You...
June 25, 2009 at 8:43 pm
When I want to retrun multiple rows into one string variable, I always use the coalesce function. In fact, I do this in several instances dealing with email as...
June 25, 2009 at 3:53 pm
We got around this issue by deleting the records in slices:
DECLARE @DeleteIncrament INT
SET @DeleteIncrament = 10000
WHILE 1 = 1 ...
February 19, 2009 at 2:06 pm
I really like this article on nulls:
http://www.sqlservercentral.com/articles/Advanced+Querying/2829/
February 19, 2009 at 2:01 pm
Thanks Jonathan for this very timely article! Can you advise whether this CLR function will work for UNC paths?
Thanks,
Carleton
February 5, 2009 at 1:08 am
You weren't terribly clear in the query you are working with, but if the columns you are trying to get a distinct list span multiple tables, you could do something...
October 14, 2008 at 9:00 am
Thanks Nathan, however, my database is already in the simple recovery mode. The simple mode does not eliminate or reduce logging (which is the goal in my case).
July 14, 2008 at 1:20 pm
Viewing 15 posts - 31 through 45 (of 47 total)