Click here to Skip to main content
15,896,606 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Sql 2008 in my Server, and I also have a another Server with SQL 2005,I want do the migration (2008 to 2005), so I generate script ,but the script has 900MB size (it cannot be excuted), so I generate script per Object (431 scripts), because there are so many triggers and FOREIGN KEYs some script excuted failed, I dont want to install SQL server 2008 , is there any ways to do the migration?
Posted
Comments
Mehdi Gholam 3-Nov-11 2:30am    
Why are you going backwards to 2005?
chenghuichao 3-Nov-11 2:55am    
2008 one is online one, 2005 one is for testing ,I just want to Synchronize the database.
Mehdi Gholam 3-Nov-11 4:16am    
Just upgrade your testing SQL and you can save a lot of hassle.

1 solution

As you are aware that there is no backward compatibilty from sql server 2008 to 2005.

The only option is (which you already tried) to script the complete database and generate insert scripts to migrate data to sql server 2005.

Once this is done, you can do the data comparision using any comparison tool to validate.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900