Logo Linux Bash SSH Ubuntu Git Menu
 

sql server backup

Is there any way to to restore a backup created on sql server 2005, onto sql server 2000?

Edit: all I have is the .bak file, no access to the original database.

like image 893
pinniger Avatar asked Mar 22 '26 19:03

pinniger


1 Answers

Unfortunately, no. The database formats are incompatible. You should be able to restore it to a SQL 2005 instance and then copy it to the 2000 instance via the copy db wizard.

like image 199
squillman Avatar answered Mar 24 '26 08:03

squillman