How do I attach a DB that is 655 to a SQL 2005 612 instance? -
I am trying to attach my database to the server that is running SQL2005 and I have an error Which says that my DB version 655 is not supported on the 612 system is there a way to attach or replace my DB that is causing structural changes which prevent me from enclosing my DB?
Solution
If you right click on the database you want to upgrade and go to generate the script. After this, you can make a copy of your database for the target version and find out as an error list that has problems with tables and what are the problems. After making changes to your DB, you can use the script on the target machine You can. Do not forget to select your indexed and add data to the script.
I do not know why no one has written it, but for those people who are suffering there, I would recommend it as my first option. It works great for me.
I think that like a version check in SQL Server I think that you
2 options:
1) Patch you get the database (Bring it up to the latest patch level)
2) Attach your DB to a DB with the required patch level , Export / backup, move backup to abusive server and re-import / restore it.
Comments
Post a Comment