<?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: Can i export one file to Microsoft access with multiples tables? in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Can-i-export-one-file-to-Microsoft-access-with-multiples-tables/m-p/285231#M19530</link>
    <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/4"&gt;@ChrisHemedinger﻿&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The libname syntax would be&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;libname out PCFiles path='path to file';&lt;/P&gt;</description>
    <pubDate>Mon, 18 Jul 2016 13:41:02 GMT</pubDate>
    <dc:creator>Reeza</dc:creator>
    <dc:date>2016-07-18T13:41:02Z</dc:date>
    <item>
      <title>Can i export one file to Microsoft access with multiples tables?</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Can-i-export-one-file-to-Microsoft-access-with-multiples-tables/m-p/285216#M19526</link>
      <description>&lt;P&gt;Hi, this program is to export one file to microsoft office when we have a one table,&lt;/P&gt;&lt;P&gt;proc export&lt;BR /&gt;data=work.rr_if_datos_basicos_stl_201603&lt;BR /&gt;outtable='ACCESSCS'&lt;BR /&gt;dbms=ACCESSCS replace;&lt;BR /&gt;database='D:\Users\fmartinb\Desktop\prueba.mdb';&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;but i if have more datas??&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;</description>
      <pubDate>Mon, 18 Jul 2016 13:02:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Can-i-export-one-file-to-Microsoft-access-with-multiples-tables/m-p/285216#M19526</guid>
      <dc:creator>Felixmb</dc:creator>
      <dc:date>2016-07-18T13:02:18Z</dc:date>
    </item>
    <item>
      <title>Re: Can i export one file to Microsoft access with multiples tables?</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Can-i-export-one-file-to-Microsoft-access-with-multiples-tables/m-p/285220#M19527</link>
      <description>&lt;P&gt;1. Write multiple proc exports.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;2. Use the libname method instead&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;libname out accesscs 'path to mdb file';&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;data out.table1;&lt;/P&gt;
&lt;P&gt;set table1;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;data out.table2;&lt;/P&gt;
&lt;P&gt;set table2;&lt;/P&gt;
&lt;P&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;libname out;&lt;/P&gt;</description>
      <pubDate>Mon, 18 Jul 2016 13:15:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Can-i-export-one-file-to-Microsoft-access-with-multiples-tables/m-p/285220#M19527</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2016-07-18T13:15:52Z</dc:date>
    </item>
    <item>
      <title>Re: Can i export one file to Microsoft access with multiples tables?</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Can-i-export-one-file-to-Microsoft-access-with-multiples-tables/m-p/285222#M19528</link>
      <description>&lt;P&gt;Hi Team&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;This is OT because it interfaces SAS and R, so I just providing a link. You can export multiple SAS dataets to one access database without the SAS Access to PC-Files product. You do not need to worry abut bitness, however it is a good idea to have a macro inerface to 64 and 32bit R.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Probaly not useful for this list.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is the link&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://listserv.uga.edu/cgi-bin/wa?A2=SAS-L;a0f31ec3.1607c" target="_blank"&gt;https://listserv.uga.edu/cgi-bin/wa?A2=SAS-L;a0f31ec3.1607c&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 18 Jul 2016 13:18:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Can-i-export-one-file-to-Microsoft-access-with-multiples-tables/m-p/285222#M19528</guid>
      <dc:creator>rogerjdeangelis</dc:creator>
      <dc:date>2016-07-18T13:18:49Z</dc:date>
    </item>
    <item>
      <title>Re: Can i export one file to Microsoft access with multiples tables?</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Can-i-export-one-file-to-Microsoft-access-with-multiples-tables/m-p/285224#M19529</link>
      <description>&lt;P&gt;I *think* that&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13879"&gt;@Reeza﻿&lt;/a&gt;'s solution is elegant -- but the actual syntax would be LIBNAME PCFILES (not ACCESSCS). &amp;nbsp;And it requires the PC Files Server, but if you have 64-bit SAS on Windows and 32-bit Office, it's probably all set up. &amp;nbsp;ACCESSCS has the same requirement, so if you're using that, you're good.&lt;/P&gt;</description>
      <pubDate>Mon, 18 Jul 2016 13:25:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Can-i-export-one-file-to-Microsoft-access-with-multiples-tables/m-p/285224#M19529</guid>
      <dc:creator>ChrisHemedinger</dc:creator>
      <dc:date>2016-07-18T13:25:22Z</dc:date>
    </item>
    <item>
      <title>Re: Can i export one file to Microsoft access with multiples tables?</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Can-i-export-one-file-to-Microsoft-access-with-multiples-tables/m-p/285231#M19530</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/4"&gt;@ChrisHemedinger﻿&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The libname syntax would be&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;libname out PCFiles path='path to file';&lt;/P&gt;</description>
      <pubDate>Mon, 18 Jul 2016 13:41:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Can-i-export-one-file-to-Microsoft-access-with-multiples-tables/m-p/285231#M19530</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2016-07-18T13:41:02Z</dc:date>
    </item>
    <item>
      <title>Re: Can i export one file to Microsoft access with multiples tables?</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Can-i-export-one-file-to-Microsoft-access-with-multiples-tables/m-p/285365#M19533</link>
      <description>&lt;P&gt;You can use a LIBNAME with Access without the PC Files Server if you have the Microsoft ACE database components (free download from Microsoft) installed on the same computer as your SAS installation. You just need to make sure the bitness matches: 32bit ACE with 32bit SAS or 64bit ACE with 64bit SAS. &amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 18 Jul 2016 20:08:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Can-i-export-one-file-to-Microsoft-access-with-multiples-tables/m-p/285365#M19533</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2016-07-18T20:08:34Z</dc:date>
    </item>
    <item>
      <title>Re: Can i export one file to Microsoft access with multiples tables?</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Can-i-export-one-file-to-Microsoft-access-with-multiples-tables/m-p/292501#M19976</link>
      <description>&lt;P&gt;I've got a similar situation here, and I'm not sure what I need. I have SAS EG 6.1 64-bit and 7.1 64-bit, but I don't have SAS itself on my PC (we're running on a GRID server). I need to export to Access (I have Office Professional 2010, 32-bit), but I don't see that option within EG. Can I do it if I install the PC Files Server (and is that something for my PC or for the SAS GRID server?)? Or do I need something else to be able to do this export?&lt;/P&gt;</description>
      <pubDate>Thu, 18 Aug 2016 17:29:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Can-i-export-one-file-to-Microsoft-access-with-multiples-tables/m-p/292501#M19976</guid>
      <dc:creator>robertyknwt</dc:creator>
      <dc:date>2016-08-18T17:29:03Z</dc:date>
    </item>
  </channel>
</rss>

