<?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: Export Data in EG in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Export-Data-in-EG/m-p/213715#M16067</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Exporting through EG means that the export is done in SAS and the result is transferred to the client where EG runs. Depending on the layout of the .csv, you may simply be limited by the network data transfer rate.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROC EXPORT will only utilize the workspace server locally and may be much faster on its own; it also shows you the data step it generated in the log, which you can use for further optimization.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try to reduce the record size of your .csv if possible. You can also compress the .csv (eg with gzip) before using a file transfer tool to put the file where you need it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 30 Jul 2015 07:04:52 GMT</pubDate>
    <dc:creator>Kurt_Bremser</dc:creator>
    <dc:date>2015-07-30T07:04:52Z</dc:date>
    <item>
      <title>Export Data in EG</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Export-Data-in-EG/m-p/213713#M16065</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;Hello All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm trying to export a large data set to a .CSV format using the export option in SAS EG but it is taking a long time for me to export the data. Is there an alternative method to this?&lt;/P&gt;&lt;P&gt;The data set has 35740724 records.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Jul 2015 20:14:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Export-Data-in-EG/m-p/213713#M16065</guid>
      <dc:creator>SASTad</dc:creator>
      <dc:date>2015-07-29T20:14:43Z</dc:date>
    </item>
    <item>
      <title>Re: Export Data in EG</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Export-Data-in-EG/m-p/213714#M16066</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try PROC EXPORT instead of the EG Export menu option. That will use the SAS server resources which should be a lot faster.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Jul 2015 20:30:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Export-Data-in-EG/m-p/213714#M16066</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2015-07-29T20:30:17Z</dc:date>
    </item>
    <item>
      <title>Re: Export Data in EG</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Export-Data-in-EG/m-p/213715#M16067</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Exporting through EG means that the export is done in SAS and the result is transferred to the client where EG runs. Depending on the layout of the .csv, you may simply be limited by the network data transfer rate.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROC EXPORT will only utilize the workspace server locally and may be much faster on its own; it also shows you the data step it generated in the log, which you can use for further optimization.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try to reduce the record size of your .csv if possible. You can also compress the .csv (eg with gzip) before using a file transfer tool to put the file where you need it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Jul 2015 07:04:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Export-Data-in-EG/m-p/213715#M16067</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2015-07-30T07:04:52Z</dc:date>
    </item>
    <item>
      <title>Re: Export Data in EG</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Export-Data-in-EG/m-p/213716#M16068</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The EG Export Menu transfers your data from the SAS Server to the EG client and then as much as I know uses client side .net functionality to create a .csv file. The bottleneck is normally the network when transferring the data. So that's a good solution for low volume once-off tasks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For high volumes or repeated tasks you want to do this .csv file creation programatically on the Server. You can use Proc Export for this or there is also a SAS utility macro&lt;SPAN style="font-size: 13.3333330154419px;"&gt; %DS2CSV&lt;/SPAN&gt; available &lt;A href="http://support.sas.com/documentation/cdl/en/lebaseutilref/64791/HTML/default/viewer.htm#n0yo3bszlrh0byn1j4fxh4ndei8u.htm" title="http://support.sas.com/documentation/cdl/en/lebaseutilref/64791/HTML/default/viewer.htm#n0yo3bszlrh0byn1j4fxh4ndei8u.htm"&gt;Base SAS(R) 9.4 Utilities: Reference&lt;/A&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Be aware that when executing the task on the server you need to write the output (the .csv) to a location available to the Server (so it can't be your local C: drive).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Jul 2015 10:38:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Export-Data-in-EG/m-p/213716#M16068</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2015-07-30T10:38:58Z</dc:date>
    </item>
  </channel>
</rss>

