Viewing 5 posts - 16 through 20 (of 20 total)
There was a post that hit the nail on the head. Your where clause that stipulates that RAT_FILENAME IS NOT NULL does not limit results due to there being...
May 16, 2006 at 10:17 am
If you check BOL for CREATE PROCEDURE you will find it...
You could use it for test isolation. Say you are upgrading a procedure that is used in a few...
February 10, 2006 at 9:26 am
Here is another illastration of a solution for your consideration;
EXECUTE sp_MSforeachtable 'PRINT Object_Name(Object_ID(''?''))'
February 6, 2006 at 9:29 am
Or you could use a substatute char in the string. There are obvious disadvantages with this, but there is a lot less string concantination and that is a good...
November 15, 2005 at 10:18 am
You could also look at QuoteName()
DECLARE @quote Char(1)
SET @quote = ''''
PRINT 'WHERE LastName = ' + QuoteName( @LName, @quote )
PRINT 'WHERE TDate = ' + QuoteName(...
November 15, 2005 at 10:12 am
Viewing 5 posts - 16 through 20 (of 20 total)