Online File
Rick Aster: Professional SAS Programming Secrets: Contents
Use SQL statements to list the DICTIONARY tables and the columns of DICTIONARY tables.
Requires: SAS 9
* Professional SAS Programming Secrets Program 16c DICTIONARY tables *; proc sql; select * from dictionary.dictionaries; describe table dictionary.titles;