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 2010, week 3)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:         Wed, 16 Jun 2010 14:19:51 -0400
Reply-To:     "Peng, Lily" <Lily.Peng@PHARMA.COM>
Sender:       "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:         "Peng, Lily" <Lily.Peng@PHARMA.COM>
Subject:      How to read SAS version 6 dataset XX.ssd01 data in SAS 9?
Content-Type: text/plain; charset="us-ascii"

Hi,

I am trying to convert a SAS V6 dataset xx.ssd01 to SAS V9 dataset using PC SAS version 9. However, SAS (version 9) tells me that the library which has XX. ssd01 is empty. Anyone here knows how to handle it? Thanks a lot!!

libname adata v6 "C:\mydata"; libname adata9 v9 "c:\newdata"; proc copy in=adata out=adata9 memtype=data; run;

1131 libname adata v6 "C:\mydata"; NOTE: Libname ADATA refers to the same physical library as SOURCE6. NOTE: Libref ADATA was successfully assigned as follows: Engine: V6 Physical Name: C:\mydata 1132 libname adata9 v9 "c:\newdata"; NOTE: Libname ADATA9 refers to the same physical library as TMP2. NOTE: Libref ADATA9 was successfully assigned as follows: Engine: V9 Physical Name: c:\newdata 1133 proc copy in=adata out=adata9 memtype=data; 1134 run;

WARNING: Input library ADATA is empty. NOTE: PROCEDURE COPY used (Total process time): real time 0.01 seconds cpu time 0.00 seconds


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