LISTSERV at the University of Georgia
Menubar Imagemap
Home Browse Manage Request Manuals Register
Previous messageNext messagePrevious in topicNext in topicPrevious by same authorNext by same authorPrevious page (November 2007, week 4)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
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
Comments: To: sas-l@uga.edu
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;


Back to: Top of message | Previous page | Main SAS-L page