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?
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
|