Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Optimization of a JOIN
Message
From
04/03/2008 14:27:28
 
 
To
All
General information
Forum:
Visual FoxPro
Category:
Databases,Tables, Views, Indexing and SQL syntax
Title:
Optimization of a JOIN
Environment versions
Visual FoxPro:
VFP 9 SP2
OS:
Windows XP SP2
Network:
Windows 2000 Server
Database:
Visual FoxPro
Miscellaneous
Thread ID:
01298581
Message ID:
01298581
Views:
91
I am using SQL ShowPlan to investigate the performance of the following SQL SELECT:

SELECT ManifestHdr.dManifest, ManifestHdr.lOpen, ManifestHdr.iQty,;
COUNT(ManifestDtl.iPk) AS nScanned, ManifestHdr.iPk,
Manifesthdr.iFkSystems;
FROM SN!ManifestHdr;
LEFT OUTER JOIN SN!ManifestGrp;
ON ManifestGrp.iFkManHdr = ManifestHdr.iPk;
LEFT OUTER JOIN SN!ManifestDtl;
ON ManifestDtl.iFkManGrp = ManifestGrp.iPk;
WHERE ManifestHdr.iFkSystems = ?vp_ManifestHdr_iFkSystems;
GROUP BY ManifestHdr.iPk;
ORDER BY ManifestHdr.dManifest

I get the following output from SYS(3054,11)

Using index tag Ifksystems to rushmore optimize table manifesthdr
Using index tag Deleted to rushmore optimize table manifesthdr
Rushmore optimization level for table manifesthdr: full
Rushmore optimization level for table manifestgrp: none
Rushmore optimization level for table manifestdtl: none
Joining table manifesthdr and table manifestgrp using index tag Ifkmanhdr
Joining intermediate result and table manifestdtl using index tag Ifkmangrp

Why are manifestgrp and manifestdtl tables not optimized if I have indexes on:
ManifestGrp.iFkManHdr and
ManifestDtl.iFkManGrp ?
-Malcolm Donald
Accelerant, Inc.
Next
Reply
Map
View

Click here to load this message in the networking platform