snippetsqlMinor
Installed SQL Server 2000 with wrong collation.. how to correct for entire server instance?
Viewed 0 times
2000howentiresqlwithinstancecorrectwrongcollationserver
Problem
I installed SQL 2000 Developer (yes, old, don't ask) on my laptop ... with the wrong collation. Oops!
It's showing Latin1_General_CI_AS, but it turns out I need to use SQL_Latin1_General_CP1_CI_AS to match another instance we're working with.
I found some references with Google on how to change the collation for a specific database, but I'd like to change it for the entire server instance. Is there a way to fix this without having to re-install SQL Server 2000? It's a pain with the service pack, security fixes, etc.
Thanks
It's showing Latin1_General_CI_AS, but it turns out I need to use SQL_Latin1_General_CP1_CI_AS to match another instance we're working with.
I found some references with Google on how to change the collation for a specific database, but I'd like to change it for the entire server instance. Is there a way to fix this without having to re-install SQL Server 2000? It's a pain with the service pack, security fixes, etc.
Thanks
Solution
Quite honestly, I think your easiest approach will be:
Also you know that SQL Server 2000 is well out of mainstream maintenance, right? And that quite soon there will have been FOUR major releases since then?
- backup your user databases
- uninstall SQL Server
- reinstall SQL Server with the right collation
- restore your databases
- fix the collation on the user databases
Also you know that SQL Server 2000 is well out of mainstream maintenance, right? And that quite soon there will have been FOUR major releases since then?
Context
StackExchange Database Administrators Q#13054, answer score: 7
Revisions (0)
No revisions yet.