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


    Kindest Regards,

    Ryaka

    It's not a Waste.
    Naps are a way of traveling painlessly through time to the Future

  • RE: ConnectionWrite

    OK I'll try that


    Kindest Regards,

    Ryaka

    It's not a Waste.
    Naps are a way of traveling painlessly through time to the Future

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