Forum Replies Created

Viewing 5 posts - 16 through 20 (of 20 total)

  • RE: Outer Join Mystery

    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...

  • RE: Question of the Day for 10 Feb 2006

    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...

  • RE: Data Dictionary from within SQL Server 2000

    Here is another illastration of a solution for your consideration;

    EXECUTE sp_MSforeachtable 'PRINT Object_Name(Object_ID(''?''))'

  • RE: Get Away From Confusing Code

    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...

  • RE: Get Away From Confusing Code

    You could also look at QuoteName()

    DECLARE @quote Char(1)

    SET @quote = ''''

    PRINT 'WHERE LastName = ' + QuoteName( @LName, @quote )

    PRINT 'WHERE TDate = ' + QuoteName(...

Viewing 5 posts - 16 through 20 (of 20 total)