Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Speed Test
Message
From
04/08/2000 08:02:37
 
 
To
04/08/2000 07:13:06
General information
Forum:
Visual FoxPro
Category:
Databases,Tables, Views, Indexing and SQL syntax
Title:
Miscellaneous
Thread ID:
00400917
Message ID:
00400930
Views:
11
Hello Kevin

If your child table has an index set which is likely then the records only appear to be grouped together so in effect multiple record pointer movements are taking place during your first method.

Also, I don't have your data set to try this test with, but I did notice that you are using a DO WHILE in one condition and a SCAN in the other. Scan is a little bit faster.

Do you have any relationships set on the child table, that of course would make a big difference.




>I have been debating on child records, whether to SELECT the related records

or SEEK and SKIP through them.
>
>I have always regarded the SEEK as the fastest method, but have usually run SELECT INTO CURSOR, and then SCAN the cursor.
>
>I ran a simple test and the SELECT came out quicker - can this be right.
>
>Here are my 2 methods:
>
>*** SEEK Method ***
>
>SELECT ChildTable
>IF SEEK(ParentTable.PriKey)
>DO WHILE ChildTable.ForKey = ParentTable.PriKey
>**** Some Code Here ****
>SKIP
>ENDDO
>*******************
>
>*** SELECT Method ***
>
>SELECT * FROM ChildTable;
>WHERE ForKey = ParentTable.PriKey;
>INTO CURSOR Cursor1
>
>SELECT Cursor1
>SCAN
>**** Some Code Here ****
>ENDSCAN
>*********************
>
>
>Could someone advise me if this is correct - why would the SEEK be slower if the SELECT has to input the Query into a CURSOR and then SCAN?
>
>Replies much appreciated
>Thanks
>Kev
Previous
Reply
Map
View

Click here to load this message in the networking platform