<?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 Re: File does not exist in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/File-does-not-exist/m-p/700949#M214585</link>
    <description>&lt;P&gt;Libref is assigned successfully. It's somewhere with reading in the data set.&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;%LET	CourseRoot = /home/u49699746/BIOS 6680;
LIBNAME HypAnl    "&amp;amp;CourseRoot/Hypertension Study/Data/4_Analysis";
OPTIONS	FMTSEARCH = (HypTabs.HypFormats WORK LIBRARY)
		NOFMTERR;
Data hypanl.hypanalysis1;
Set hypanl.hypanalysis1;
run;

1          OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;
 72         
 73         %LETCourseRoot = /home/u49699746/BIOS 6680;
 74         LIBNAME HypAnl    "&amp;amp;CourseRoot/Hypertension Study/Data/4_Analysis";
 NOTE: Libref HYPANL was successfully assigned as follows: 
       Engine:        V9 
       Physical Name: /home/u49699746/BIOS 6680/Hypertension Study/Data/4_Analysis
 75         OPTIONSFMTSEARCH = (HypTabs.HypFormats WORK LIBRARY)
 76         NOFMTERR;
 77         
 78         Data hypanl.hypanalysis1;
 79         Set hypanl.hypanalysis1;
 80         run;
 
 NOTE: There were 0 observations read from the data set HYPANL.HYPANALYSIS1.
 NOTE: The data set HYPANL.HYPANALYSIS1 has 0 observations and 0 variables.
 NOTE: DATA statement used (Total process time):
       real time           0.01 seconds
       user cpu time       0.00 seconds
       system cpu time     0.01 seconds
       memory              736.31k
       OS Memory           30116.00k
       Timestamp           11/23/2020 04:07:00 PM
       Step Count                        82  Switch Count  1
       Page Faults                       0
       Page Reclaims                     91
       Page Swaps                        0
       Voluntary Context Switches        37
       Involuntary Context Switches      0
       Block Input Operations            0
       Block Output Operations           160
       
 
 81         
 82         OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;
 94     &lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 23 Nov 2020 16:07:38 GMT</pubDate>
    <dc:creator>rdevoss</dc:creator>
    <dc:date>2020-11-23T16:07:38Z</dc:date>
    <item>
      <title>File does not exist</title>
      <link>https://communities.sas.com/t5/SAS-Programming/File-does-not-exist/m-p/700928#M214567</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I'm trying to complete an assignment for my SAS course. I'm having difficulty using a dataset after uploading to the correct folder in sas studio. I'm receiving the error:&amp;nbsp;&lt;SPAN&gt; ERROR: File data does not exist.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tried renaming the uploaded file to hypanalysis11 to see what the error is:&lt;/P&gt;&lt;P&gt;%LET CourseRoot = /home/u49699746/BIOS 6680;&lt;BR /&gt;LIBNAME name "&amp;amp;dataset";&lt;/P&gt;&lt;P&gt;Data name.data11;&lt;BR /&gt;Set name.data1;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Log is attached to this post along with screenshot of folder tree.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 10 Dec 2020 15:12:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/File-does-not-exist/m-p/700928#M214567</guid>
      <dc:creator>rdevoss</dc:creator>
      <dc:date>2020-12-10T15:12:33Z</dc:date>
    </item>
    <item>
      <title>Re: File does not exist</title>
      <link>https://communities.sas.com/t5/SAS-Programming/File-does-not-exist/m-p/700936#M214575</link>
      <description>&lt;P&gt;Please post logs by copying the text of the entire data step or procedure or code in question, then open a code box on the forum using the &amp;lt;/&amp;gt; icon and then paste the text.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Many of us do not want to, or by organization policy cannot, open attachments such as word documents from unknown sources.&lt;/P&gt;
&lt;P&gt;Plus the copy/paste should be less work on your part.&lt;/P&gt;
&lt;P&gt;Additionally when you create DOCX files you may get character changes that means what you see is not what was really submitted. Smart quotes are one common problem changing straight programming quote characters like " to curly versions, which do not work with code.&lt;/P&gt;</description>
      <pubDate>Mon, 23 Nov 2020 15:37:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/File-does-not-exist/m-p/700936#M214575</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2020-11-23T15:37:24Z</dc:date>
    </item>
    <item>
      <title>Re: File does not exist</title>
      <link>https://communities.sas.com/t5/SAS-Programming/File-does-not-exist/m-p/700938#M214577</link>
      <description>&lt;P&gt;Did you check that your lib was assigned successfully and maybe if your dataset shows up there?&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc contents data=hypanl.hypanalysis1;
quit;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Kind Regards&lt;/P&gt;
&lt;P&gt;David&lt;/P&gt;</description>
      <pubDate>Mon, 23 Nov 2020 15:48:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/File-does-not-exist/m-p/700938#M214577</guid>
      <dc:creator>DavidHD</dc:creator>
      <dc:date>2020-11-23T15:48:54Z</dc:date>
    </item>
    <item>
      <title>Re: File does not exist</title>
      <link>https://communities.sas.com/t5/SAS-Programming/File-does-not-exist/m-p/700947#M214583</link>
      <description>&lt;P&gt;Thank you for clarifying that. It makes total sense to not put a .docx in there.&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;1          OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;
 72         
 73         Data hypanl.hypanalysis11;
 74         Set hypanl.hypanalysis1;
 ERROR: File HYPANL.HYPANALYSIS1.DATA does not exist.
 75         run;
 
 NOTE: The SAS System stopped processing this step because of errors.
 WARNING: The data set HYPANL.HYPANALYSIS11 may be incomplete.  When this step was stopped there were 0 observations and 0 variables.
 NOTE: DATA statement used (Total process time):
       real time           0.01 seconds
       user cpu time       0.01 seconds
       system cpu time     0.00 seconds
       memory              532.59k
       OS Memory           29604.00k
       Timestamp           11/23/2020 03:06:26 PM
       Step Count                        41  Switch Count  2
       Page Faults                       0
       Page Reclaims                     84
       Page Swaps                        0
       Voluntary Context Switches        28
       Involuntary Context Switches      0
       Block Input Operations            0
       Block Output Operations           160
       
 
 76         
 77         OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;
 89   &lt;/PRE&gt;&lt;P&gt;I think the error is reading in the data with the Options Fmtsearch since the error is saying there are no columns in the data set.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 23 Nov 2020 16:05:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/File-does-not-exist/m-p/700947#M214583</guid>
      <dc:creator>rdevoss</dc:creator>
      <dc:date>2020-11-23T16:05:46Z</dc:date>
    </item>
    <item>
      <title>Re: File does not exist</title>
      <link>https://communities.sas.com/t5/SAS-Programming/File-does-not-exist/m-p/700949#M214585</link>
      <description>&lt;P&gt;Libref is assigned successfully. It's somewhere with reading in the data set.&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;%LET	CourseRoot = /home/u49699746/BIOS 6680;
LIBNAME HypAnl    "&amp;amp;CourseRoot/Hypertension Study/Data/4_Analysis";
OPTIONS	FMTSEARCH = (HypTabs.HypFormats WORK LIBRARY)
		NOFMTERR;
Data hypanl.hypanalysis1;
Set hypanl.hypanalysis1;
run;

1          OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;
 72         
 73         %LETCourseRoot = /home/u49699746/BIOS 6680;
 74         LIBNAME HypAnl    "&amp;amp;CourseRoot/Hypertension Study/Data/4_Analysis";
 NOTE: Libref HYPANL was successfully assigned as follows: 
       Engine:        V9 
       Physical Name: /home/u49699746/BIOS 6680/Hypertension Study/Data/4_Analysis
 75         OPTIONSFMTSEARCH = (HypTabs.HypFormats WORK LIBRARY)
 76         NOFMTERR;
 77         
 78         Data hypanl.hypanalysis1;
 79         Set hypanl.hypanalysis1;
 80         run;
 
 NOTE: There were 0 observations read from the data set HYPANL.HYPANALYSIS1.
 NOTE: The data set HYPANL.HYPANALYSIS1 has 0 observations and 0 variables.
 NOTE: DATA statement used (Total process time):
       real time           0.01 seconds
       user cpu time       0.00 seconds
       system cpu time     0.01 seconds
       memory              736.31k
       OS Memory           30116.00k
       Timestamp           11/23/2020 04:07:00 PM
       Step Count                        82  Switch Count  1
       Page Faults                       0
       Page Reclaims                     91
       Page Swaps                        0
       Voluntary Context Switches        37
       Involuntary Context Switches      0
       Block Input Operations            0
       Block Output Operations           160
       
 
 81         
 82         OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;
 94     &lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 23 Nov 2020 16:07:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/File-does-not-exist/m-p/700949#M214585</guid>
      <dc:creator>rdevoss</dc:creator>
      <dc:date>2020-11-23T16:07:38Z</dc:date>
    </item>
    <item>
      <title>Re: File does not exist</title>
      <link>https://communities.sas.com/t5/SAS-Programming/File-does-not-exist/m-p/700950#M214586</link>
      <description>I've definitely noticed the curly version of " creating issues. Thanks!</description>
      <pubDate>Mon, 23 Nov 2020 16:09:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/File-does-not-exist/m-p/700950#M214586</guid>
      <dc:creator>rdevoss</dc:creator>
      <dc:date>2020-11-23T16:09:04Z</dc:date>
    </item>
    <item>
      <title>Re: File does not exist</title>
      <link>https://communities.sas.com/t5/SAS-Programming/File-does-not-exist/m-p/700951#M214587</link>
      <description>&lt;P&gt;Your file is called&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;HypAnalysis1.sas7bdat&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;A filename like that will prevent SAS from finding the dataset. The physical filenames of SAS datasets on UNIX (a case-sensitive operating system) MUST be lowercase. MUST.&lt;/P&gt;</description>
      <pubDate>Mon, 23 Nov 2020 16:09:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/File-does-not-exist/m-p/700951#M214587</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2020-11-23T16:09:38Z</dc:date>
    </item>
  </channel>
</rss>

