Previous Page | Next Page

The SQL Procedure

DESCRIBE Statement


Displays a PROC SQL definition in the SAS log.
Restriction: PROC SQL views are the only type of view allowed in a DESCRIBE VIEW statement.
Featured in: Reporting from DICTIONARY Tables

DESCRIBE TABLE table-name <, ... table-name>;
DESCRIBE VIEW proc-sql-view <, ... proc-sql-view>;
DESCRIBE TABLE CONSTRAINTS table-name <, ... table-name>;


Arguments

table-name

specifies a PROC SQL table. table-name can be a one-level name, a two-level libref.table name, or a physical pathname that is enclosed in single quotation marks.

proc-sql-view

specifies a PROC SQL view. proc-sql-view can be a one-level name, a two-level libref.view name, or a physical pathname that is enclosed in single quotation marks.


Details

Previous Page | Next Page | Top of Page