<?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: Filepatgh for lesson 2 in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Filepatgh-for-lesson-2/m-p/578597#M164113</link>
    <description>&lt;P&gt;My apology, I skipped the setup instructions on the training lessons, thanks for your support. It is working now.&lt;/P&gt;</description>
    <pubDate>Fri, 02 Aug 2019 00:44:13 GMT</pubDate>
    <dc:creator>Shakhane</dc:creator>
    <dc:date>2019-08-02T00:44:13Z</dc:date>
    <item>
      <title>Filepatgh for lesson 2</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Filepatgh-for-lesson-2/m-p/578356#M164019</link>
      <description>&lt;PRE&gt;proc contents data="/folders/myfolders/epg194/data/storm_summary.sas7dat";&lt;/PRE&gt;&lt;P&gt;I am encountering this error, could you please lead me to the right direction:&lt;/P&gt;&lt;DIV&gt;&lt;DIV class="sasSource"&gt;1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;72&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV class="sasSource"&gt;73&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; proc contents data="/folders/myfolders/epg194/data/storm_summary.sas7dat";&lt;/DIV&gt;&lt;DIV class="sasError"&gt;ERROR: Extension for physical file name "/folders/myfolders/epg194/data/storm_summary.sas7dat" does not correspond to a valid&lt;/DIV&gt;&lt;DIV class="sasError"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; member type.&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;74&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; run;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Statements not processed because of errors noted above.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: PROCEDURE CONTENTS used (Total process time):&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; real time&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0.00 seconds&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; cpu time&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0.00 seconds&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;75&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;76&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 01 Aug 2019 12:05:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Filepatgh-for-lesson-2/m-p/578356#M164019</guid>
      <dc:creator>Shakhane</dc:creator>
      <dc:date>2019-08-01T12:05:55Z</dc:date>
    </item>
    <item>
      <title>Re: Filepatgh for lesson 2</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Filepatgh-for-lesson-2/m-p/578399#M164035</link>
      <description>&lt;P&gt;For proc contents you need to supply a sas dataset name in a form of libname,dsname.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Try next code:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;libname mydata "/folders/myfolders/epg194/data";

proc contents data=mydata.storm_summary; run;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 01 Aug 2019 13:43:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Filepatgh-for-lesson-2/m-p/578399#M164035</guid>
      <dc:creator>Shmuel</dc:creator>
      <dc:date>2019-08-01T13:43:26Z</dc:date>
    </item>
    <item>
      <title>Re: Filepatgh for lesson 2</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Filepatgh-for-lesson-2/m-p/578404#M164037</link>
      <description>&lt;P&gt;The extension used by SAS for datasets is sas7bdat.&amp;nbsp; You did not include the letter b.&amp;nbsp; Is your file misnamed or is it just a typo in the program?&lt;/P&gt;</description>
      <pubDate>Thu, 01 Aug 2019 13:49:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Filepatgh-for-lesson-2/m-p/578404#M164037</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2019-08-01T13:49:13Z</dc:date>
    </item>
    <item>
      <title>Re: Filepatgh for lesson 2</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Filepatgh-for-lesson-2/m-p/578597#M164113</link>
      <description>&lt;P&gt;My apology, I skipped the setup instructions on the training lessons, thanks for your support. It is working now.&lt;/P&gt;</description>
      <pubDate>Fri, 02 Aug 2019 00:44:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Filepatgh-for-lesson-2/m-p/578597#M164113</guid>
      <dc:creator>Shakhane</dc:creator>
      <dc:date>2019-08-02T00:44:13Z</dc:date>
    </item>
    <item>
      <title>Re: Filepatgh for lesson 2</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Filepatgh-for-lesson-2/m-p/703629#M215629</link>
      <description>&lt;P&gt;You also can use the next :&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;%let path = /folders/myfolders/epg194/data/&lt;BR /&gt;proc contents data= "&amp;amp;path/storm_summary";&lt;BR /&gt;run;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 04 Dec 2020 13:56:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Filepatgh-for-lesson-2/m-p/703629#M215629</guid>
      <dc:creator>hak18</dc:creator>
      <dc:date>2020-12-04T13:56:47Z</dc:date>
    </item>
  </channel>
</rss>

