vote up 2 vote down star

We have a Microsoft SQL Server 2005 database that needs to be converted back to SQL Server 2000. Does anybody have any suggestions on the approach or tools I should use to perform this conversion? We don't utilise any SQL Server 2005 specific features in the database so this should not make the conversion problematic.

I should mention that I have found the Microsoft SQL Server Export facility very buggy in dealing with Auto Generated Keys so suggestions for alternative tools would be appreciated.

flag

80% accept rate
That sounds extreme. You probably have a reason for wanting to do so, but I would suggest reconsidering as 2000 is now an 8 year old technology ... the only way is up! – Scott Bennett-McLeish Oct 8 '08 at 4:42
Doesn't switching from 2000 to 2005 cost money? :) – MusiGenesis Oct 8 '08 at 4:46
Was the database "upgraded", or was it created on 2005 in the first place? If it was "upgraded", it may be in compatibility mode for 8.0 anyway. What is the motivation for the downgrade back to 2000? – Pittsburgh DBA Oct 9 '08 at 14:00

4 Answers

vote up 5 vote down check

Generate a full script for your database in SQL2005, and change the "Script for Server Version" option to SQL Server 2000. You can now recreate your database on the SQL 2000 server. After this is complete, use the export data feature to export from SQL 2005 to SQL 2000.

link|flag
vote up 1 vote down

Get a trial of RedGate SQL ToolBelt, then use:

  1. SQL Compare to transfer the database
  2. SQL Data Compare to transfer the data
link|flag
I second this. RedGate does a good job of scripting out the correct sql statements when moving between db versions. The MS products tend to be generate script only readable by the same version. – Aaron Fischer Oct 8 '08 at 5:18
vote up 0 vote down
  1. Script out the entire database
  2. Create a new SQL2000 database
  3. Run the script on the new database
  4. Import the data from the SQL2005 to the SQL2000 database (lots of ways to do this)

There probably is a tool somewhere that does all this for you, although I don't know how commonly this is done.

link|flag
vote up 0 vote down

What you want to do is called downgrading. Google gives lots of results, but here's a good walkthrough on a thread of Microsoft's forums (scroll down near the bottom of the page).

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.