<?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 EG 7.1 - Export to .mdb by code (Unix Server) in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-EG-7-1-Export-to-mdb-by-code-Unix-Server/m-p/502044#M32152</link>
    <description>Thanks, we have PC Files licensed. Is it possible to install PC File Server on every client computer in addition to SAS EG? Or only in one Windows computer?</description>
    <pubDate>Fri, 05 Oct 2018 20:43:28 GMT</pubDate>
    <dc:creator>MariaD</dc:creator>
    <dc:date>2018-10-05T20:43:28Z</dc:date>
    <item>
      <title>SAS EG 7.1 - Export to .mdb by code (Unix Server)</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-EG-7-1-Export-to-mdb-by-code-Unix-Server/m-p/502037#M32150</link>
      <description>&lt;P&gt;Hi folks,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;We have EG 7.1 64 bits connecting with our Unix server (SAS 9.4 M5). I know that you can export to .mdb using point-and-click options if you have Office 64 bits installed or Microsoft ACE 64-bits. We have license PC Files but we don't have it configure in a Windows machine. So, there is any way to export, using programming, to .mdb? For example, for Microsoft Excel exists the option to "export" using ODS Excel.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;</description>
      <pubDate>Fri, 05 Oct 2018 19:52:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-EG-7-1-Export-to-mdb-by-code-Unix-Server/m-p/502037#M32150</guid>
      <dc:creator>MariaD</dc:creator>
      <dc:date>2018-10-05T19:52:40Z</dc:date>
    </item>
    <item>
      <title>Re: SAS EG 7.1 - Export to .mdb by code (Unix Server)</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-EG-7-1-Export-to-mdb-by-code-Unix-Server/m-p/502041#M32151</link>
      <description>&lt;P&gt;If you want to export to MS Access from SAS \ Eguide using code, then you can use PROC EXPORT if you license SAS/Access to PC Files on the SAS server and you also install a piece of software called PC Files Server on a network PC. The documentation for PC Files Server (including examples of the code you would use) can be found here:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://go.documentation.sas.com/?docsetId=pcfsicg&amp;amp;docsetTarget=n1qhkerbd4k9qun1oome59qr7f5y.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en" target="_blank"&gt;https://go.documentation.sas.com/?docsetId=pcfsicg&amp;amp;docsetTarget=n1qhkerbd4k9qun1oome59qr7f5y.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;In this example, you export data from the SAS data set WORK.SASCUSTOMERS to create a new table, Customers_2, which is located on same Windows machine as the SAS PC Files Server.&lt;/SPAN&gt;&lt;/P&gt;
&lt;PRE class="xis-codeFragment"&gt;PROC EXPORT DATA=WORK.SASCUSTOMERS
     OUTTABLE='Customers_2'
     DBMS=ACCESSCS REPLACE ;
     DATABASE='mydrive:\yourAccessdirectory\AnnualFiles.accdb'; 
     SERVER='myPCFServer.com';
     PORT=9621;
     DBDSOPTS='INSERTBUFF=15';
 RUN;&amp;nbsp;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 05 Oct 2018 20:19:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-EG-7-1-Export-to-mdb-by-code-Unix-Server/m-p/502041#M32151</guid>
      <dc:creator>jebjur</dc:creator>
      <dc:date>2018-10-05T20:19:05Z</dc:date>
    </item>
    <item>
      <title>Re: SAS EG 7.1 - Export to .mdb by code (Unix Server)</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-EG-7-1-Export-to-mdb-by-code-Unix-Server/m-p/502044#M32152</link>
      <description>Thanks, we have PC Files licensed. Is it possible to install PC File Server on every client computer in addition to SAS EG? Or only in one Windows computer?</description>
      <pubDate>Fri, 05 Oct 2018 20:43:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-EG-7-1-Export-to-mdb-by-code-Unix-Server/m-p/502044#M32152</guid>
      <dc:creator>MariaD</dc:creator>
      <dc:date>2018-10-05T20:43:28Z</dc:date>
    </item>
    <item>
      <title>Re: SAS EG 7.1 - Export to .mdb by code (Unix Server)</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-EG-7-1-Export-to-mdb-by-code-Unix-Server/m-p/502054#M32153</link>
      <description>&lt;P&gt;The Windows machine you install the SAS PC File Server on needs to be accessible from your SAS Unix server, including the port you will use to communicate (often controlled by firewall rules). For that reason it may be easier to share a single machine. At least that way the SAS code you use would be the same for all users - same server name and port number.&lt;/P&gt;</description>
      <pubDate>Fri, 05 Oct 2018 22:03:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-EG-7-1-Export-to-mdb-by-code-Unix-Server/m-p/502054#M32153</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2018-10-05T22:03:52Z</dc:date>
    </item>
    <item>
      <title>Re: SAS EG 7.1 - Export to .mdb by code (Unix Server)</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-EG-7-1-Export-to-mdb-by-code-Unix-Server/m-p/502360#M32157</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13976"&gt;@SASKiwi&lt;/a&gt;. One last question. The path where the file will be create is on Windows (where PCFF is installed or visible through network)? Or is it possible to define a path on my SAS Unix server too?&lt;/P&gt;</description>
      <pubDate>Mon, 08 Oct 2018 11:56:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-EG-7-1-Export-to-mdb-by-code-Unix-Server/m-p/502360#M32157</guid>
      <dc:creator>MariaD</dc:creator>
      <dc:date>2018-10-08T11:56:18Z</dc:date>
    </item>
    <item>
      <title>Re: SAS EG 7.1 - Export to .mdb by code (Unix Server)</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-EG-7-1-Export-to-mdb-by-code-Unix-Server/m-p/502480#M32158</link>
      <description>&lt;P&gt;The path can be anywhere that the SAS PC File Server recognises. If it is on your SAS Unix server then a folder share would need to be created on Unix and accessible from Windows.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 08 Oct 2018 18:56:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-EG-7-1-Export-to-mdb-by-code-Unix-Server/m-p/502480#M32158</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2018-10-08T18:56:50Z</dc:date>
    </item>
  </channel>
</rss>

