<?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: Reading data from a Dell workstation in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Reading-data-from-a-Dell-workstation/m-p/612079#M178522</link>
    <description>&lt;P&gt;You have one "myfolders" too many in the path.&lt;/P&gt;</description>
    <pubDate>Mon, 16 Dec 2019 17:10:14 GMT</pubDate>
    <dc:creator>Kurt_Bremser</dc:creator>
    <dc:date>2019-12-16T17:10:14Z</dc:date>
    <item>
      <title>Reading data from a Dell workstation</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Reading-data-from-a-Dell-workstation/m-p/612062#M178515</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;options nosymbolgen nomtrace nonotes nosource noMPRINT;


%macro datm4;
%do i=1 %to 10;
data result&amp;amp;I ;
/*inialization of flag to 0 which will be used to find line of interest*/
retain flag_section1 0 ;
infile "FOLDERS/myfolders/FINALSAS/DATA/TEST&amp;amp;i..nm7/TEST&amp;amp;i..lst" END=EOF;
if index(_infile_ , 'NO. OF SIG. DIGITS IN FINAL EST.:') and scan(_infile_, -1,'') = '2.9' then flag_section1 =1;

input @; if _infile_ =: 'NO. OF SIG. DIGITS IN FINAL EST.: 2.9' then flag_section1 =1;

if eof then output;
run;
%END;

TITLE ' DISTRIBUTION D DATA';
data FLAG;
set %do i=1 %to 10;RESULT&amp;amp;i %end ;;
run;

%mend datm4;
%datm4;



PROC EXPORT DATA=flag
   OUTFILE= '/folders/myfolders/FINALSAS/Flag.XLSX ' 
   DBMS=XLSX REPLACE;
   RUN;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;The program above runs ok on my laptop.&amp;nbsp; Before I ran the code on the workstation I checked the properties and the location was given as:/folders/myfolders/myfolders/finalsas/…..&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I got the following error message which is listed for 7 but applies to all N=10 folders:&lt;/P&gt;&lt;DIV class="sasWarning"&gt;&lt;DIV class="sasError"&gt;ERROR: Physical file does not exist,&lt;/DIV&gt;&lt;DIV class="sasError"&gt;/opt/sasinside/SASConfig/Lev1/SASApp/FOLDERS/Myfolders/myfolders/FINALSAS/DATA/TEST7.nm7/TEST7.lst.&lt;/DIV&gt;&lt;DIV class="sasWarning"&gt;WARNING: The data set WORK.RESULT7 may be incomplete. When this step was stopped there were 0 observations and 1 variables.&lt;/DIV&gt;&lt;DIV class="sasWarning"&gt;WARNING: Data set WORK.RESULT7 was not replaced because this step was stopped.&lt;/DIV&gt;&lt;DIV class="sasError"&gt;ERROR: Physical file does not exist,&lt;/DIV&gt;&lt;DIV class="sasError"&gt;/opt/sasinside/SASConfig/Lev1/SASApp/FOLDERS/Myfolders/myfolders/FINALSAS/DATA/TEST8.nm7/TEST8.lst.&lt;/DIV&gt;&lt;PRE class="sasLog"&gt;&amp;nbsp;&lt;/PRE&gt;&lt;/DIV&gt;&lt;P&gt;Can anyone tell me why using the path from the pull down properties tab in SAS UE, although it has an extra myfolders, does not work? &amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 16 Dec 2019 16:10:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Reading-data-from-a-Dell-workstation/m-p/612062#M178515</guid>
      <dc:creator>jacksonan123</dc:creator>
      <dc:date>2019-12-16T16:10:42Z</dc:date>
    </item>
    <item>
      <title>Re: Reading data from a Dell workstation</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Reading-data-from-a-Dell-workstation/m-p/612069#M178517</link>
      <description>&lt;P&gt;READ the error message. It is telling you where you told the program to read from:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;/opt/sasinside/SASConfig/Lev1/SASApp/FOLDERS/Myfolders/myfolders/FINALSAS/DATA/TEST7.nm7/TEST7.lst.&lt;/PRE&gt;
&lt;P&gt;You don't say what environment you are&amp;nbsp;using, whether SAS UE or not.&lt;/P&gt;
&lt;P&gt;I suspect the issue may be either missing a / before FOLDERS&lt;/P&gt;
&lt;P&gt;or running connected to a server that can't find the path because the server doesn't have permissions to read from the location.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I find the capitalization a bit odd as most people with similar error messages show the path in all lower case. If you are running in SAS University edition then that is a Linux system and the path is case sensitive for each and every folder name and likely expects lower case as well as the /folders start to the path.&lt;/P&gt;</description>
      <pubDate>Mon, 16 Dec 2019 16:48:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Reading-data-from-a-Dell-workstation/m-p/612069#M178517</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2019-12-16T16:48:53Z</dc:date>
    </item>
    <item>
      <title>Re: Reading data from a Dell workstation</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Reading-data-from-a-Dell-workstation/m-p/612078#M178521</link>
      <description>I am running SAS UE. I did put a (/) before folders and used no caps but I&lt;BR /&gt;got the same error messages. I doubled checked the location based upon the&lt;BR /&gt;file properties dropdown.&lt;BR /&gt;&lt;BR /&gt;You stated, " or running connected to a server that can't find the path&lt;BR /&gt;because the server doesn't have permissions to read from the location."&lt;BR /&gt;Since I am the administrator if this is the problem what is the best way to&lt;BR /&gt;resolve it?&lt;BR /&gt;&lt;BR /&gt;ERROR: Physical file does not exist,&lt;BR /&gt;/folders/myfolders/myfolders/FINALSAS/DATA/TEST7.nm7/TEST7.lst.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 16 Dec 2019 17:04:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Reading-data-from-a-Dell-workstation/m-p/612078#M178521</guid>
      <dc:creator>jacksonan123</dc:creator>
      <dc:date>2019-12-16T17:04:49Z</dc:date>
    </item>
    <item>
      <title>Re: Reading data from a Dell workstation</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Reading-data-from-a-Dell-workstation/m-p/612079#M178522</link>
      <description>&lt;P&gt;You have one "myfolders" too many in the path.&lt;/P&gt;</description>
      <pubDate>Mon, 16 Dec 2019 17:10:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Reading-data-from-a-Dell-workstation/m-p/612079#M178522</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2019-12-16T17:10:14Z</dc:date>
    </item>
    <item>
      <title>Re: Reading data from a Dell workstation</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Reading-data-from-a-Dell-workstation/m-p/612087#M178525</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;infile "/folders/myfolders/FINALSAS/DATA/TEST&amp;amp;i..nm7/TEST&amp;amp;i..lst" END=EOF;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;The path is case sensitive since SAS UE uses a Unix file system.&lt;/P&gt;
&lt;P&gt;This seems like a way to read the output from Listing, which is likely old code I'm assuming or a PROC that doesn't support ODS tables.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 16 Dec 2019 17:24:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Reading-data-from-a-Dell-workstation/m-p/612087#M178525</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-12-16T17:24:35Z</dc:date>
    </item>
    <item>
      <title>Re: Reading data from a Dell workstation</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Reading-data-from-a-Dell-workstation/m-p/612096#M178530</link>
      <description>No that is the path I got from the properties tab.&lt;BR /&gt;</description>
      <pubDate>Mon, 16 Dec 2019 17:47:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Reading-data-from-a-Dell-workstation/m-p/612096#M178530</guid>
      <dc:creator>jacksonan123</dc:creator>
      <dc:date>2019-12-16T17:47:49Z</dc:date>
    </item>
    <item>
      <title>Re: Reading data from a Dell workstation</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Reading-data-from-a-Dell-workstation/m-p/612128#M178544</link>
      <description>Then you set up your myfolders nested somehow...it's perfectly valid but will through most of us off because you created a myfolders under you main myfolders for some reason.</description>
      <pubDate>Mon, 16 Dec 2019 18:24:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Reading-data-from-a-Dell-workstation/m-p/612128#M178544</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-12-16T18:24:43Z</dc:date>
    </item>
    <item>
      <title>Re: Reading data from a Dell workstation</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Reading-data-from-a-Dell-workstation/m-p/612210#M178581</link>
      <description>That was probably unintentional when I was linking the Vmware to the my&lt;BR /&gt;folders. I do have myfolders nested.&lt;BR /&gt;&lt;BR /&gt;I have decided to go back and use my lap top where the path issues do not&lt;BR /&gt;exist.&lt;BR /&gt;&lt;BR /&gt;This is taking too much time although there may be a simple solution.&lt;BR /&gt;</description>
      <pubDate>Mon, 16 Dec 2019 20:49:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Reading-data-from-a-Dell-workstation/m-p/612210#M178581</guid>
      <dc:creator>jacksonan123</dc:creator>
      <dc:date>2019-12-16T20:49:49Z</dc:date>
    </item>
    <item>
      <title>Re: Reading data from a Dell workstation</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Reading-data-from-a-Dell-workstation/m-p/613260#M179087</link>
      <description>nosymbolgen nomtrace nonotes nosource noMPRINT&lt;BR /&gt;For some reason when I changed the no options to symbologen mtrace etc it ran okay</description>
      <pubDate>Fri, 20 Dec 2019 15:43:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Reading-data-from-a-Dell-workstation/m-p/613260#M179087</guid>
      <dc:creator>jacksonan123</dc:creator>
      <dc:date>2019-12-20T15:43:41Z</dc:date>
    </item>
  </channel>
</rss>

