The information in this article applies to:
SUMMARYThis article explains how Visual FoxPro uses memory and disk space during an SQL SELECT command. MORE INFORMATION
SQL uses as much internal memory as it can for file caching (read
buffering), sorting (for ORDER BY, GROUP BY, SELECT DISTINCT, and UNION
DISTINCT), and performing joins. This memory is limited by the setting of
SYS(3050).
In addition, temporary files are used while performing a sort if the entire sort cannot be performed in memory. The size of the temporary sort files for a given sort should be no larger than: (record length + key length) * (number of records) * 2In addition, SQL creates a temporary index file to perform a join if no index exists. Creating the index may create temporary files also. Additional query words: VFoxWin
Keywords : |
Last Reviewed: August 24, 1999 © 2000 Microsoft Corporation. All rights reserved. Terms of Use. |