<?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: multiple csv import error in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/multiple-csv-import-error/m-p/811830#M320250</link>
    <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;When macros fail, you should turn on the macro debugging option by running the following command, and then run the macro again.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;options mprint;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What you have shown us is not the log. This is a small portion of the log. Please show us the &lt;FONT color="#FF0000"&gt;ENTIRE&lt;/FONT&gt; log, copied as text and pasted into the window that appears when you click on the &amp;lt;/&amp;gt; icon.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2021-11-26 08_27_29-Reply to Message - SAS Support Communities — Mozilla Firefox.png" style="width: 859px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/66123iA4EF494F9CA0F6EE/image-size/large?v=v2&amp;amp;px=999" role="button" title="2021-11-26 08_27_29-Reply to Message - SAS Support Communities — Mozilla Firefox.png" alt="2021-11-26 08_27_29-Reply to Message - SAS Support Communities — Mozilla Firefox.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 06 May 2022 10:25:48 GMT</pubDate>
    <dc:creator>PaigeMiller</dc:creator>
    <dc:date>2022-05-06T10:25:48Z</dc:date>
    <item>
      <title>multiple csv import error</title>
      <link>https://communities.sas.com/t5/SAS-Programming/multiple-csv-import-error/m-p/811787#M320237</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%macro import;
%do i=1 %to 6 ;
proc import datafile ="/home/u35263349/My_Folder/&amp;amp;csv_files&amp;amp;i..csv"
out=file_&amp;amp;i
dbms=csv
replace;
getnames=yes;
run;
%end;
%mend;
%import;

&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;SPAN&gt;ERROR: Import unsuccessful. See SAS Log for details.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 06 May 2022 06:07:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/multiple-csv-import-error/m-p/811787#M320237</guid>
      <dc:creator>BrahmanandaRao</dc:creator>
      <dc:date>2022-05-06T06:07:57Z</dc:date>
    </item>
    <item>
      <title>Re: multiple csv import error</title>
      <link>https://communities.sas.com/t5/SAS-Programming/multiple-csv-import-error/m-p/811813#M320242</link>
      <description>&lt;P&gt;Can you make it work outside the macrp?&lt;/P&gt;
&lt;P&gt;Verify that the files exists and are accessible by the user that executes the program.&lt;/P&gt;
&lt;P&gt;Do the headers comply with SAS naming conventions?&lt;/P&gt;
&lt;P&gt;Make sure the file doesn't have garbage/special characters, or stored in a different encoding than your SAS session.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 06 May 2022 08:23:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/multiple-csv-import-error/m-p/811813#M320242</guid>
      <dc:creator>LinusH</dc:creator>
      <dc:date>2022-05-06T08:23:49Z</dc:date>
    </item>
    <item>
      <title>Re: multiple csv import error</title>
      <link>https://communities.sas.com/t5/SAS-Programming/multiple-csv-import-error/m-p/811819#M320243</link>
      <description>&lt;P&gt;I have take sample files&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 06 May 2022 09:12:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/multiple-csv-import-error/m-p/811819#M320243</guid>
      <dc:creator>BrahmanandaRao</dc:creator>
      <dc:date>2022-05-06T09:12:39Z</dc:date>
    </item>
    <item>
      <title>Re: multiple csv import error</title>
      <link>https://communities.sas.com/t5/SAS-Programming/multiple-csv-import-error/m-p/811823#M320247</link>
      <description>&lt;P&gt;Is "Titanic - 2.csv" being processed as "Titanic -2.csv"?&lt;BR /&gt;If so, I think the following will help you access it correctly.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%let csv_files=%str(Titanic - );
%macro import;
  %do i=1 %to 6 ;
    proc import datafile ="/home/u35263349/My_Folder/&amp;amp;csv_files&amp;amp;i..csv"
      out=file_&amp;amp;i
      dbms=csv
      replace;
      getnames=yes;
    run;
  %end;
%mend;
%import;

	&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you paste only the macro, we cannot determine if it is correct or not, so please paste the previous code, or at least the log, if possible.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 06 May 2022 09:45:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/multiple-csv-import-error/m-p/811823#M320247</guid>
      <dc:creator>japelin</dc:creator>
      <dc:date>2022-05-06T09:45:38Z</dc:date>
    </item>
    <item>
      <title>Re: multiple csv import error</title>
      <link>https://communities.sas.com/t5/SAS-Programming/multiple-csv-import-error/m-p/811829#M320249</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Anandkvn_0-1651832509999.png" style="width: 822px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/71183i3E736A8EE2403C15/image-dimensions/822x512?v=v2" width="822" height="512" role="button" title="Anandkvn_0-1651832509999.png" alt="Anandkvn_0-1651832509999.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 06 May 2022 10:22:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/multiple-csv-import-error/m-p/811829#M320249</guid>
      <dc:creator>BrahmanandaRao</dc:creator>
      <dc:date>2022-05-06T10:22:23Z</dc:date>
    </item>
    <item>
      <title>Re: multiple csv import error</title>
      <link>https://communities.sas.com/t5/SAS-Programming/multiple-csv-import-error/m-p/811830#M320250</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;When macros fail, you should turn on the macro debugging option by running the following command, and then run the macro again.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;options mprint;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What you have shown us is not the log. This is a small portion of the log. Please show us the &lt;FONT color="#FF0000"&gt;ENTIRE&lt;/FONT&gt; log, copied as text and pasted into the window that appears when you click on the &amp;lt;/&amp;gt; icon.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2021-11-26 08_27_29-Reply to Message - SAS Support Communities — Mozilla Firefox.png" style="width: 859px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/66123iA4EF494F9CA0F6EE/image-size/large?v=v2&amp;amp;px=999" role="button" title="2021-11-26 08_27_29-Reply to Message - SAS Support Communities — Mozilla Firefox.png" alt="2021-11-26 08_27_29-Reply to Message - SAS Support Communities — Mozilla Firefox.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 06 May 2022 10:25:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/multiple-csv-import-error/m-p/811830#M320250</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2022-05-06T10:25:48Z</dc:date>
    </item>
    <item>
      <title>Re: multiple csv import error</title>
      <link>https://communities.sas.com/t5/SAS-Programming/multiple-csv-import-error/m-p/811831#M320251</link>
      <description>&lt;PRE&gt; 
 1          OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;
 68         
 69         %let csv_files=%str(shoes - );
 70         %macro import;
 71           %do i=1 %to 6 ;
 72             proc import datafile ="/home/u35263349/My_Folder/&amp;amp;csv_files&amp;amp;i..csv"
 73               out=file_&amp;amp;i
 74               dbms=csv
 75               replace;
 76               getnames=yes;
 77             run;
 78           %end;
 79         %mend;
 80         %import;
 MPRINT(IMPORT):   proc import datafile ="/home/u35263349/My_Folder/shoes - 1.csv" out=file_1 dbms=csv replace;
 MPRINT(IMPORT):   ADLM;
 MPRINT(IMPORT):   getnames=yes;
 MPRINT(IMPORT):   run;
 
 NOTE: Unable to open parameter catalog: SASUSER.PARMS.PARMS.SLIST in update mode. Temporary parameter values will be saved to 
 WORK.PARMS.PARMS.SLIST.
 ERROR: Physical file does not exist, /home/u35263349/My_Folder/shoes - 1.csv. 
 ERROR: Import unsuccessful.  See SAS Log for details.
 NOTE: The SAS System stopped processing this step because of errors.
 NOTE: PROCEDURE IMPORT used (Total process time):
       real time           0.02 seconds
       user cpu time       0.02 seconds
       system cpu time     0.00 seconds
       memory              8212.34k
       OS Memory           33560.00k
       Timestamp           05/06/2022 10:31:15 AM
       Step Count                        152  Switch Count  5
       Page Faults                       0
       Page Reclaims                     1088
       Page Swaps                        0
       Voluntary Context Switches        26
       Involuntary Context Switches      0
       Block Input Operations            0
       Block Output Operations           8
       
 MPRINT(IMPORT):   ;
 
 
 MPRINT(IMPORT):   proc import datafile ="/home/u35263349/My_Folder/shoes - 2.csv" out=file_2 dbms=csv replace;
 MPRINT(IMPORT):   ADLM;
 MPRINT(IMPORT):   getnames=yes;
 MPRINT(IMPORT):   run;
 
 NOTE: Unable to open parameter catalog: SASUSER.PARMS.PARMS.SLIST in update mode. Temporary parameter values will be saved to 
 WORK.PARMS.PARMS.SLIST.
 ERROR: Physical file does not exist, /home/u35263349/My_Folder/shoes - 2.csv. 
 ERROR: Import unsuccessful.  See SAS Log for details.
 NOTE: The SAS System stopped processing this step because of errors.
 NOTE: PROCEDURE IMPORT used (Total process time):
       real time           0.02 seconds
       user cpu time       0.02 seconds
       system cpu time     0.01 seconds
       memory              8227.71k
       OS Memory           33560.00k
       Timestamp           05/06/2022 10:31:15 AM
       Step Count                        153  Switch Count  5
       Page Faults                       0
       Page Reclaims                     813
       Page Swaps                        0
       Voluntary Context Switches        25
       Involuntary Context Switches      0
       Block Input Operations            0
       Block Output Operations           8
       
 MPRINT(IMPORT):   ;
 
 
 MPRINT(IMPORT):   proc import datafile ="/home/u35263349/My_Folder/shoes - 3.csv" out=file_3 dbms=csv replace;
 MPRINT(IMPORT):   ADLM;
 MPRINT(IMPORT):   getnames=yes;
 MPRINT(IMPORT):   run;
 
 NOTE: Unable to open parameter catalog: SASUSER.PARMS.PARMS.SLIST in update mode. Temporary parameter values will be saved to 
 WORK.PARMS.PARMS.SLIST.
 ERROR: Physical file does not exist, /home/u35263349/My_Folder/shoes - 3.csv. 
 ERROR: Import unsuccessful.  See SAS Log for details.
 NOTE: The SAS System stopped processing this step because of errors.
 NOTE: PROCEDURE IMPORT used (Total process time):
       real time           0.02 seconds
       user cpu time       0.02 seconds
       system cpu time     0.00 seconds
       memory              8226.28k
       OS Memory           33560.00k
       Timestamp           05/06/2022 10:31:15 AM
       Step Count                        154  Switch Count  5
       Page Faults                       0
       Page Reclaims                     777
       Page Swaps                        0
       Voluntary Context Switches        25
       Involuntary Context Switches      0
       Block Input Operations            0
       Block Output Operations           16
       
 MPRINT(IMPORT):   ;
 
 
 MPRINT(IMPORT):   proc import datafile ="/home/u35263349/My_Folder/shoes - 4.csv" out=file_4 dbms=csv replace;
 MPRINT(IMPORT):   ADLM;
 MPRINT(IMPORT):   getnames=yes;
 MPRINT(IMPORT):   run;
 
 NOTE: Unable to open parameter catalog: SASUSER.PARMS.PARMS.SLIST in update mode. Temporary parameter values will be saved to 
 WORK.PARMS.PARMS.SLIST.
 ERROR: Physical file does not exist, /home/u35263349/My_Folder/shoes - 4.csv. 
 ERROR: Import unsuccessful.  See SAS Log for details.
 NOTE: The SAS System stopped processing this step because of errors.
 NOTE: PROCEDURE IMPORT used (Total process time):
       real time           0.02 seconds
       user cpu time       0.02 seconds
       system cpu time     0.00 seconds
       memory              8227.84k
       OS Memory           33560.00k
       Timestamp           05/06/2022 10:31:15 AM
       Step Count                        155  Switch Count  5
       Page Faults                       0
       Page Reclaims                     781
       Page Swaps                        0
       Voluntary Context Switches        25
       Involuntary Context Switches      0
       Block Input Operations            0
       Block Output Operations           8
       
 MPRINT(IMPORT):   ;
 
 
 MPRINT(IMPORT):   proc import datafile ="/home/u35263349/My_Folder/shoes - 5.csv" out=file_5 dbms=csv replace;
 MPRINT(IMPORT):   ADLM;
 MPRINT(IMPORT):   getnames=yes;
 MPRINT(IMPORT):   run;
 
 NOTE: Unable to open parameter catalog: SASUSER.PARMS.PARMS.SLIST in update mode. Temporary parameter values will be saved to 
 WORK.PARMS.PARMS.SLIST.
 ERROR: Physical file does not exist, /home/u35263349/My_Folder/shoes - 5.csv. 
 ERROR: Import unsuccessful.  See SAS Log for details.
 NOTE: The SAS System stopped processing this step because of errors.
 NOTE: PROCEDURE IMPORT used (Total process time):
       real time           0.02 seconds
       user cpu time       0.02 seconds
       system cpu time     0.00 seconds
       memory              8226.15k
       OS Memory           33560.00k
       Timestamp           05/06/2022 10:31:15 AM
       Step Count                        156  Switch Count  5
       Page Faults                       0
       Page Reclaims                     777
       Page Swaps                        0
       Voluntary Context Switches        25
       Involuntary Context Switches      0
       Block Input Operations            0
       Block Output Operations           8
       
 MPRINT(IMPORT):   ;
 
 
 MPRINT(IMPORT):   proc import datafile ="/home/u35263349/My_Folder/shoes - 6.csv" out=file_6 dbms=csv replace;
 MPRINT(IMPORT):   ADLM;
 MPRINT(IMPORT):   getnames=yes;
 MPRINT(IMPORT):   run;
 
 NOTE: Unable to open parameter catalog: SASUSER.PARMS.PARMS.SLIST in update mode. Temporary parameter values will be saved to 
 WORK.PARMS.PARMS.SLIST.
 ERROR: Physical file does not exist, /home/u35263349/My_Folder/shoes - 6.csv. 
 ERROR: Import unsuccessful.  See SAS Log for details.
 NOTE: The SAS System stopped processing this step because of errors.
 NOTE: PROCEDURE IMPORT used (Total process time):
       real time           0.02 seconds
       user cpu time       0.02 seconds
       system cpu time     0.01 seconds
       memory              8227.18k
       OS Memory           33560.00k
       Timestamp           05/06/2022 10:31:15 AM
       Step Count                        157  Switch Count  5
       Page Faults                       0
       Page Reclaims                     781
       Page Swaps                        0
       Voluntary Context Switches        25
       Involuntary Context Switches      0
       Block Input Operations            0
       Block Output Operations           8
       
 MPRINT(IMPORT):   ;
 81         
 82         OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;
 92         
&lt;/PRE&gt;</description>
      <pubDate>Fri, 06 May 2022 10:32:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/multiple-csv-import-error/m-p/811831#M320251</guid>
      <dc:creator>BrahmanandaRao</dc:creator>
      <dc:date>2022-05-06T10:32:30Z</dc:date>
    </item>
    <item>
      <title>Re: multiple csv import error</title>
      <link>https://communities.sas.com/t5/SAS-Programming/multiple-csv-import-error/m-p/811833#M320253</link>
      <description>&lt;P&gt;You have to fix these ERRORs:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;ERROR: Physical file does not exist, /home/u35263349/My_Folder/shoes - 2.csv. &lt;/PRE&gt;</description>
      <pubDate>Fri, 06 May 2022 10:47:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/multiple-csv-import-error/m-p/811833#M320253</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2022-05-06T10:47:36Z</dc:date>
    </item>
    <item>
      <title>Re: multiple csv import error</title>
      <link>https://communities.sas.com/t5/SAS-Programming/multiple-csv-import-error/m-p/811842#M320256</link>
      <description>&lt;P&gt;Never try to macrotize code before a single, non-dynamic instance works.&lt;/P&gt;
&lt;P&gt;Make a single import for a single file work, then proceed from there.&lt;/P&gt;
&lt;P&gt;The "physical file does not exist" is all you need to know and must be fixed.&lt;/P&gt;</description>
      <pubDate>Fri, 06 May 2022 11:55:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/multiple-csv-import-error/m-p/811842#M320256</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2022-05-06T11:55:04Z</dc:date>
    </item>
    <item>
      <title>Re: multiple csv import error</title>
      <link>https://communities.sas.com/t5/SAS-Programming/multiple-csv-import-error/m-p/811846#M320259</link>
      <description>&lt;P&gt;i have checked&amp;nbsp; sample shoes_1 file is available sucessfully imported this file could you please tell me my macro do loop code is correct or not&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc import datafile="/home/u35263349/My_Folder/csv_files/shoes_1.csv" out=ds&lt;BR /&gt;dbms=csv&lt;BR /&gt;replace ;&lt;BR /&gt;run;&lt;/P&gt;</description>
      <pubDate>Fri, 06 May 2022 12:04:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/multiple-csv-import-error/m-p/811846#M320259</guid>
      <dc:creator>BrahmanandaRao</dc:creator>
      <dc:date>2022-05-06T12:04:03Z</dc:date>
    </item>
    <item>
      <title>Re: multiple csv import error</title>
      <link>https://communities.sas.com/t5/SAS-Programming/multiple-csv-import-error/m-p/811849#M320262</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/265860"&gt;@BrahmanandaRao&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;i have checked&amp;nbsp; sample shoes_1 file is available sucessfully imported this file could you please tell me my macro do loop code is correct or not&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc import datafile="/home/u35263349/My_Folder/csv_files/shoes_1.csv" out=ds&lt;BR /&gt;dbms=csv&lt;BR /&gt;replace ;&lt;BR /&gt;run;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;This filename is radically different from what you stored in the macro variable(s).&lt;/P&gt;</description>
      <pubDate>Fri, 06 May 2022 12:13:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/multiple-csv-import-error/m-p/811849#M320262</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2022-05-06T12:13:26Z</dc:date>
    </item>
    <item>
      <title>Re: multiple csv import error</title>
      <link>https://communities.sas.com/t5/SAS-Programming/multiple-csv-import-error/m-p/811862#M320269</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/265860"&gt;@BrahmanandaRao&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;i have checked&amp;nbsp; sample shoes_1 file is available sucessfully imported this file could you please tell me my macro do loop code is correct or not&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;But this name is not what your macro produces. Your macro has to produce this EXACT file name, not something that looks similar.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As stated earlier by&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/11562"&gt;@Kurt_Bremser&lt;/a&gt;&amp;nbsp;, you need to create working SAS code without macros for the importing of one file before you can create a macro. If you don't have working SAS code, then your macro won't work either.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So, please, show us working SAS code without macros for importing one file. That's the only way to make progress here.&lt;/P&gt;</description>
      <pubDate>Fri, 06 May 2022 12:37:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/multiple-csv-import-error/m-p/811862#M320269</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2022-05-06T12:37:46Z</dc:date>
    </item>
    <item>
      <title>Re: multiple csv import error</title>
      <link>https://communities.sas.com/t5/SAS-Programming/multiple-csv-import-error/m-p/811864#M320271</link>
      <description>&lt;P&gt;So if that code works then this file exists:&lt;/P&gt;
&lt;PRE&gt;"/home/u35263349/My_Folder/csv_files/shoes_1.csv" &lt;/PRE&gt;
&lt;P&gt;Where are the Titantic files you want to import?&amp;nbsp; Do they exist on that server also?&lt;/P&gt;</description>
      <pubDate>Fri, 06 May 2022 12:44:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/multiple-csv-import-error/m-p/811864#M320271</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2022-05-06T12:44:57Z</dc:date>
    </item>
  </channel>
</rss>

