<?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: Proc Export defaulting to server in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Proc-Export-defaulting-to-server/m-p/783318#M249742</link>
    <description>&lt;P&gt;The Query Builder in EG does not export anything, it creates datasets through pure SQL code.&lt;/P&gt;
&lt;P&gt;The Export wizard sends code to the server that writes a file in WORK, and then EG copies the file to your desktop for further processing (e.g. conversion to Excel).&lt;/P&gt;
&lt;P&gt;So you either overrun your WORK quota on the server, or run out of space on your desktop. Consult with your SAS administrators if you have a disk full issue in your WORK.&lt;/P&gt;
&lt;P&gt;Time is not an issue, as EG does exactly what I told you before: create a file on the server, then download it.&lt;/P&gt;
&lt;P&gt;Setting up a network share between server and desktop will make this much easier, and for that you also need your SAS/server admins.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 01 Dec 2021 06:18:30 GMT</pubDate>
    <dc:creator>Kurt_Bremser</dc:creator>
    <dc:date>2021-12-01T06:18:30Z</dc:date>
    <item>
      <title>Proc Export defaulting to server</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Export-defaulting-to-server/m-p/783294#M249727</link>
      <description>&lt;P&gt;data _null_;&lt;BR /&gt;set Work.Sample ;&lt;BR /&gt;file 'C:\Users\John\Desktop\Sample.csv' dsd ;&lt;BR /&gt;put (_all_) (+0);&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;ERROR: Insufficient authorization to access /sas/config/compute/SASApp/C:\Users\John\Desktop\Sample.csv.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Why would export default to server, what am I missing here to set the export to desktop ?&lt;/P&gt;</description>
      <pubDate>Tue, 30 Nov 2021 22:13:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Export-defaulting-to-server/m-p/783294#M249727</guid>
      <dc:creator>PROCDATARUN</dc:creator>
      <dc:date>2021-11-30T22:13:45Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Export defaulting to server</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Export-defaulting-to-server/m-p/783296#M249728</link>
      <description>&lt;P&gt;Your SAS session runs on a UNIX server, so you have to use UNIX filename syntax and create your files in a location where you have write permission; I suggest to use your home directory ($HOME).&lt;/P&gt;
&lt;P&gt;Afterwards, use the download facility in SAS Studio or the Copy Files task of Enterprise Guide to transfer the file to your PC.&lt;/P&gt;</description>
      <pubDate>Tue, 30 Nov 2021 22:21:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Export-defaulting-to-server/m-p/783296#M249728</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2021-11-30T22:21:37Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Export defaulting to server</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Export-defaulting-to-server/m-p/783299#M249730</link>
      <description>Thanks &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/11562"&gt;@Kurt_Bremser&lt;/a&gt;&lt;BR /&gt;&lt;BR /&gt;Am trying to export a large dataset to CSV which fails due to size when export step is used on EG query builder.&lt;BR /&gt;2 mill rows and 100 columns.&lt;BR /&gt;&lt;BR /&gt;Export step on query builder does allow exporting to desktop.&lt;BR /&gt;&lt;BR /&gt;How would you overcome this issue ?&lt;BR /&gt;&lt;BR /&gt;Exporting to a unix location and then downloading adds more time.</description>
      <pubDate>Tue, 30 Nov 2021 22:50:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Export-defaulting-to-server/m-p/783299#M249730</guid>
      <dc:creator>PROCDATARUN</dc:creator>
      <dc:date>2021-11-30T22:50:53Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Export defaulting to server</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Export-defaulting-to-server/m-p/783302#M249733</link>
      <description>&lt;P&gt;Talk to your SAS administrator about creating a server folder share that is accessible from both the SAS server and your PC, for example via Windows Explorer. Then you can write to this folder using any SAS code and access any data there with desktop apps. Its usually not a good idea to store company on your PC hard drive for security reasons.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 30 Nov 2021 23:14:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Export-defaulting-to-server/m-p/783302#M249733</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2021-11-30T23:14:55Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Export defaulting to server</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Export-defaulting-to-server/m-p/783318#M249742</link>
      <description>&lt;P&gt;The Query Builder in EG does not export anything, it creates datasets through pure SQL code.&lt;/P&gt;
&lt;P&gt;The Export wizard sends code to the server that writes a file in WORK, and then EG copies the file to your desktop for further processing (e.g. conversion to Excel).&lt;/P&gt;
&lt;P&gt;So you either overrun your WORK quota on the server, or run out of space on your desktop. Consult with your SAS administrators if you have a disk full issue in your WORK.&lt;/P&gt;
&lt;P&gt;Time is not an issue, as EG does exactly what I told you before: create a file on the server, then download it.&lt;/P&gt;
&lt;P&gt;Setting up a network share between server and desktop will make this much easier, and for that you also need your SAS/server admins.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 01 Dec 2021 06:18:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Export-defaulting-to-server/m-p/783318#M249742</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2021-12-01T06:18:30Z</dc:date>
    </item>
  </channel>
</rss>

