October 26, 2007 at 10:54 am
Quick question...
I have a 2005 instance with a DB that is set to compatibility level 80 - I am trying to update a test environment (2000 instance) with the DB and am hitting a wall. I have tried to restore and detach/attach, but neither method is working. Is it even possible???
Thanks in advance - J.
October 26, 2007 at 11:18 am
a SQL 2005 database, no matter what compatibility level it was set for, is still in SQL2005 format, and can't be restored or attached by previous versions of SQL.
compatibility level just says what syntax rules will be applied against TSQL's performed against the database, and not how it will be stored behind the scenes.
you'll need to use DTS to get all tables and objects from 2005 into 2000, instead of trying to restore...a bit slower, but it works.
Lowell
October 26, 2007 at 11:56 am
Thanks for the detail - that helps considerably.
Viewing 3 posts - 1 through 3 (of 3 total)
You must be logged in to reply to this topic. Login to reply