<?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 Create Linked Table in MS Access From SAS Dataset? in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Create-Linked-Table-in-MS-Access-From-SAS-Dataset/m-p/477231#M286205</link>
    <description>&lt;P&gt;Hi SAS Community,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to create a linked table in Microsoft Access that references a SAS data set. Through the SAS/Access&amp;nbsp;engine I am able to pull in data from MS Access into SAS, but I can't figure&amp;nbsp;a way to have it go the other way around. I want to create a linked table in Access because MS Access has data limits of 2GB, and the SAS dataset that I am working with is about 6GB.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If anyone knows a way that I would be able to do this it would be very helpful.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for the help,&lt;/P&gt;&lt;P&gt;Tom&lt;/P&gt;</description>
    <pubDate>Wed, 11 Jul 2018 19:54:27 GMT</pubDate>
    <dc:creator>Tommy1</dc:creator>
    <dc:date>2018-07-11T19:54:27Z</dc:date>
    <item>
      <title>Create Linked Table in MS Access From SAS Dataset?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Create-Linked-Table-in-MS-Access-From-SAS-Dataset/m-p/477231#M286205</link>
      <description>&lt;P&gt;Hi SAS Community,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to create a linked table in Microsoft Access that references a SAS data set. Through the SAS/Access&amp;nbsp;engine I am able to pull in data from MS Access into SAS, but I can't figure&amp;nbsp;a way to have it go the other way around. I want to create a linked table in Access because MS Access has data limits of 2GB, and the SAS dataset that I am working with is about 6GB.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If anyone knows a way that I would be able to do this it would be very helpful.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for the help,&lt;/P&gt;&lt;P&gt;Tom&lt;/P&gt;</description>
      <pubDate>Wed, 11 Jul 2018 19:54:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Create-Linked-Table-in-MS-Access-From-SAS-Dataset/m-p/477231#M286205</guid>
      <dc:creator>Tommy1</dc:creator>
      <dc:date>2018-07-11T19:54:27Z</dc:date>
    </item>
    <item>
      <title>Re: Create Linked Table in MS Access From SAS Dataset?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Create-Linked-Table-in-MS-Access-From-SAS-Dataset/m-p/477654#M286206</link>
      <description>&lt;P&gt;You first need to create the empty Access database somewhere on your computer/network share. You will need the path and name of database for the next step.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You can then create an Access database from tables in a SAS library with code like this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;libname your_data ACCESS 'C:/PATH/test.accdb';&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Next, you can copy some tables from a pre-defined library into your library that is actually the Access database.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc copy in=library_name out=your_data;
 select table_for_database;
 run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;However, the Access database will not linked to your SAS library in the true sense of the word because if someone is using the database, and you make changes to the tables in SAS, the user will not automatically see the changes. In addition, Access will not support views that you may create via the CREATE VIEW statement in PROC SQL.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 12 Jul 2018 18:55:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Create-Linked-Table-in-MS-Access-From-SAS-Dataset/m-p/477654#M286206</guid>
      <dc:creator>svh</dc:creator>
      <dc:date>2018-07-12T18:55:36Z</dc:date>
    </item>
    <item>
      <title>Re: Create Linked Table in MS Access From SAS Dataset?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Create-Linked-Table-in-MS-Access-From-SAS-Dataset/m-p/477680#M286207</link>
      <description>&lt;P&gt;Thank you for answering. This is not exactly what I am trying to do, but this is a clever solution that I may be able to utilize for another analysis in the future. As you said in your post&lt;SPAN&gt;, the Access database is not linked to the SAS library&amp;nbsp;like I had hoped I would be able to do. This is basically just creating a table in Access. Unfortunately as I said, my data is over 6GB while&amp;nbsp;Access can only hold up to 2GB. Thank you so much for trying to help!&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 12 Jul 2018 20:21:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Create-Linked-Table-in-MS-Access-From-SAS-Dataset/m-p/477680#M286207</guid>
      <dc:creator>Tommy1</dc:creator>
      <dc:date>2018-07-12T20:21:56Z</dc:date>
    </item>
    <item>
      <title>Re: Create Linked Table in MS Access From SAS Dataset?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Create-Linked-Table-in-MS-Access-From-SAS-Dataset/m-p/477788#M286208</link>
      <description>I don't think that SAS supports this feature.&lt;BR /&gt;SAS has ODBC and OLEDB drivers though you could use to access SAS data. But if the MS Access and SAS resides on different hosts additional licences are required.</description>
      <pubDate>Fri, 13 Jul 2018 06:03:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Create-Linked-Table-in-MS-Access-From-SAS-Dataset/m-p/477788#M286208</guid>
      <dc:creator>LinusH</dc:creator>
      <dc:date>2018-07-13T06:03:42Z</dc:date>
    </item>
    <item>
      <title>Re: Create Linked Table in MS Access From SAS Dataset?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Create-Linked-Table-in-MS-Access-From-SAS-Dataset/m-p/477966#M286209</link>
      <description>&lt;P&gt;Thanks for letting me know that SAS may not support this.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there a way using the ODBC driver to create an ODBC data base because there is a possibility I&amp;nbsp;might be able to connect to that. I don't really understand how ODBC works. I am trying to read the documentation&amp;nbsp;and Google what is happening in the background, but I still am confused&amp;nbsp;and can't figure out&amp;nbsp;how everything interacts together. It may not be possible as you said, but I was just trying to read up on the ODBC connection just in case that was a possibility.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for all the help!&lt;/P&gt;</description>
      <pubDate>Fri, 13 Jul 2018 17:47:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Create-Linked-Table-in-MS-Access-From-SAS-Dataset/m-p/477966#M286209</guid>
      <dc:creator>Tommy1</dc:creator>
      <dc:date>2018-07-13T17:47:35Z</dc:date>
    </item>
  </channel>
</rss>

