Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Need Help with SQL Statement
Message
From
26/09/1997 16:32:51
Dragan Nedeljkovich (Online)
Now officially retired
Zrenjanin, Serbia
 
 
To
20/09/1997 19:08:48
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Miscellaneous
Thread ID:
00050724
Message ID:
00051860
Views:
47
>> I know how to speed up SQL with Rushmore (if it's >>simple), but I know nothing about how VFP handles Union clause or nested >>selects. May be it's my personal habit, but I like do calculation process >>step-by-step, it could be more understandable after two-three >month...;))), >>After all, this doesn't matter ;) > >It matters a lot. And I agree that sometimes you can/must trade performance >for readability. But this doesn't mean readability = performance. :) > >Vlad I've had some cases where I simply had to cut the select into two or three simpler selects to gain speed. It's the case when more than two tables are involved, and at least one of them is large. The first select is used to cut down the number of records from the big table involved, and the second does the joins etc. Also, I've found a case when I get better off avoiding Select - it's when I pull out a small set of data from a large table, and the set has a common key value. Then Select * from the_table where customer=the_customer may be slower than Select the_table set order to customer seek the_customer copy to cursor while customer=the_customer The last command doesn't look like this, of course, but the idea is to copy the structure of the table into a cursor, seek the key, then scatter/insert into cursor while the key. It crosses my mind now that the case when this was quicker was when I didn't really have a key on the customer field, but rather a compound key starting with customer, so Rushmore probably never fired. Nevertheless, I didn't have to touch the table design, and it started working at a snap, while the Select did take a couple of seconds to perform.

back to same old

the first online autobiography, unfinished by design
What, me reckless? I'm full of recks!
Balkans, eh? Count them.
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform