Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Sort Order ID description

Status
Not open for further replies.

GoodOmens

Programmer
Feb 5, 2002
47
US
We have been making our first attempt at restoring a SQL 6.5 database to a different server and have been getting a sort order error:
"The database you are attempting to load was dumped under a different sort order ID(42) than the one currently running on this server (32) and at least one of them is a non-binary sort order"
After spending a lot of time searching for something relating the text choices for sort order that we see during a rebuild of the new server with the Sort Order ID that we were given in our error message, I finally found the following information and thought it might be helpful to others in the future.

The Sort order IDs used can be found in the SETUP.INF file on the installation CD:
(Around line #9769)

Sort850SelList = { "Dictionary order, case-insensitive","nocase.850","42",+
"Binary order","cp850bin.850","40", +
"Dictionary order, case-sensitive","diction.850","41", +
"Dictionary order, case-insensitive, uppercase preference","nocasepr.850","43", +
"Dictionary order, case-insensitive, accent-insensitive","noaccent.850","44", +
"Strict compatibility with Version 1.x case-insensitive databases","nocase34.850","49", +
"Alternate dictionary order, case-sensitive","altdict.850","55",+
"Alternate dictionary order, case-insensitive","altnocs.850","61",+
"Alternate dictionary order, case-insensitive, uppercase preference","altnocsp.850","56",+
"Alternate dictionary order, case-insensitive, accent-insensitive","altnoacc.850","57",+
"Scandinavian dictionary order, case-sensitive","scandict.850","59",+
"Scandinavian dictionary order, case-insensitive, uppercase preference","scannocp.850","58",+
"Scandinavian dictionary order, case-insensitive, no preference", "scannocs.850", "60",+
"Custom",$(!UserDefined),""}


 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top