Date: Thu, 13 May 2004 13:59:17 -0400
Reply-To: "Richard A. DeVenezia" <radevenz@IX.NETCOM.COM>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: "Richard A. DeVenezia" <radevenz@IX.NETCOM.COM>
Subject: TIP: Source of SASHELP views
Ever wonder what is behind the SAS view SASHELP.V?????.
This lists all of them:
proc sql;
select 'describe view sashelp.' || memname
into :describe separated by ';'
from dictionary.views
where libname = 'SASHELP';
&describe;
quit;
The answer to "What is behind DICTIONARY.????" is a SI black box known as
the "discovery process".
--
Richard A. DeVenezia
http://www.devenezia.com/downloads/sas/samples
|