<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic A newbie needing more help with the physical file does not exist error. Please help! in SAS Studio</title>
    <link>https://communities.sas.com/t5/SAS-Studio/A-newbie-needing-more-help-with-the-physical-file-does-not-exist/m-p/561520#M7600</link>
    <description>&lt;P&gt;My professor has given me the following code but when I try to make the change to the path I continue to get the same message that it doesn't exist. I'm not sure if I'm putting the file in wrong or what's going on. I have tried numerous file names and paths, but nothing seems to go anywhere. (I've tried desktop folders, virtual box folders, SAS folders), so I'm obviously doing something wrong. I appreciate any help you can give me.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is what my professor gave me:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;

options nodate nonumber;
*ods pdf file=":\Users\khalil.shafie\OneDrive - University of Northern Colorado\courses\SRM-602\Summer2018-1\Assignments\hw2\sasoutputasgn02.pdf"  style=rtf notoc;

* Reading the data set in SAS ;
Data HSB;
INFILE 'C:\HSB.TXT' delimiter = '09'x;
/*change 'C:\' to an appropriate location*/
INPUT ID SEX RACE SES SCTYP HSP LOCUS CONCPT MOT CAR RDG WRTG MATH SCI CIV;

* Q8 ;

        

proc means data=Hsb n mean stddev ;
   var  CONCPT WRTG ;  run;
quit;    

proc freq data=Hsb ;
   table RACE*SEX/ nopercent nocol norow  ;  run;
quit;    


* Q9;

PROC MEANS  DATA=HSB MEAN STD STDERR N T PRT LCLM UCLM;
VAR CONCPT;
run;
* Q10;
DATA SET2;
SET  HSB;
ADJMATH = MATH-50;

PROC MEANS  DATA=SET2 MEAN STD STDERR N T PRT  alpha=.01 LCLM UCLM;
VAR ADJMATH ;
RUN;





*ods pdf close;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;This is one of the things I've tried:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;options nodate nonumber;
*ods pdf file=":\Users\khalil.shafie\OneDrive - University of Northern Colorado\courses\SRM-602\Summer2018-1\Assignments\hw2\sasoutputasgn02.pdf"  style=rtf notoc;

* Reading the data set in SAS ;
Data HSB;
INFILE "C:\Users\neals\Desktop\HSB.TXT" delimiter = '09'x;
/*change 'C:\' to an appropriate location*/
INPUT ID SEX RACE SES SCTYP HSP LOCUS CONCPT MOT CAR RDG WRTG MATH SCI CIV;

* Q8 ;

        

proc means data=Hsb n mean stddev ;
   var  CONCPT WRTG ;  run;
quit;    

proc freq data=Hsb ;
   table RACE*SEX/ nopercent nocol norow  ;  run;
quit;    


* Q9;

PROC MEANS  DATA=HSB MEAN STD STDERR N T PRT LCLM UCLM;
VAR CONCPT;
run;
* Q10;
DATA SET2;
SET  HSB;
ADJMATH = MATH-50;

PROC MEANS  DATA=SET2 MEAN STD STDERR N T PRT  alpha=.01 LCLM UCLM;
VAR ADJMATH ;
RUN;





*ods pdf close;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;This is my log:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt; Errors (1)
 Warnings (2)
 Notes (14)
 
 1          OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;
 NOTE: ODS statements in the SAS Studio environment may disable some output features.
 73         
 74         options nodate nonumber;
 75         *ods pdf file=":\Users\khalil.shafie\OneDrive - University of Northern
 75       ! Colorado\courses\SRM-602\Summer2018-1\Assignments\hw2\sasoutputasgn02.pdf"  style=rtf notoc;
 76         
 77         * Reading the data set in SAS ;
 78         Data HSB;
 79         INFILE "C:\Users\neals\Desktop\HSB.TXT" delimiter = '09'x;
 80         /*change 'C:\' to an appropriate location*/
 81         INPUT ID SEX RACE SES SCTYP HSP LOCUS CONCPT MOT CAR RDG WRTG MATH SCI CIV;
 82         
 83         * Q8 ;
 84         
 85         
 86         
 
 ERROR: Physical file does not exist, /opt/sasinside/SASConfig/Lev1/SASApp/C:\Users\neals\Desktop\HSB.TXT.
 NOTE: The SAS System stopped processing this step because of errors.
 WARNING: The data set WORK.HSB may be incomplete.  When this step was stopped there were 0 observations and 15 variables.
 WARNING: Data set WORK.HSB was not replaced because this step was stopped.
 NOTE: DATA statement used (Total process time):
       real time           0.00 seconds
       cpu time            0.01 seconds
       
 
 
 87         proc means data=Hsb n mean stddev ;
 88            var  CONCPT WRTG ;  run;
 
 NOTE: No observations in data set WORK.HSB.
 NOTE: PROCEDURE MEANS used (Total process time):
       real time           0.00 seconds
       cpu time            0.00 seconds
       
 
 89         quit;
 90         
 91         proc freq data=Hsb ;
 92            table RACE*SEX/ nopercent nocol norow  ;  run;
 
 NOTE: No observations in data set WORK.HSB.
 NOTE: PROCEDURE FREQ used (Total process time):
       real time           0.00 seconds
       cpu time            0.00 seconds
       
 
 93         quit;
 94         
 95         
 96         * Q9;
 97         
 98         PROC MEANS  DATA=HSB MEAN STD STDERR N T PRT LCLM UCLM;
 99         VAR CONCPT;
 100        run;
 
 NOTE: No observations in data set WORK.HSB.
 NOTE: PROCEDURE MEANS used (Total process time):
       real time           0.00 seconds
       cpu time            0.01 seconds
       
 
 101        * Q10;
 102        DATA SET2;
 103        SET  HSB;
 104        ADJMATH = MATH-50;
 105        
 
 NOTE: There were 0 observations read from the data set WORK.HSB.
 NOTE: The data set WORK.SET2 has 0 observations and 16 variables.
 NOTE: DATA statement used (Total process time):
       real time           0.00 seconds
       cpu time            0.00 seconds
       
 
 106        PROC MEANS  DATA=SET2 MEAN STD STDERR N T PRT  alpha=.01 LCLM UCLM;
 107        VAR ADJMATH ;
 108        RUN;
 
 NOTE: No observations in data set WORK.SET2.
 NOTE: PROCEDURE MEANS used (Total process time):
       real time           0.00 seconds
       cpu time            0.01 seconds
       
 
 109        
 110        
 111        
 112        
 113        
 114        *ods pdf close;
 115        
 116        OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;
 128        &lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 24 May 2019 20:20:58 GMT</pubDate>
    <dc:creator>Nealli</dc:creator>
    <dc:date>2019-05-24T20:20:58Z</dc:date>
    <item>
      <title>A newbie needing more help with the physical file does not exist error. Please help!</title>
      <link>https://communities.sas.com/t5/SAS-Studio/A-newbie-needing-more-help-with-the-physical-file-does-not-exist/m-p/561520#M7600</link>
      <description>&lt;P&gt;My professor has given me the following code but when I try to make the change to the path I continue to get the same message that it doesn't exist. I'm not sure if I'm putting the file in wrong or what's going on. I have tried numerous file names and paths, but nothing seems to go anywhere. (I've tried desktop folders, virtual box folders, SAS folders), so I'm obviously doing something wrong. I appreciate any help you can give me.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is what my professor gave me:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;

options nodate nonumber;
*ods pdf file=":\Users\khalil.shafie\OneDrive - University of Northern Colorado\courses\SRM-602\Summer2018-1\Assignments\hw2\sasoutputasgn02.pdf"  style=rtf notoc;

* Reading the data set in SAS ;
Data HSB;
INFILE 'C:\HSB.TXT' delimiter = '09'x;
/*change 'C:\' to an appropriate location*/
INPUT ID SEX RACE SES SCTYP HSP LOCUS CONCPT MOT CAR RDG WRTG MATH SCI CIV;

* Q8 ;

        

proc means data=Hsb n mean stddev ;
   var  CONCPT WRTG ;  run;
quit;    

proc freq data=Hsb ;
   table RACE*SEX/ nopercent nocol norow  ;  run;
quit;    


* Q9;

PROC MEANS  DATA=HSB MEAN STD STDERR N T PRT LCLM UCLM;
VAR CONCPT;
run;
* Q10;
DATA SET2;
SET  HSB;
ADJMATH = MATH-50;

PROC MEANS  DATA=SET2 MEAN STD STDERR N T PRT  alpha=.01 LCLM UCLM;
VAR ADJMATH ;
RUN;





*ods pdf close;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;This is one of the things I've tried:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;options nodate nonumber;
*ods pdf file=":\Users\khalil.shafie\OneDrive - University of Northern Colorado\courses\SRM-602\Summer2018-1\Assignments\hw2\sasoutputasgn02.pdf"  style=rtf notoc;

* Reading the data set in SAS ;
Data HSB;
INFILE "C:\Users\neals\Desktop\HSB.TXT" delimiter = '09'x;
/*change 'C:\' to an appropriate location*/
INPUT ID SEX RACE SES SCTYP HSP LOCUS CONCPT MOT CAR RDG WRTG MATH SCI CIV;

* Q8 ;

        

proc means data=Hsb n mean stddev ;
   var  CONCPT WRTG ;  run;
quit;    

proc freq data=Hsb ;
   table RACE*SEX/ nopercent nocol norow  ;  run;
quit;    


* Q9;

PROC MEANS  DATA=HSB MEAN STD STDERR N T PRT LCLM UCLM;
VAR CONCPT;
run;
* Q10;
DATA SET2;
SET  HSB;
ADJMATH = MATH-50;

PROC MEANS  DATA=SET2 MEAN STD STDERR N T PRT  alpha=.01 LCLM UCLM;
VAR ADJMATH ;
RUN;





*ods pdf close;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;This is my log:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt; Errors (1)
 Warnings (2)
 Notes (14)
 
 1          OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;
 NOTE: ODS statements in the SAS Studio environment may disable some output features.
 73         
 74         options nodate nonumber;
 75         *ods pdf file=":\Users\khalil.shafie\OneDrive - University of Northern
 75       ! Colorado\courses\SRM-602\Summer2018-1\Assignments\hw2\sasoutputasgn02.pdf"  style=rtf notoc;
 76         
 77         * Reading the data set in SAS ;
 78         Data HSB;
 79         INFILE "C:\Users\neals\Desktop\HSB.TXT" delimiter = '09'x;
 80         /*change 'C:\' to an appropriate location*/
 81         INPUT ID SEX RACE SES SCTYP HSP LOCUS CONCPT MOT CAR RDG WRTG MATH SCI CIV;
 82         
 83         * Q8 ;
 84         
 85         
 86         
 
 ERROR: Physical file does not exist, /opt/sasinside/SASConfig/Lev1/SASApp/C:\Users\neals\Desktop\HSB.TXT.
 NOTE: The SAS System stopped processing this step because of errors.
 WARNING: The data set WORK.HSB may be incomplete.  When this step was stopped there were 0 observations and 15 variables.
 WARNING: Data set WORK.HSB was not replaced because this step was stopped.
 NOTE: DATA statement used (Total process time):
       real time           0.00 seconds
       cpu time            0.01 seconds
       
 
 
 87         proc means data=Hsb n mean stddev ;
 88            var  CONCPT WRTG ;  run;
 
 NOTE: No observations in data set WORK.HSB.
 NOTE: PROCEDURE MEANS used (Total process time):
       real time           0.00 seconds
       cpu time            0.00 seconds
       
 
 89         quit;
 90         
 91         proc freq data=Hsb ;
 92            table RACE*SEX/ nopercent nocol norow  ;  run;
 
 NOTE: No observations in data set WORK.HSB.
 NOTE: PROCEDURE FREQ used (Total process time):
       real time           0.00 seconds
       cpu time            0.00 seconds
       
 
 93         quit;
 94         
 95         
 96         * Q9;
 97         
 98         PROC MEANS  DATA=HSB MEAN STD STDERR N T PRT LCLM UCLM;
 99         VAR CONCPT;
 100        run;
 
 NOTE: No observations in data set WORK.HSB.
 NOTE: PROCEDURE MEANS used (Total process time):
       real time           0.00 seconds
       cpu time            0.01 seconds
       
 
 101        * Q10;
 102        DATA SET2;
 103        SET  HSB;
 104        ADJMATH = MATH-50;
 105        
 
 NOTE: There were 0 observations read from the data set WORK.HSB.
 NOTE: The data set WORK.SET2 has 0 observations and 16 variables.
 NOTE: DATA statement used (Total process time):
       real time           0.00 seconds
       cpu time            0.00 seconds
       
 
 106        PROC MEANS  DATA=SET2 MEAN STD STDERR N T PRT  alpha=.01 LCLM UCLM;
 107        VAR ADJMATH ;
 108        RUN;
 
 NOTE: No observations in data set WORK.SET2.
 NOTE: PROCEDURE MEANS used (Total process time):
       real time           0.00 seconds
       cpu time            0.01 seconds
       
 
 109        
 110        
 111        
 112        
 113        
 114        *ods pdf close;
 115        
 116        OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;
 128        &lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 24 May 2019 20:20:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/A-newbie-needing-more-help-with-the-physical-file-does-not-exist/m-p/561520#M7600</guid>
      <dc:creator>Nealli</dc:creator>
      <dc:date>2019-05-24T20:20:58Z</dc:date>
    </item>
    <item>
      <title>Re: A newbie needing more help with the physical file does not exist error. Please help!</title>
      <link>https://communities.sas.com/t5/SAS-Studio/A-newbie-needing-more-help-with-the-physical-file-does-not-exist/m-p/561521#M7601</link>
      <description>SAS UE uses local drive that you set up on start up, which is it a linked drive. You access it via:&lt;BR /&gt;&lt;BR /&gt;/folders/myfolders/FILES. &lt;BR /&gt;&lt;BR /&gt;Another option, create a shared folder to your files. Then go to Servers Files &amp;amp; Folders and find the file. Right click it and copy the path from properties and use that.</description>
      <pubDate>Fri, 24 May 2019 20:26:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/A-newbie-needing-more-help-with-the-physical-file-does-not-exist/m-p/561521#M7601</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-05-24T20:26:27Z</dc:date>
    </item>
  </channel>
</rss>

