<?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: Exporting/Importing CSV file in SAS 9.4 in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Exporting-Importing-CSV-file-in-SAS-9-4/m-p/394228#M66357</link>
    <description>&lt;P&gt;You do need the path, and possibly the TERMSTR option if you're working across OS but otherwise this is a very cumbersome way to access a CSV file.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You should be able to do a straight PROC IMPORT using DBMS=CSV&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc export data=sashelp.class outfile='path to csv file' dbms=csv replace;run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Fri, 08 Sep 2017 14:47:25 GMT</pubDate>
    <dc:creator>Reeza</dc:creator>
    <dc:date>2017-09-08T14:47:25Z</dc:date>
    <item>
      <title>Exporting/Importing CSV file in SAS 9.4</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Exporting-Importing-CSV-file-in-SAS-9-4/m-p/394192#M66351</link>
      <description>&lt;P&gt;I’m wondering if we have any possibility to export/import data to/from CSV files from LINUX SAS to Windows PC using PC File Server?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please understand the source CSV file must be on Windows PC.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;We are able to do this successfully with MS Excel and MS Access, but problem is with only CSV.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Could you help me in getting this done? I appreciate if you can get sample syntax for this.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Note: We can export CSV within LINUX using proc export, but that is not what I am looking for.&lt;/P&gt;</description>
      <pubDate>Fri, 08 Sep 2017 13:04:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Exporting-Importing-CSV-file-in-SAS-9-4/m-p/394192#M66351</guid>
      <dc:creator>avinashginjupal</dc:creator>
      <dc:date>2017-09-08T13:04:02Z</dc:date>
    </item>
    <item>
      <title>Re: Exporting/Importing CSV file in SAS 9.4</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Exporting-Importing-CSV-file-in-SAS-9-4/m-p/394203#M66352</link>
      <description>&lt;P&gt;I think you misunderstand your problem. &amp;nbsp;Let me explain:&lt;/P&gt;
&lt;P&gt;Excel files (*.xlsx, *.xls etc.) are Microsoft Office proprietary files. &amp;nbsp;To create these you need the Excel engine to create them. &amp;nbsp;This is only present on Windows, hence the need to use pcfiles and such like as a fill in for operating systems like Linux which do not have Office.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;CSV on the other hand is a plain text files delimited by commas. &amp;nbsp;This file is not proprietary, can be created and read on any system by any program completely freely. &amp;nbsp;Therefore you do not need to do anything specific to create this file, and why it is far better as a data medium than Excel.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;To create CSV on any system, you can proc export file="xyz.csv" data=abc; run;, or you could write your own datastep to do it, or any other method you are not constrained in any way. &amp;nbsp;&lt;/P&gt;
&lt;P&gt;Do not confuse CSV as being Excel it is not. &amp;nbsp;Excel has a module which can read and interpret a CSV but it does not own that file format.&lt;/P&gt;</description>
      <pubDate>Fri, 08 Sep 2017 13:31:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Exporting-Importing-CSV-file-in-SAS-9-4/m-p/394203#M66352</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2017-09-08T13:31:53Z</dc:date>
    </item>
    <item>
      <title>Re: Exporting/Importing CSV file in SAS 9.4</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Exporting-Importing-CSV-file-in-SAS-9-4/m-p/394205#M66353</link>
      <description>&lt;P&gt;I think I have found the way:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The way we can do this is by defining ODBC entries on the Win Server pointing to whatever folder that is that users want to use.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="cs95e872d0"&gt;&lt;SPAN class="cs79e035241"&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;Create an ODBC driver entry for a text file and point it to the directory&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="cs79e035241"&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;that you want to write to. &amp;nbsp;&amp;nbsp;&amp;nbsp;Then you use a named literal to create it. &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="cs95e872d0"&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="cs95e872d0"&gt;&lt;SPAN class="cs79e035241"&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;Then you can run code like this. &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="cs95e872d0"&gt;&lt;SPAN class="cs79e035241"&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="cs95e872d0"&gt;&lt;SPAN class="cs914bd6e41"&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;libname&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="csd73478991"&gt;&lt;SPAN style="font-size: 10.0pt;"&gt; test pcfiles &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="cs914bd6e41"&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;server&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="csd73478991"&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;='mypcfileserver.com' &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="cs914bd6e41"&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;port&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="csd73478991"&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;=&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="csf07dc231"&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;9621&lt;/SPAN&gt;&lt;/SPAN&gt; &lt;SPAN class="cs914bd6e41"&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;dsn&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="csd73478991"&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;=&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="cs9e56fccf1"&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;'mytexter'&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="csd73478991"&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="cs95e872d0"&gt;&lt;SPAN class="csd73478991"&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="cs95e872d0"&gt;&lt;SPAN class="csc9adce211"&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;data&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="csd73478991"&gt;&lt;SPAN style="font-size: 10.0pt;"&gt; test.'mystuff.csv'n ; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="cs914bd6e41"&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;set&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="csd73478991"&gt;&lt;SPAN style="font-size: 10.0pt;"&gt; sashelp.class;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="cs95e872d0"&gt;&lt;SPAN class="csc9adce211"&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;run&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="csd73478991"&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="cs95e872d0"&gt;&lt;SPAN class="cs79e035241"&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 08 Sep 2017 13:43:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Exporting-Importing-CSV-file-in-SAS-9-4/m-p/394205#M66353</guid>
      <dc:creator>avinashginjupal</dc:creator>
      <dc:date>2017-09-08T13:43:39Z</dc:date>
    </item>
    <item>
      <title>Re: Exporting/Importing CSV file in SAS 9.4</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Exporting-Importing-CSV-file-in-SAS-9-4/m-p/394228#M66357</link>
      <description>&lt;P&gt;You do need the path, and possibly the TERMSTR option if you're working across OS but otherwise this is a very cumbersome way to access a CSV file.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You should be able to do a straight PROC IMPORT using DBMS=CSV&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc export data=sashelp.class outfile='path to csv file' dbms=csv replace;run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 08 Sep 2017 14:47:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Exporting-Importing-CSV-file-in-SAS-9-4/m-p/394228#M66357</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2017-09-08T14:47:25Z</dc:date>
    </item>
    <item>
      <title>Re: Exporting/Importing CSV file in SAS 9.4</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Exporting-Importing-CSV-file-in-SAS-9-4/m-p/394273#M66359</link>
      <description>&lt;P&gt;I wanted to export/import file from UNIX to WINDOWS (vice versa), if it is locally then no issues it will work but it should work on cross platforms.&lt;/P&gt;</description>
      <pubDate>Fri, 08 Sep 2017 16:55:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Exporting-Importing-CSV-file-in-SAS-9-4/m-p/394273#M66359</guid>
      <dc:creator>avinashginjupal</dc:creator>
      <dc:date>2017-09-08T16:55:13Z</dc:date>
    </item>
    <item>
      <title>Re: Exporting/Importing CSV file in SAS 9.4</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Exporting-Importing-CSV-file-in-SAS-9-4/m-p/394277#M66360</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/72822"&gt;@avinashginjupal&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;I think I have found the way:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The way we can do this is by defining ODBC entries on the Win Server pointing to whatever folder that is that users want to use.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="cs95e872d0"&gt;&lt;SPAN class="cs79e035241"&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;Create an ODBC driver entry for a text file and point it to the directory&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="cs79e035241"&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;that you want to write to. &amp;nbsp;&amp;nbsp;&amp;nbsp;Then you use a named literal to create it. &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="cs95e872d0"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="cs95e872d0"&gt;&lt;SPAN class="cs79e035241"&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;Then you can run code like this. &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="cs95e872d0"&gt;&lt;SPAN class="cs79e035241"&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="cs95e872d0"&gt;&lt;SPAN class="cs914bd6e41"&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;libname&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="csd73478991"&gt;&lt;SPAN style="font-size: 10.0pt;"&gt; test pcfiles &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="cs914bd6e41"&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;server&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="csd73478991"&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;='mypcfileserver.com' &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="cs914bd6e41"&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;port&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="csd73478991"&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;=&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="csf07dc231"&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;9621&lt;/SPAN&gt;&lt;/SPAN&gt; &lt;SPAN class="cs914bd6e41"&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;dsn&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="csd73478991"&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;=&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="cs9e56fccf1"&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;'mytexter'&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="csd73478991"&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="cs95e872d0"&gt;&lt;SPAN class="csd73478991"&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="cs95e872d0"&gt;&lt;SPAN class="csc9adce211"&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;data&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="csd73478991"&gt;&lt;SPAN style="font-size: 10.0pt;"&gt; test.'mystuff.csv'n ; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="cs914bd6e41"&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;set&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="csd73478991"&gt;&lt;SPAN style="font-size: 10.0pt;"&gt; sashelp.class;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="cs95e872d0"&gt;&lt;SPAN class="csc9adce211"&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;run&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="csd73478991"&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="cs95e872d0"&gt;&lt;SPAN class="cs79e035241"&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Cool. &amp;nbsp;&lt;/P&gt;
&lt;P&gt;Can you explain more about how you configured the ODBC entry? &amp;nbsp;Perhaps a screen shot from ODBC Data Sources Administator&amp;nbsp;?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 08 Sep 2017 17:13:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Exporting-Importing-CSV-file-in-SAS-9-4/m-p/394277#M66360</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2017-09-08T17:13:34Z</dc:date>
    </item>
    <item>
      <title>Re: Exporting/Importing CSV file in SAS 9.4</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Exporting-Importing-CSV-file-in-SAS-9-4/m-p/394576#M66387</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Test1.png" style="width: 465px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/14947i10CDC7B0F78385CA/image-size/large?v=v2&amp;amp;px=999" role="button" title="Test1.png" alt="Test1.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Test2.png" style="width: 465px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/14948iCFADFBAC60810F3C/image-size/large?v=v2&amp;amp;px=999" role="button" title="Test2.png" alt="Test2.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Test3.png" style="width: 463px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/14946i35DFEB303D271E74/image-size/large?v=v2&amp;amp;px=999" role="button" title="Test3.png" alt="Test3.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="cs95e872d0"&gt;&lt;SPAN class="cs79e035241"&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;Then you can run code like this. &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="cs95e872d0"&gt;&lt;SPAN class="cs79e035241"&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="cs95e872d0"&gt;&lt;SPAN class="cs914bd6e41"&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;libname&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="csd73478991"&gt;&lt;SPAN style="font-size: 10.0pt;"&gt; test pcfiles &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="cs914bd6e41"&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;server&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="csd73478991"&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;='mypcfileserver.com' &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="cs914bd6e41"&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;port&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="csd73478991"&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;=&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="csf07dc231"&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;9621&lt;/SPAN&gt;&lt;/SPAN&gt; &lt;SPAN class="cs914bd6e41"&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;dsn&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="csd73478991"&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;=&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="cs9e56fccf1"&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;'mytexter'&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="csd73478991"&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="cs95e872d0"&gt;&lt;SPAN class="csd73478991"&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="cs95e872d0"&gt;&lt;SPAN class="csc9adce211"&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;data&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="csd73478991"&gt;&lt;SPAN style="font-size: 10.0pt;"&gt; test.'mystuff.csv'n ; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="cs914bd6e41"&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;set&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="csd73478991"&gt;&lt;SPAN style="font-size: 10.0pt;"&gt; sashelp.class;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="cs95e872d0"&gt;&lt;SPAN class="csc9adce211"&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;run&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="csd73478991"&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="cs95e872d0"&gt;&lt;SPAN class="cs79e035241"&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 11 Sep 2017 06:59:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Exporting-Importing-CSV-file-in-SAS-9-4/m-p/394576#M66387</guid>
      <dc:creator>avinashginjupal</dc:creator>
      <dc:date>2017-09-11T06:59:15Z</dc:date>
    </item>
  </channel>
</rss>

