Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
IDX indexes
Message
 
 
To
All
General information
Forum:
Visual FoxPro
Category:
Databases,Tables, Views, Indexing and SQL syntax
Title:
IDX indexes
Environment versions
Visual FoxPro:
VFP 8 SP1
OS:
Windows XP
Database:
Visual FoxPro
Miscellaneous
Thread ID:
01167343
Message ID:
01167343
Views:
49
Hi everybody,

I have a huge application which looks like it was converted from FoxBase into VFP8. It uses IDX indexes. I'm wondering if these indexes can be used in SQL Select?

I'm trying the following select statement, which takes too long to execute:
SELECT Styles.Style, ;
sum(IIF(Orders.Acc = "HOUSE" and (not Approved == "" OR not App_Date = {}), ;
Or_Items.qty-Or_Items.shiped-Or_Items.can_qty, 000000000.00)) as nHouseQty, ;
sum(IIF(Orders.Acc = "HOUSE" and (not Approved == "" OR not App_Date = {}), ;
000000000.00, Or_Items.qty-Or_Items.shiped-Or_Items.can_qty)) as nCustomerQty ;
from Styles INNER JOIN Or_Items ON Styles.Style = Or_Items.Style ;
INNER JOIN Orders ON Or_Items.PON = Orders.PON ;
WHERE &lcWhere ;
group by 1 INTO CURSOR Dummy readwrite
where lcWhere is
[Styles.In_Stock <=1 ] + ;
[and not Styles.Style IN ("F","S","X","D","M", "CD", "PK") ] + ;
[and not "." $ Styles.Style and Styles.DisContinu = "A"]
AFAIK Styles has an index (IDX) on Style, OR_Items has an index on Style, Orders has an index on PON. I also tried to first select info from Styles, then join with two others - it is still very slow.

What can I do to speed this select?

Thanks in advance.
If it's not broken, fix it until it is.


My Blog
Next
Reply
Map
View

Click here to load this message in the networking platform