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 2000, week 3)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:         Mon, 19 Jun 2000 10:46:21 -0400
Reply-To:     Edward Heaton <HEATONE@WESTAT.COM>
Sender:       "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:         Edward Heaton <HEATONE@WESTAT.COM>
Subject:      Re: reading in V6.07 or earlier datasets with V8
Comments: To: "melissa@PHOR.COM" <melissa@PHOR.COM>
Content-Type: text/plain; charset="iso-8859-1"

Melissa, I recommend neither PROC COPY nor PROC DATASETS. Why create another copy of your data? It will just take up more space and you will have the prospect of the two data sets getting out of sync. Instead, use the appropriate library engine. E.g.:

Libname old v6 "path" ; /* This works for Windows data sets created under Releases 6.08 through 6.12. */ Libname older v604 "path" ; /* This works for Windows data sets created under Releases 6.03 and 6.04. */ Libname new v8 "path" ;

The paths can be the same if you have or want all versions in the same directory.

Hope this helps, Ed

Edward Heaton, SAS Senior Statistical Systems Analyst, Westat (An Employee-Owned Research Corporation), 1550 Research Boulevard, Room 2018, Rockville, MD 20850-3159 Voice: (301) 610-4818 Fax: (301) 294-3992 mailto:heatone@westat.com http://www.westat.com

-----Original Message----- From: melissa [mailto:melissa@PHOR.COM] Sent: Monday, June 19, 2000 8:56 AM To: SAS-L@LISTSERV.UGA.EDU Subject: reading in V6.07 or earlier datasets with V8

To all of those using SAS V8 I have a question:

What is the best way that you've found to read in datasets that were created in SAS V6.07 or earlier into V8? Currently my company has both V6.12 and V8 available to us, but sometimes we have to access clientele datasets that were created in V6.07 or earlier.

Both Proc Copy and Proc Datasets have been proposed as solutions to my dilemma, but I wasn't given clear examples of how to use them to accomplish this and I have been unable to figure it out thus far. Besides figuring out the proper code to use, a big source of confusion for me has been if I run the code in V6.12 or V8. If anyone could offer any insight I'd appreciate it very much.

Thank you in advance for your help, Melissa Gaiser


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