Date: Fri, 23 Nov 2007 05:21:21 -0800
Reply-To: Peter <crawfordsoftware@GMAIL.COM>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Peter <crawfordsoftware@GMAIL.COM>
Organization: http://groups.google.com
Subject: Re: DICTIONARY.COLUMNS
Content-Type: text/plain; charset=ISO-8859-1
On 23 Nov, 13:11, ash007 <RamsamyAsh...@gmail.com> wrote:
> hello,
>
> is someone know how to watch the table DICTIONARY.COLUMNS ?
>
> thank.
try
viewTable sashelp.vcolumn
The describe statement of SQL will show the relationship with
dictionary.columns
proc sql;
describe view sashelp.vcolumn;
describe table dictionary.columns;
quit;
|