Reputation: 135
I have a SQL Server database server with customer database which is being used to store and retrieve data. I plan to extend the database further by adding new tables and relations. Can I copy the current database make the necessary modifications and then import or merge data from old database to this new one?
Upvotes: 0
Views: 869
Reputation: 135
From: http://okayguru.blogspot.in/2012/03/copy-one-database-to-another-database.html
There are several ways to do this, below are two options:
Option 1:
You can now run the generated query on the new database.
Option 2:
Upvotes: 2