<?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: SAS Enterprise Guide Import CSV in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-Enterprise-Guide-Import-CSV/m-p/457487#M29470</link>
    <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13879"&gt;@Reeza&lt;/a&gt;&amp;nbsp;Thank you so much for your quick and helpful response! It makes sense that the issue would be that the file is local and EG is on a server. I'll look into the library recommendation you posted and see what I do to make working with it a bit easier. You are correct, getting used to a new tool and different data set up at the same time is a fun layer of complexity. Thanks again!&lt;/P&gt;</description>
    <pubDate>Wed, 25 Apr 2018 19:45:49 GMT</pubDate>
    <dc:creator>JenniferLB08</dc:creator>
    <dc:date>2018-04-25T19:45:49Z</dc:date>
    <item>
      <title>SAS Enterprise Guide Import CSV</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-Enterprise-Guide-Import-CSV/m-p/457466#M29467</link>
      <description>&lt;P&gt;Hi everyone,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm very new to SAS and Enterprise Guide--this is my second week using it. I'm using SAS on a VM and once I use the Import Wizard to open a csv file, I copy the code the wizard generates and proceed with figuring out basic data cleaning tasks. The next day when I open the program, I get an error that the physical file does not exist. It existed yesterday and everything worked fine.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm coming from an SPSS background and I'm just looking to write a syntax/program that I can run over and over at different points in the future.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Does anyone know what is causing this error? Do I need to use the Import Wizard every time I need to open a file? Can nothing be repeatable?&lt;/P&gt;</description>
      <pubDate>Wed, 25 Apr 2018 19:22:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-Enterprise-Guide-Import-CSV/m-p/457466#M29467</guid>
      <dc:creator>JenniferLB08</dc:creator>
      <dc:date>2018-04-25T19:22:15Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Enterprise Guide Import CSV</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-Enterprise-Guide-Import-CSV/m-p/457473#M29469</link>
      <description>&lt;P&gt;It depends. One way is to import the data once and then store it in a permanent library rather than read it in each time.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I usually add the import at the code, then once it's read in properly I comment it out and then use the data from a permanent library.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;libname projPP '/folders/myfolders/ProjPP/';

*proc import out=ProjPP.RawData datafile='/folders/myfolders/ProjPP/demo.csv dbms=csv replace; 
*run;

data RawData;
set projPP.rawdata;
run;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;The issue you may be facing, is the file is local but your EG is actually running off a server, so if you try and run the program it no longer has access to the file. The mechanism of importing a local file when you're working with EG on a servers is very different and takes some research to understand.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Basically EG is a thin client that connects to the server. You can also use local data but you can't stream line the use of local data &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;If you're using local data the best bet is to load the file to the server and then you can automate the full process.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Using a server environment is more of a difficult transition than switching tools. So you have the factor that you're working with a new tool and a different data set up at once.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 25 Apr 2018 19:29:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-Enterprise-Guide-Import-CSV/m-p/457473#M29469</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-04-25T19:29:49Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Enterprise Guide Import CSV</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-Enterprise-Guide-Import-CSV/m-p/457487#M29470</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13879"&gt;@Reeza&lt;/a&gt;&amp;nbsp;Thank you so much for your quick and helpful response! It makes sense that the issue would be that the file is local and EG is on a server. I'll look into the library recommendation you posted and see what I do to make working with it a bit easier. You are correct, getting used to a new tool and different data set up at the same time is a fun layer of complexity. Thanks again!&lt;/P&gt;</description>
      <pubDate>Wed, 25 Apr 2018 19:45:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-Enterprise-Guide-Import-CSV/m-p/457487#M29470</guid>
      <dc:creator>JenniferLB08</dc:creator>
      <dc:date>2018-04-25T19:45:49Z</dc:date>
    </item>
  </channel>
</rss>

