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 (June 2008, week 2)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:         Fri, 13 Jun 2008 10:02:17 +0530
Reply-To:     ajay ohri <ohri2007@GMAIL.COM>
Sender:       "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:         ajay ohri <ohri2007@GMAIL.COM>
Subject:      Re: how to get list of datasets "created" between SAS code?
Comments: To: unnatppatel@yahoo.com
In-Reply-To:  <cb33f772-4fa7-4fd9-9247-600642c5f003@e53g2000hsa.googlegroups.com>
Content-Type: text/plain; charset=ISO-8859-1

There are two ways

1) Do proc datasets lib=wrok; run;

at each stage you can check the datasets created and added to existing datasets, time of creation etc.

You can use ods to output this to a excel file (specify the file name distinctly) . And you can email that excel file to yourselves if the process is too long.

2) Go to the temporary folder (the one specified in your SAS options and you can see physical location in the output above ) and see the datasets being created visually .

Hope this helps.

Regards,

Ajay

www.decisionstats.com

On Fri, Jun 13, 2008 at 9:00 AM, Unnat Patel <unnatppatel@yahoo.com> wrote:

> Does anyone know how to get list of "newly" created datasets between > sas code. e.g. if I have written 20 line of sas code and executing SAS > code in one sessions (there might be datasets in work library created > prior to this) but would like to get list of "newly" created datasets > in work library between line 7 to line 15. Is it possible ? > > 1 sas code > 2 sas code > 3 sas code > 4 sas code > 5 sas code > 6 sas code > 7 sas code > 8 sas code > 9 sas code > 10 sas code > 11 sas code > 12 sas code > 13 sas code > 14 sas code > 15 sas code > 16 sas code > 17 sas code > 18 sas code > 19 sas code > 20 sas code >


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