Date: Fri, 9 Jun 2000 16:20:46 -0400
Reply-To: Jiannan Wu <JWu06@MAXWELL.SYR.EDU>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Jiannan Wu <JWu06@MAXWELL.SYR.EDU>
Subject: Problem with INFILE
Content-Type: text/plain; charset="iso-8859-1"
Hi, I am a new comer of SAS. Today i try to use 'infile' to input data. When
I tried the followed code, I was hinted that the Physical file does not
exist though it does exist. Why? Who can point out the mistake for me?
Thanks a lot.
Jiannan
++++++++++++++++++++++++++++++
97 data samplel;
99 infile 'c:\sas\samplel';
100 input X Y;
ERROR: Physical file does not exist, c:\sas\samplel.
NOTE: The SAS System stopped processing this step because of errors.
WARNING: The data set WORK.SAMPLEL may be incomplete. When this step was
stopped there were 0
observations and 2 variables.
WARNING: Data set WORK.SAMPLEL was not replaced because this step was
stopped.
101 proc print data=samplel;