migrating objects to production box

  • DBArtisan and RapidSQL from Embarcadero both analyse dependencies when creating scripts.  They're nice tools, but pretty pricey.


    And then again, I might be wrong ...
    David Webb

  • try DB Ghost (http://www.dbghost.com) - it's cheap and it works.

     

     

    regards,

    Mark Baekdal

    MSN m_baekdal@hotmail.com

    +44 (0)141 416 1490

    +44 (0)208 241 1762

    http://www.dbghost.com

    http://www.innovartis.co.uk

    Build, Comparison and Synchronization from Source Control = Database change management for SQL Server

     

     

  • When scripts are generated using EM the first thing generated are the IF EXISTS... DROP [object] commands for the objects that need to be recreated.

    If you execute your script once in QA, then delete, or comment out the DROPS, you can then execute your script over and over until no errors (due to dependencies) are left.

    This solution is not elegant, but it doesn't cost anything.

  • You might want to search this site for chNge management and migration processes. There are quite a few great threads on what you want to do.

    RegardsRudy KomacsarSenior Database Administrator"Ave Caesar! - Morituri te salutamus."

  • the scptxfr tool comes with sql server and generates the objects in a runnable order...

    C:\>scptxfr /s <serverName>\<instance> /I /d <databaseName> /f <scriptOutputFile.sql>

Viewing 5 posts - 1 through 6 (of 6 total)

You must be logged in to reply to this topic. Login to reply