August 19, 2009 at 10:19 pm
I have SQL Server 2005 Enterprise edition on one of my 64 bit machine with SQL collation SQL_Latin1_General_CP850_CI_AS .
Once it was required to change the collation.So i detached my all databases and uninstall SQL server and then reinstall the same version -SQL Server 2005 Enterprise edition with SQL Collation SQL_Latin1_General_CP1_CI_AS .
Now after that when i am attaching my databases i am having following error and databases are unable to attach:
The database 'Catalogue' cannot be opened because it is version 612. This server supports version 611 and earlier. A downgrade path is not supported.
Could not open new database 'Catalogue'. CREATE DATABASE is aborted. (.Net SqlClient Data Provider)
Can any one please guide me in this regard.I am unable to understand version 612 and 611.Whats this?
August 20, 2009 at 1:13 am
August 29, 2009 at 6:33 pm
611/612 are two SQL Server 2005 versions.
If all you need is to change collation in one database all you need is alter database command... check here http://msdn.microsoft.com/en-us/library/ms174269.aspx
_____________________________________
Pablo (Paul) Berzukov
Author of Understanding Database Administration available at Amazon and other bookstores.
Disclaimer: Advice is provided to the best of my knowledge but no implicit or explicit warranties are provided. Since the advisor explicitly encourages testing any and all suggestions on a test non-production environment advisor should not held liable or responsible for any actions taken based on the given advice.September 7, 2009 at 12:49 pm
changing collation is a VERY complex subject:
1) differences between server/database collation will cause errors
2) after altering column collation you will only change collation for new rows - old will still have the old one ...
errors you mentioned (sql atached errors) - it means that before reinstallation your sql was at higher version - nothing more 😉 you should make proper updates and try reatached databases.
September 7, 2009 at 9:25 pm
Hi,
Yeah the issue have been resolved as i have forgot to install latest Service packs after the installation.
Thanks for your guidance
Viewing 5 posts - 1 through 4 (of 4 total)
You must be logged in to reply to this topic. Login to reply