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 2008, week 4)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:         Mon, 24 Nov 2008 01:30:38 -0800
Reply-To:     DavidB <david.n.brennan@GMAIL.COM>
Sender:       "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:         DavidB <david.n.brennan@GMAIL.COM>
Organization: http://groups.google.com
Subject:      Re: How to save the output of 'proc datasets' to a dataset?
Comments: To: sas-l@uga.edu
Content-Type: text/plain; charset=ISO-8859-1

An alternative would be to forget about ODS and just access the views in the SASHELP library. For example, if you want information on the DSH library you could do the following:

DATA DSH_DATA; SET SASHELP.VTABLE(WHERE=(LIBNAME="DSH")); RUN;

HTH,

David


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