I am upgrading / modifying my existing SQL Server 2005 database.
I would like to rename tables, change relationships in the schema and eventually migrate the data from the old tables to the new ones.
I was thinking of writing a script to :
- change the constraints, table names
- create the new tables 3 migrate the data from the old tables to the n开发者_JAVA百科ew ones 4 delete the old tables.
Are there any third-party tools I can use to migrate or can I do this with SQL Server DTS ? What is the best approach?
精彩评论