KnowledgeBase Archive

An Archive of Early Microsoft KnowledgeBase Articles

View on GitHub

Q136765: How Memory & Disk Space Are Used During an SQL SELECT Command

Article: Q136765
Product(s): Microsoft FoxPro
Version(s): 
Operating System(s): 
Keyword(s): 
Last Modified: 25-AUG-1999

-------------------------------------------------------------------------------
The information in this article applies to:

- Microsoft Visual FoxPro for Windows, version 3.0 
-------------------------------------------------------------------------------

SUMMARY
=======

This 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).

When executing complex queries, SQL sometimes generates intermediate temporary
tables. These temporary tables consist of the result of one of the following:

- A JOIN of two source tables (or previous intermediate results).

  -or-

- A SORT of a source table (or previous intermediate result) to satisfy an
  ORDER BY, GROUP BY, SELECT DISTINCT, or UNION DISTINCT.

In many cases, a join and a sort or multiple sorts can be combined into one pass,
removing an intermediate temporary table result.

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) * 2

In 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          :  
Technology        : kbVFPsearch kbAudDeveloper kbVFP300

=============================================================================

THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES SO THE FOREGOING LIMITATION MAY NOT APPLY.

Copyright Microsoft Corporation 1986-2002.