The DataDirect drivers, used by some SAS/ACCESS® software products, might need to create temporary files for larger results sets. If the directory in which this file is being created does not have enough space, an error like the following might appear in the SAS log:
To redirect this file to a different location, use the following information.
In a Windows operating environment, the ODBC driver uses the GetTempPath() function to get the directory for the file.
The GetTempPath function checks for the existence of environment variables in the following order and uses the first path found:
GetTempFileName is used to create a filename that contains the prefix "qe."
In a UNIX operating environment, the ODBC driver uses tempnam() to create a temporary file that contains the prefix "qe."
If the environment variable QE_TMPDIR is set, the file is created in this directory (if appropriate). Otherwise, the function chooses where to put the file.