Pages

Thursday, August 1, 2013

Widgets

Produce a table of contents with Dataset Name, Var, and Obs

options ps=77 ls=132 nodate pageno=1;
title 'FORD data files';
proc sql;
describe table dictionary.tables;
select memname, memlabel, nobs, nvar, modate from dictionary.tables
where libname='DT';
quit;

No comments:

Post a Comment