Forum Replies Created

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

  • RE: Unused Objects in the Server

    I would suggest the following changes to handle issues in database naming.

    IF EXISTS (SELECT * FROM tempdb..sysobjects

    WHERE id = object_id(N'[tempdb]..[#UnwantedTables]'))

    drop table #UnwantedTables

    GO

    IF EXISTS (SELECT * FROM tempdb..sysobjects

    WHERE id = object_id(N'[tempdb]..[#tablelist]'))

    drop...

  • RE: ConnectionWrite

    OK I'll try that

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