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 (December 2004, week 3)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:         Thu, 16 Dec 2004 20:28:37 +0530
Reply-To:     Praveen <ipkrishna@gmail.com>
Sender:       "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:         Praveen <ipkrishna@GMAIL.COM>
Subject:      Re: Help: moviing data from temporary to permanent library
Comments: To: Victor Aina <aina@sfu.ca>
In-Reply-To:  <cprr6t$255$1@morgoth.sfu.ca>
Content-Type: text/plain; charset=US-ASCII

Hi, I am aware of three options to achieve this.

******* Option 1;

Options noxwait; x 'copy c:\~your path\*.sas7* d:\~new path'; run;

******** Option 2;

libname newlib 'd:\~your path'; proc copy in=work out=newlib; run;

******* Option 3;

proc datasets nolist; copy in=work out=newlib; quit; run;

******************************************; I hope these would wrk for you.

Cheers Praveen

On Thu, 16 Dec 2004 11:23:09 +0000, Victor Aina <aina@sfu.ca> wrote: > Hello everyone, > > I have many datasets associated with the temporary (WORK libname). > What I'd like to be able to do is move these datasets to a directory > and zip them up. I know I can do this by recreating the datasets in > another data step. > > Is there an easy way to avoid going through another data step? i.e. > copy these to a directory on my d: drive. And by the way, I run > SAS 9.1. on Windows XP. > > Thanks for any pointers. > > Victor. > -- > > +----------------------------------------------------------+ > | victor aina | e-mail: | fax:(503) 690-7396 | >

-- P. Krishna, New Delhi, India.


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