sql server - How do I migrate table schemas from one DB to another without damaging the data in the destination DB? -
How can I move from one DB to another table schema without damaging the data in destination DB?
I want to transfer my database to a live database with the copy of the development deployed in my data and run some scripts to do this. I need to upgrade the schema for some tables and make others. I have just figured that I have to check the tables in the destination DB against the deployment of each and then copy the new table, but it would be very difficult There is such a suggestion that how can I do this?
Compare SQL Registry Search the tool
You should be able to compare both the database and then generate the script based on the difference.
Comments
Post a Comment