Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Bad performance
Message
De
04/03/2002 20:35:35
Mike Yearwood
Toronto, Ontario, Canada
 
Information générale
Forum:
Visual FoxPro
Catégorie:
Base de données, Tables, Vues, Index et syntaxe SQL
Titre:
Divers
Thread ID:
00612305
Message ID:
00628184
Vues:
33
Hi Colin

Its my understanding that Rushmore Optimization cannot work as effectively with SET ORDER TO as it can without it. The set order will far outweigh any benefit gained by the seek.

I built a table with this code...

CREATE TABLE SPEED.DBF FREE ;
(Spd_ID I, ;
Spd_Char C(10), ;
Spd_Date D, ;
Spd_DT T)
LOCAL lnI, lnX, Spd_ID, Spd_Char, Spd_Date, Spd_DateTime
FOR lnI = 1 TO 1000000
SPD_ID = m.lnI
SPD_CHAR = STR(m.lnI)
*This will give me a set of records
*with the same date / date time.
lnX = m.lnI/100
SPD_DATE = {^2000-01-01}+m.lnX
SPD_DT = {^2000-01-01 00:00:00}+m.lnX
INSERT INTO SPEED FROM MEMVAR
IF MOD(m.lnI,1000) = 0
WAIT WINDOW STR(m.lnI) NOWAIT
ENDIF
ENDFOR
INDEX ON SPD_ID TAG SPD_ID
INDEX ON SPD_CHAR TAG SPD_CHAR
INDEX ON SPD_DATE TAG SPD_DATE
INDEX ON SPD_DT TAG SPD_DT
WAIT CLEAR

Then I timed bits of code similar to the ones you posted. I ran this on a local hard drive with 256 megs of RAM and a P3 650.

LOCAL lnA,lnI, Spd_Date
USE SPEED
Spd_Date = {^2027-05-19}
lnA=SECONDS()
FOR lnI = 1 TO 10
SELECT SPEED
SET FILTER TO Spd_Date=m.Spd_Date
SCAN
?SPD_ID
ENDSCAN
ENDFOR
?SECONDS()-lnA

lnA=SECONDS()
FOR lnI = 1 TO 10
SELECT SPEED
SET ORDER TO TAG Spd_Date
SEEK(m.Spd_Date)
SET FILTER TO Spd_Date=m.Spd_Date
SCAN
?SPD_ID
ENDSCAN
ENDFOR
?SECONDS()-lnA

The timing for the first loop is 0.084 seconds and the second is 5.288 seconds. The second loop is significantly slower.
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform