Online File

How to use this page


Rick Aster: Professional SAS Programming Secrets: Contents

Chapter 16
Program 16c
DICTIONARY tables

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;

 O /\

Global
Statements

RICK ASTER

SAS

BOOKS

Tech | Dictionary

Download | Rastinate

Rick Aster

Professional SAS Programming Secrets

Contents/Online Files

Corrections