SAS Institute. The Power to Know

SAS/ACCESS(R) 9.2 Interface to PC Files: Reference

Previous Page | Next Page

The LIBNAME Engines

SASTRACELOC



Prints SASTRACE information to a specified location
Valid in: OPTIONS statement, configuration file, SAS invocation
Default value: stdout

Syntax
Details
Example 1. Write Information to the SAS Log

Syntax

SASTRACELOC=stdout | SASLOG | FILE 'path-and-filename'


Details

SASTRACELOC= enables you to specify where to put the trace messages that are generated by SASTRACE=. By default, the output goes to the default output location for your operating environment. You can send the output to a SAS log by specifying SASTRACELOC=SASLOG.


Example 1. Write Information to the SAS Log

This example runs on a PC platform and writes trace information to the TRACE.LOG file in the work directory on the C drive.

options sastrace='d,,d,d' sastraceloc=file 'c:\work\trace.log';

Previous Page | Next Page | Top of Page