Verifying Microsoft SQL Server Sort Order for a Siebel Upgrade
Environments: Development, Test and Production.
Databases: MS SQL Server only.
Platforms: Windows only.
Verify that the sort order of the master database and the database instance are the same. This prevents repository merge failure due to sort order mismatch.
Binary sort order is required for the development environment upgrade and strongly recommended for the production environment upgrades.
When you install Microsoft SQL Server, the collation method of the database instance is set by default to dictionary sort order. Every database you create thereafter inherits this setting.
When you create a database, you can accept the inherited sort order or specify the sort order. It is recommended that you set the sort order to binary at the Microsoft SQL Server instance level so that this sort order is inherited by newly created databases.
The sort order of the master database cannot be changed without rebuilding the instance. Consult your Microsoft documentation for instructions on setting database collation.
To verify that your database was created using a binary collation sequence
In the Query Analyzer window, enter the following command:
sp_helpsort
This command provides a sort order description.
Review the sort order description to verify binary sort order; for example:
Latin1_General_BIN
If you find that your Microsoft SQL Server database was not created using a binary collation sequence, then you must rebuild your database and reload your data. Review the Microsoft documentation for detailed instructions.