<?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: Bringing data from Access into SAS in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Bringing-data-from-Access-into-SAS/m-p/706795#M216992</link>
    <description>&lt;P&gt;To start check you have SAS/ACCESS to PC FILES licensed and installed:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc setinit;
run;

proc product_status;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Thu, 17 Dec 2020 20:58:17 GMT</pubDate>
    <dc:creator>SASKiwi</dc:creator>
    <dc:date>2020-12-17T20:58:17Z</dc:date>
    <item>
      <title>Bringing data from Access into SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Bringing-data-from-Access-into-SAS/m-p/706727#M216935</link>
      <description>&lt;P&gt;Here is the code:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc import&lt;BR /&gt;datatable = 'FIELDRULES'&lt;BR /&gt;out = work.FIELDRULES&lt;BR /&gt;DBMS = ACCESS REPLACE;&lt;BR /&gt;database = "J:\path\accessfilename.accdb";&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here is the error.&amp;nbsp; I have seen this one so many times over the years and it is always a giant pain in the rump.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ERROR: Connect: Class not registered&lt;BR /&gt;ERROR: Error in the LIBNAME statement.&lt;BR /&gt;ERROR: Connection Failed. See log for details.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm using 64-bit SAS as well as 64-bit Microsoft Office.&amp;nbsp; I think I have PC Files too.&amp;nbsp; Any help is appreciated.&amp;nbsp; This stuff drives me crazy.&lt;/P&gt;</description>
      <pubDate>Thu, 17 Dec 2020 17:58:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Bringing-data-from-Access-into-SAS/m-p/706727#M216935</guid>
      <dc:creator>n6</dc:creator>
      <dc:date>2020-12-17T17:58:41Z</dc:date>
    </item>
    <item>
      <title>Re: Bringing data from Access into SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Bringing-data-from-Access-into-SAS/m-p/706795#M216992</link>
      <description>&lt;P&gt;To start check you have SAS/ACCESS to PC FILES licensed and installed:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc setinit;
run;

proc product_status;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 17 Dec 2020 20:58:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Bringing-data-from-Access-into-SAS/m-p/706795#M216992</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2020-12-17T20:58:17Z</dc:date>
    </item>
    <item>
      <title>Re: Bringing data from Access into SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Bringing-data-from-Access-into-SAS/m-p/706809#M217002</link>
      <description>&lt;P&gt;Among the many other things that are generated in the log window when I run that code, I see this, which I'm assuming means I have it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;---SAS/ACCESS Interface to PC Files 31DEC2020 (CPU A)&lt;/P&gt;</description>
      <pubDate>Thu, 17 Dec 2020 21:57:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Bringing-data-from-Access-into-SAS/m-p/706809#M217002</guid>
      <dc:creator>n6</dc:creator>
      <dc:date>2020-12-17T21:57:23Z</dc:date>
    </item>
    <item>
      <title>Re: Bringing data from Access into SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Bringing-data-from-Access-into-SAS/m-p/706813#M217006</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13600"&gt;@n6&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Among the many other things that are generated in the log window when I run that code, I see this, which I'm assuming means I have it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;---SAS/ACCESS Interface to PC Files 31DEC2020 (CPU A)&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;If that was not in both the Setinit and Product_status output then that would mean it is licensed but not installed.&lt;/P&gt;</description>
      <pubDate>Thu, 17 Dec 2020 22:16:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Bringing-data-from-Access-into-SAS/m-p/706813#M217006</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2020-12-17T22:16:22Z</dc:date>
    </item>
    <item>
      <title>Re: Bringing data from Access into SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Bringing-data-from-Access-into-SAS/m-p/706828#M217015</link>
      <description>&lt;P&gt;Oh, okay.&amp;nbsp; What I pasted in the last post is what comes up when I do proc setinit.&amp;nbsp; And the following comes up when I do proc product_status.&amp;nbsp; So I think I have it, since it's in there for both.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For SAS/ACCESS Interface to PC Files ...&lt;BR /&gt;Custom version information: 9.4_M6&lt;/P&gt;</description>
      <pubDate>Thu, 17 Dec 2020 22:58:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Bringing-data-from-Access-into-SAS/m-p/706828#M217015</guid>
      <dc:creator>n6</dc:creator>
      <dc:date>2020-12-17T22:58:49Z</dc:date>
    </item>
    <item>
      <title>Re: Bringing data from Access into SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Bringing-data-from-Access-into-SAS/m-p/707098#M217093</link>
      <description>&lt;P&gt;If you are using 64-bit SAS then the error you are getting suggests that the Access database you are reading is 32-bit. To get around this either download and install the SAS PC Files Server, or download the 32-bit Microsoft Jet engine. Both are free so the choice is yours. Another possible option would be to save the Access database as 64-bit which your 64-bit Office should be able to do.&lt;/P&gt;</description>
      <pubDate>Fri, 18 Dec 2020 21:43:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Bringing-data-from-Access-into-SAS/m-p/707098#M217093</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2020-12-18T21:43:35Z</dc:date>
    </item>
  </channel>
</rss>

