Development to Production

  • Hi,

    I want to move(migrate) from Development to production server. I'm developing the database for reporting services. So now I want to put it into production .How can I do that ?

    Thanks

  • If the database is empty just script it out and all the objects/users and permissions and run the scripts in production.

    If the DB contains data the easiest way is to backup the database and restore it to the production server, moving the data and/or log files as needed.

    The probability of survival is inversely proportional to the angle of arrival.

  • You can also do a backup/restore or detach/attach on the production server, but be sure that it's what you really want to move.

    There are also compare tools, like SQL Compare and Data Compare from Red Gate Software (my employer) that will make this easy. Apex and Idera sell similar tools, all of which will work.

  • Dear Friends,

    if you are hesitating working in production

    Please follow below steps ....

    if your database is empty and you want to create fresh db

    1.) Create a db in your local machine and run all the scripts (schema, triggers, permissions etc) in case of any problem or facing any issue while executing the scripts. you can take a one more chance because you are working on your local.

    2.) Once you create the db in local successfully then take a back and restore in production

    3.) After that just check db users should be exist in SQL sever under security

    if you have data in your database then just follow the 2nd and 3rd steps

    In case of any question please feel free to ask

    Varinder Sandhu,
    http://www.varindersandhu.in/

  • I think sturner had replied the same above.

    "More Green More Oxygen !! Plant a tree today"

  • sturner (9/8/2010)


    If the database is empty just script it out and all the objects/users and permissions and run the scripts in production.

    Even if the database isn't empty, you can still script it, the users, and the objects out without bringing along development data.

    I recommend implementing some sort of Source Control, though, so you can track changes and go back to previous schema and object versions if the new ones don't work. Team Foundation Server, Visual Source Safe, or something similar.

    Brandie Tarvin, MCITP Database AdministratorLiveJournal Blog: http://brandietarvin.livejournal.com/[/url]On LinkedIn!, Google+, and Twitter.Freelance Writer: ShadowrunLatchkeys: Nevermore, Latchkeys: The Bootleg War, and Latchkeys: Roscoes in the Night are now available on Nook and Kindle.

  • just make sure the database(s) that you are trying to move to production are not the reportserver and reportservertemp databases. Doing that will wreck your production reporting services configuration.

  • fenwicc (9/22/2010)


    just make sure the database(s) that you are trying to move to production are not the reportserver and reportservertemp databases. Doing that will wreck your production reporting services configuration.

    Excellent point!!!

    Brandie Tarvin, MCITP Database AdministratorLiveJournal Blog: http://brandietarvin.livejournal.com/[/url]On LinkedIn!, Google+, and Twitter.Freelance Writer: ShadowrunLatchkeys: Nevermore, Latchkeys: The Bootleg War, and Latchkeys: Roscoes in the Night are now available on Nook and Kindle.

Viewing 8 posts - 1 through 7 (of 7 total)

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