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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

collating sequence error

Status
Not open for further replies.

budz

Programmer
May 3, 2001
17
Hi everybody, I have an exe file. When I run, there is an error "collating sequence not found", What does it mean? Is the file corrupted or incomplete? pls help.
 
HI
The default of SET COLLATE is MACHINE.
Earlier version had this as default. However, if you are using different Language in your database, you can set it to a more suitable one for you.

The point is that, if you have created an INdex with SET COLLATE TO GENERAL or your other language.. and then you switch to your default setting of SET COLLATE TO MACHINE, it could give an error.

Another chance is the index is corrupt (could be due to switching of the SET COLLATE without proper re-indexing. SO the remedy could be to reindex.

A utility to reindex CDX files (not the conventional reindexing.. it drops the TAG and then recreates it), is provided by me in FAQ...
****************************
ReBuild your CDX index files
faq184-1033
****************************

Hope you find this useful :)








So when the index is created using this default and after that, if you SET COLLATE

If your data doesn't include diacritical marks, such as accents (á) or umlauts (ü), you can improve performance by using the machine collating sequence because:

Non-machine index keys are twice as large because they contain the diacritical information.
Non-machine collation uses many special rules for indexing characters to return proper results.
Because the machine collate sequence is faster, it's usually preferred for joins and searching, while other collate sequences are perfect for ordering records.

When you create an index, Visual FoxPro uses the current setting of SET COLLATE. Therefore, if you want to create two indexes with two collating sequences, you can use a sequence of commands such as the following:

ramani :-9
(Subramanian.G)
FoxAcc
ramani_g@yahoo.com
LET KNOW IF THIS HELPED. ENOUGH EXPERTS ARE HERE TO HELP YOU OUT! BEST OF LUCK :)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top