Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Is it acceptable?
Message
 
To
06/07/2001 08:20:53
Hilmar Zonneveld
Independent Consultant
Cochabamba, Bolivia
General information
Forum:
Visual FoxPro
Category:
Databases,Tables, Views, Indexing and SQL syntax
Miscellaneous
Thread ID:
00527318
Message ID:
00527441
Views:
31
Also, if you force your codes to be written to the table in uppercase (if applicable) you will not need UPPER() in index expression

>If the expression is "fully optimized", it looks like you have an index on alltrim(upper(ino)), etc. This might be a problem; an index expression can not have a variable length! For full optimization, try changing to some expression that has a fixed length, like a space-padded expression. See padr().
>
>If the fields have trailing spaces, you don't need alltrim() for the filter: upper(bcode) = "AW" will return all records that begin with "AW" (but please check: SET EXACT).
>
>Also, check how many records are returned for each individual part of the expression: upper(ino), upper(bcode), upper(loccode). If one of these expressions returns too many records (say, more than a thousand), delete the corresponding index.
>
>Hilmar.
>
>>Hi,
>> my SQL
>>
>>

>>SELECT Ino, bCode ;
>>FROM Stock_Status ;
>>WHERE ALLTRIM(UPPER(INO)) = "012" AND ALLTRIM(UPPER(BCODE)) = "AW" AND ;
>> ALLTRIM(UPPER(LOCCODE)) == "KL" ;
>>GROUP BY INO,BCODE ;
>>INTO CURSOR csrResult
>>
>>

>>
>>SYS(3054) show this query run with full optimized.
>>
>>Thnak you
Nick Neklioudov
Universal Thread Consultant
3 times Microsoft MVP - Visual FoxPro

"I have not failed. I've just found 10,000 ways that don't work." - Thomas Edison
Previous
Reply
Map
View

Click here to load this message in the networking platform