Click here to Skip to main content
15,867,308 members
Articles / Database Development / SQL Server
Article

SQL Server 2000 Collation Changer

Rate me:
Please Sign up or sign in to vote.
4.88/5 (99 votes)
3 Mar 2008CPOL4 min read 632.6K   10.1K   101   196
Change collation order for all text columns in a database

Introduction

Do you have an SQL application that you need to deploy in another country? Do you need to change the collation of your SQL database and all objects in it? If the answer is yes, then this could be a very slow process to do manually. If you run the alter database script as below:

SQL
ALTER DATABASE [My_Database] COLLATE My_Collation

You will find that the database default collation is changed for new columns, but all existing columns will retain the original collation order. Changing the collation on each column is a non-trivial task, as you need to drop all indexes, full text indexes and constraints associated with the column, along with any user-defined functions. Once the collation order has been changed, you can recreate the indexes, constraints and functions. This C# tool simplifies the process by creating an SQL script that does everything for you.

Using the Code

Simply run the program, select your SQL Server database and a new collation order. You have two options: you can either simply get the program to create an SQL script that you can run later (press the "Script Only" button) or you can actually make the changes (press the "Script and Execute" button). Things to note:

  • Always back up your database before running this tool. I cannot guarantee that you will not lose data. A number of the statements cannot be run in a transaction, so there is no way of detecting a failure and rolling back.
  • On SQL Server 2000, nText columns will be recreated so your column order will be slightly different.
  • To run the script, the program sets the database into single user mode to run the ALTER DATABASE [db_name] COLLATE [Collation Name] statement. You should therefore ensure that there are no open connections on the database before running the script (use the stored procedure SP_WHO to identify any open connections).
  • Since the script will drop and then rebuild all indexes and foreign keys in the database, you will find that it could take a long time to complete (possibly hours).
  • All columns will be changed to the new collation order, even if they have a non-default collation before running the script.
  • SQL 2005 support is gradually being added. If you encounter issues or missing functionality, please let me know.
  • If you change from a case-insensitive to a case-sensitive collation order, you may find errors occurring when recreating check constraints and functions. This is because your scripts will be parsed in a case-sensitive manner once the collation order has been changed. To work around this, I would recommend running the script in the program and reviewing the output once the script has run to completion. The error messages relating to each failure will be displayed in red under the code that failed.

Change History

18 January 2006

  • Original posting.

7 March 2006

  • Fixed bug where scripting failed on databases with case-sensitive collation orders. Script no longer drops foreign key constraints unless necessary.

30 August 2006

  • Fixed bug when scripting objects owned by different owners than the owner executing the script are used. May be seen as an error when scripting to #spindtab_____.
  • Fixed bug where scripting did not recreate permissions on table functions after they were recreated.

20 March 2007

  • Triggers now disabled while changes are made.
  • Altered sequence of execution to prevent errors following user feedback.
  • Added some SQL 2005 support. Let me know if you encounter any issues.
  • Resolved issue when recreating a table function where the body of a table function is greater than 4000 characters.
  • Reinstated the functionality to only delete the required indexes and primary keys.

10 October 2007

  • Added support for changing collation where full text indexes exist, including changing language used in the full text search.
  • Fixed issue when insteadof triggers exist on views.
  • Fixed issue where nText columns end up allowing nulls when they were originally declared NOT NULL.
  • SQL 2005 allows collation order of nText columns to be modified. The script has been modified to reflect this new functionality.
  • Fixed issues encountered when user-defined data types are used.
  • Added additional SQL 2005 support, including refactoring scripting logic to allow various parts of the script to be customised for different versions of SQL server. If you need to debug or customise the scripts, it should be a little easier to understand.
  • Converted from VB.NET to C#, as I use C# at work all the time and it is more familiar to me.
  • Moved execution task to a worker thread to give a more responsive UI.
  • Fixed issues when system databases have case-sensitive sort order.

1 March 2008

  • Created new code for handling indexes, statistics and relationships in SQL 2005. This new code uses the 2005 schema views and adds scripting support for new SQL 2005 functionality, such as included columns in non-clustered indexes.
  • Fixed issues where ANSI_NULLS setting is not correct after recreation of table functions.
  • Various minor UI bugs fixed.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer RXP Services
Australia Australia
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralRe: SQL Server 2005 bugs Pin
Paul Hatcher3-May-07 22:19
Paul Hatcher3-May-07 22:19 
GeneralRe: SQL Server 2005 bugs Pin
Vitali Lisau23-Aug-09 19:55
Vitali Lisau23-Aug-09 19:55 
QuestionAdd the ability to set to Server Default? Pin
jbrodin16-Apr-07 4:24
jbrodin16-Apr-07 4:24 
AnswerRe: Add the ability to set to Server Default? Pin
Alex Baker16-Apr-07 4:35
Alex Baker16-Apr-07 4:35 
GeneralRe: Add the ability to set to Server Default? Pin
jbrodin16-Apr-07 5:00
jbrodin16-Apr-07 5:00 
GeneralRe: Add the ability to set to Server Default? Pin
Alex Baker17-Apr-07 21:38
Alex Baker17-Apr-07 21:38 
GeneralDidnot change collation Pin
mastervision129-Mar-07 21:17
mastervision129-Mar-07 21:17 
GeneralRe: Didnot change collation Pin
Alex Baker29-Mar-07 21:34
Alex Baker29-Mar-07 21:34 
GeneralRe: Didnot change collation Pin
mastervision129-Mar-07 23:51
mastervision129-Mar-07 23:51 
GeneralRe: Didnot change collation Pin
Alex Baker30-Mar-07 0:38
Alex Baker30-Mar-07 0:38 
GeneralRe: Didnot change collation [modified] Pin
mastervision11-Apr-07 14:29
mastervision11-Apr-07 14:29 
GeneralRe: Didnot change collation Pin
mastervision110-Apr-07 20:08
mastervision110-Apr-07 20:08 
GeneralRe: Didnot change collation Pin
Alex Baker16-Apr-07 4:41
Alex Baker16-Apr-07 4:41 
GeneralRe: Didnot change collation Pin
SoftCity9-Aug-07 20:28
SoftCity9-Aug-07 20:28 
GeneralCollation Tool Pin
Dustin'''RuNNin*bLind27-Mar-07 7:07
Dustin'''RuNNin*bLind27-Mar-07 7:07 
GeneralRe: Collation Tool Pin
Alex Baker27-Mar-07 21:05
Alex Baker27-Mar-07 21:05 
NewsRe: Collation Tool Pin
chatchapan27-Mar-07 23:28
chatchapan27-Mar-07 23:28 
GeneralRe: Collation Tool Pin
Roman Ivanashko17-Jul-07 22:42
Roman Ivanashko17-Jul-07 22:42 
GeneralCollation Tool for SQL Server 2005 Pin
Dustin'''RuNNin*bLind27-Mar-07 6:58
Dustin'''RuNNin*bLind27-Mar-07 6:58 
GeneralGenius Pin
Marc Heiligers23-Mar-07 4:46
Marc Heiligers23-Mar-07 4:46 
NewsRe: Genius Pin
Alex Baker23-Mar-07 4:52
Alex Baker23-Mar-07 4:52 
GeneralNo Subject Pin
bailey20321-Mar-07 2:00
bailey20321-Mar-07 2:00 
GeneralRe: Pin
Alex Baker21-Mar-07 2:04
Alex Baker21-Mar-07 2:04 
GeneralRe: Pin
bailey20321-Mar-07 2:46
bailey20321-Mar-07 2:46 
GeneralRe: Success Pin
bailey20322-Mar-07 7:14
bailey20322-Mar-07 7:14 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.