Forum Replies Created

Viewing 3 posts - 1 through 3 (of 3 total)

  • RE: Database Diagram printing problems

    Surprised this is the first time I have seen this question because I have always had this problem in SQL Server even from earlier releases. It was never fixed...

  • RE: Super Quick Table Meta Data

    Just change the lines that read:

    declare @DBName varchar (20) = PARSENAME (@TableName, 3)

    to

    declare @DBName varchar (20)

    set @DBName = PARSENAME (@TableName, 3)

    SQLServer 2005 just requires 2 rows instead of 1...

  • RE: Super Quick Table Meta Data

    But surprisingly, not triggers.

Viewing 3 posts - 1 through 3 (of 3 total)