<?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 Three Simple Ways to Import Data Into SAS OnDemand for Academics: Enterprise Miner in SAS Software for Learning Community</title>
    <link>https://communities.sas.com/t5/SAS-Software-for-Learning/Three-Simple-Ways-to-Import-Data-Into-SAS-OnDemand-for-Academics/m-p/451706#M36</link>
    <description>&lt;P&gt;&lt;U&gt;&lt;/U&gt;Good Afternoon!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have noticed that SAS OnDemand for Academics users sometimes&amp;nbsp;have trouble importing their own data into&amp;nbsp;&lt;SPAN&gt;SAS OnDemand for Academics: Enterprise Miner.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;In this list, I will explain&amp;nbsp;three simple methods&amp;nbsp;you can use to import data into&amp;nbsp;SAS OnDemand for Academics: Enterprise Miner:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;U&gt;&lt;/U&gt;&lt;FONT size="4"&gt;&lt;U&gt;&lt;STRONG&gt;Method 1:&lt;/STRONG&gt;&lt;/U&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;FONT size="2"&gt;Create a new folder in SAS OnDemand for Academics: SAS Studio&amp;nbsp;&lt;/FONT&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;FONT size="2"&gt;Upload your data to the new folder that you created &lt;/FONT&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;FONT size="2"&gt;Right click on the new folder and click Create--&amp;gt;Library.&lt;/FONT&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;FONT size="2"&gt;Copy&amp;nbsp;the Path of the new Library in SAS Studio&lt;/FONT&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;FONT size="2"&gt;In&amp;nbsp;&lt;SPAN&gt;SAS OnDemand for Academics: Enterprise Miner, write a libname statement&amp;nbsp;for the start-up code using the path of the new library you created in&amp;nbsp;SAS OnDemand for Academics: SAS Studio.&amp;nbsp;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="2"&gt;See the following PDF for more details:&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="&amp;nbsp;https://support.sas.com/ondemand/manuals/UploadingDataUsers.pdf" target="_self"&gt;&amp;nbsp;https://support.sas.com/ondemand/manuals/UploadingDataUsers.pdf&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="4"&gt;&lt;U&gt;&lt;STRONG&gt;Method 2:&lt;/STRONG&gt;&lt;/U&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;FONT size="2"&gt;Get the Path of the folder that contains your datasets in SAS OnDemand for Academics: SAS Studio. To see the path, simply right click on the folder and click properties (See screenshot below):&lt;/FONT&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="3.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/19668i9D610A8A11E8CE77/image-size/large?v=v2&amp;amp;px=999" role="button" title="3.png" alt="3.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;FONT size="2"&gt;Open up &lt;SPAN&gt;SAS OnDemand for Academics: Enterprise Miner&lt;/SPAN&gt;&amp;nbsp;and start a new project. In the Project Start-up code, type the following:&lt;/FONT&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;FONT size="2"&gt; /*the text after 'path=' should be the path in the screenshot above, pointing to the folder containing your datasets*/

%let path=/home/danielduval0/EMFiles;&amp;nbsp;

libname example "&amp;amp;path"; 

run;&lt;/FONT&gt;&lt;/PRE&gt;
&lt;P&gt;You can also reference the folder a similar but easier way, as someone pointed out in the comments:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;/*users of SAS OnDemand for Academics can use '~' instead of '/home/&amp;lt;userid&amp;gt;', as  '~' is automatically expanded to the correct path for their home directory.*/

%let path=~/EMFiles; 

libname example "&amp;amp;path"; 

run;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;FONT size="2"&gt;&lt;SPAN&gt;Run the&lt;/SPAN&gt;&amp;nbsp;Project Start-up code. You should now see in&amp;nbsp;&lt;SPAN&gt;SAS OnDemand for Academics: Enterprise Miner's&amp;nbsp;&lt;/SPAN&gt;Explorer window that you have now created a new library, called "Example" (see screenshot):&lt;/FONT&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&lt;FONT size="2"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="4.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/19667iE54D2646A39B4DF9/image-size/large?v=v2&amp;amp;px=999" role="button" title="4.png" alt="4.png" /&gt;&lt;/span&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="4"&gt;&lt;U&gt;&lt;STRONG&gt;Method 3:&lt;/STRONG&gt;&lt;/U&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;FONT size="2"&gt;In &lt;SPAN&gt;SAS OnDemand for Academics:&amp;nbsp;&lt;/SPAN&gt;SAS Studio, the folder called "&lt;STRONG&gt;sasuser.v94&lt;/STRONG&gt;" is actually a permanent library called "sasuser" in SAS OnDemand for Academics: Enterprise Miner. You can simply upload your files to the sasuser.v94 folder and they will show up in the permanent &lt;STRONG&gt;sasuser&lt;/STRONG&gt; Library (no start-up code necessary!).&lt;/FONT&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&lt;FONT size="2"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;FONT size="2"&gt;&lt;SPAN&gt;As you can see in the screenshot below, I have already uploaded a few datasets to the sasuser.v94 folder. Without using any start-up code, I will be able to see all of the &lt;STRONG&gt;.sas7bdat&lt;/STRONG&gt; files in (.csv files and .xlsx files need to be converted to the .sas7bdat format first)&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&lt;FONT size="2"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="5.png" style="width: 499px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/19666i9582E23195433055/image-size/large?v=v2&amp;amp;px=999" role="button" title="5.png" alt="5.png" /&gt;&lt;/span&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="2"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="6.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/19669iA022449AAC06B78E/image-size/large?v=v2&amp;amp;px=999" role="button" title="6.png" alt="6.png" /&gt;&lt;/span&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="2"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="2"&gt;There are definitely more ways to import data into &lt;SPAN&gt;SAS OnDemand for Academics: Enterprise Miner that I did not mention here, but I have found these methods to be the easiest.&amp;nbsp;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="2"&gt;&lt;SPAN&gt;Please let me know if you have any questions related to any of these methods!&amp;nbsp;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="2"&gt;&lt;SPAN&gt;Daniel DuVal&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 30 Jul 2021 20:49:12 GMT</pubDate>
    <dc:creator>danielduval0</dc:creator>
    <dc:date>2021-07-30T20:49:12Z</dc:date>
    <item>
      <title>Three Simple Ways to Import Data Into SAS OnDemand for Academics: Enterprise Miner</title>
      <link>https://communities.sas.com/t5/SAS-Software-for-Learning/Three-Simple-Ways-to-Import-Data-Into-SAS-OnDemand-for-Academics/m-p/451706#M36</link>
      <description>&lt;P&gt;&lt;U&gt;&lt;/U&gt;Good Afternoon!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have noticed that SAS OnDemand for Academics users sometimes&amp;nbsp;have trouble importing their own data into&amp;nbsp;&lt;SPAN&gt;SAS OnDemand for Academics: Enterprise Miner.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;In this list, I will explain&amp;nbsp;three simple methods&amp;nbsp;you can use to import data into&amp;nbsp;SAS OnDemand for Academics: Enterprise Miner:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;U&gt;&lt;/U&gt;&lt;FONT size="4"&gt;&lt;U&gt;&lt;STRONG&gt;Method 1:&lt;/STRONG&gt;&lt;/U&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;FONT size="2"&gt;Create a new folder in SAS OnDemand for Academics: SAS Studio&amp;nbsp;&lt;/FONT&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;FONT size="2"&gt;Upload your data to the new folder that you created &lt;/FONT&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;FONT size="2"&gt;Right click on the new folder and click Create--&amp;gt;Library.&lt;/FONT&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;FONT size="2"&gt;Copy&amp;nbsp;the Path of the new Library in SAS Studio&lt;/FONT&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;FONT size="2"&gt;In&amp;nbsp;&lt;SPAN&gt;SAS OnDemand for Academics: Enterprise Miner, write a libname statement&amp;nbsp;for the start-up code using the path of the new library you created in&amp;nbsp;SAS OnDemand for Academics: SAS Studio.&amp;nbsp;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="2"&gt;See the following PDF for more details:&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="&amp;nbsp;https://support.sas.com/ondemand/manuals/UploadingDataUsers.pdf" target="_self"&gt;&amp;nbsp;https://support.sas.com/ondemand/manuals/UploadingDataUsers.pdf&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="4"&gt;&lt;U&gt;&lt;STRONG&gt;Method 2:&lt;/STRONG&gt;&lt;/U&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;FONT size="2"&gt;Get the Path of the folder that contains your datasets in SAS OnDemand for Academics: SAS Studio. To see the path, simply right click on the folder and click properties (See screenshot below):&lt;/FONT&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="3.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/19668i9D610A8A11E8CE77/image-size/large?v=v2&amp;amp;px=999" role="button" title="3.png" alt="3.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;FONT size="2"&gt;Open up &lt;SPAN&gt;SAS OnDemand for Academics: Enterprise Miner&lt;/SPAN&gt;&amp;nbsp;and start a new project. In the Project Start-up code, type the following:&lt;/FONT&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;FONT size="2"&gt; /*the text after 'path=' should be the path in the screenshot above, pointing to the folder containing your datasets*/

%let path=/home/danielduval0/EMFiles;&amp;nbsp;

libname example "&amp;amp;path"; 

run;&lt;/FONT&gt;&lt;/PRE&gt;
&lt;P&gt;You can also reference the folder a similar but easier way, as someone pointed out in the comments:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;/*users of SAS OnDemand for Academics can use '~' instead of '/home/&amp;lt;userid&amp;gt;', as  '~' is automatically expanded to the correct path for their home directory.*/

%let path=~/EMFiles; 

libname example "&amp;amp;path"; 

run;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;FONT size="2"&gt;&lt;SPAN&gt;Run the&lt;/SPAN&gt;&amp;nbsp;Project Start-up code. You should now see in&amp;nbsp;&lt;SPAN&gt;SAS OnDemand for Academics: Enterprise Miner's&amp;nbsp;&lt;/SPAN&gt;Explorer window that you have now created a new library, called "Example" (see screenshot):&lt;/FONT&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&lt;FONT size="2"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="4.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/19667iE54D2646A39B4DF9/image-size/large?v=v2&amp;amp;px=999" role="button" title="4.png" alt="4.png" /&gt;&lt;/span&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="4"&gt;&lt;U&gt;&lt;STRONG&gt;Method 3:&lt;/STRONG&gt;&lt;/U&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;FONT size="2"&gt;In &lt;SPAN&gt;SAS OnDemand for Academics:&amp;nbsp;&lt;/SPAN&gt;SAS Studio, the folder called "&lt;STRONG&gt;sasuser.v94&lt;/STRONG&gt;" is actually a permanent library called "sasuser" in SAS OnDemand for Academics: Enterprise Miner. You can simply upload your files to the sasuser.v94 folder and they will show up in the permanent &lt;STRONG&gt;sasuser&lt;/STRONG&gt; Library (no start-up code necessary!).&lt;/FONT&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&lt;FONT size="2"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;FONT size="2"&gt;&lt;SPAN&gt;As you can see in the screenshot below, I have already uploaded a few datasets to the sasuser.v94 folder. Without using any start-up code, I will be able to see all of the &lt;STRONG&gt;.sas7bdat&lt;/STRONG&gt; files in (.csv files and .xlsx files need to be converted to the .sas7bdat format first)&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&lt;FONT size="2"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="5.png" style="width: 499px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/19666i9582E23195433055/image-size/large?v=v2&amp;amp;px=999" role="button" title="5.png" alt="5.png" /&gt;&lt;/span&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="2"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="6.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/19669iA022449AAC06B78E/image-size/large?v=v2&amp;amp;px=999" role="button" title="6.png" alt="6.png" /&gt;&lt;/span&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="2"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="2"&gt;There are definitely more ways to import data into &lt;SPAN&gt;SAS OnDemand for Academics: Enterprise Miner that I did not mention here, but I have found these methods to be the easiest.&amp;nbsp;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="2"&gt;&lt;SPAN&gt;Please let me know if you have any questions related to any of these methods!&amp;nbsp;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="2"&gt;&lt;SPAN&gt;Daniel DuVal&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 30 Jul 2021 20:49:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Software-for-Learning/Three-Simple-Ways-to-Import-Data-Into-SAS-OnDemand-for-Academics/m-p/451706#M36</guid>
      <dc:creator>danielduval0</dc:creator>
      <dc:date>2021-07-30T20:49:12Z</dc:date>
    </item>
    <item>
      <title>Re: Three Simple Ways to Import Data Into SAS OnDemand for Academics: Enterprise Miner</title>
      <link>https://communities.sas.com/t5/SAS-Software-for-Learning/Three-Simple-Ways-to-Import-Data-Into-SAS-OnDemand-for-Academics/m-p/452044#M37</link>
      <description>&lt;P&gt;If you are still confused about how to import data into SAS OnDemand for Academics: Enterprise Miner, see the following Two-Minute Solution video:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://communities.sas.com/t5/SAS-Analytics-U/Two-minute-Solutions-Using-your-own-data-with-SAS-Enterprise/td-p/347853" target="_self"&gt;https://communities.sas.com/t5/SAS-Analytics-U/Two-minute-Solutions-Using-your-own-data-with-SAS-Enterprise/td-p/347853&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 06 Apr 2018 18:43:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Software-for-Learning/Three-Simple-Ways-to-Import-Data-Into-SAS-OnDemand-for-Academics/m-p/452044#M37</guid>
      <dc:creator>danielduval0</dc:creator>
      <dc:date>2018-04-06T18:43:32Z</dc:date>
    </item>
    <item>
      <title>Re: Three Simple Ways to Import Data Into SAS OnDemand for Academics: Enterprise Miner</title>
      <link>https://communities.sas.com/t5/SAS-Software-for-Learning/Three-Simple-Ways-to-Import-Data-Into-SAS-OnDemand-for-Academics/m-p/452203#M38</link>
      <description>&lt;P&gt;As a Best Practice, users of SAS OnDemand for Academics should use '~' instead of '/home/&amp;lt;userid&amp;gt;'.&amp;nbsp; '~' is automatically expanded to the correct path for their home directory.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;=G=&lt;/P&gt;</description>
      <pubDate>Sat, 07 Apr 2018 14:04:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Software-for-Learning/Three-Simple-Ways-to-Import-Data-Into-SAS-OnDemand-for-Academics/m-p/452203#M38</guid>
      <dc:creator>Galen</dc:creator>
      <dc:date>2018-04-07T14:04:47Z</dc:date>
    </item>
    <item>
      <title>Re: Three Simple Ways to Import Data Into SAS OnDemand for Academics: Enterprise Miner</title>
      <link>https://communities.sas.com/t5/SAS-Software-for-Learning/Three-Simple-Ways-to-Import-Data-Into-SAS-OnDemand-for-Academics/m-p/452213#M39</link>
      <description>&lt;P&gt;I was not aware of this trick! I guess you learn something new everyday&amp;nbsp;&lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://communities.sas.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt; I will update the code in my post.&lt;/P&gt;</description>
      <pubDate>Sat, 07 Apr 2018 16:54:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Software-for-Learning/Three-Simple-Ways-to-Import-Data-Into-SAS-OnDemand-for-Academics/m-p/452213#M39</guid>
      <dc:creator>danielduval0</dc:creator>
      <dc:date>2018-04-07T16:54:10Z</dc:date>
    </item>
  </channel>
</rss>

