<?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 Error Message for a libname in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Error-Message-for-a-libname/m-p/263306#M18293</link>
    <description>&lt;P&gt;I used to use the below code to connect to one of our ACCESS database at sharedrive. &lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt; libname LOC access "\\...share\data\database.accdb";&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;however, we recently updated the SAS EG, and my code do not work any more, and it gave me below error message: &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#FF0000"&gt;ERROR: Connect: Class not registered&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF0000"&gt;ERROR: Error in the LIBNAME statement.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;same error message also happened to my proc export/ import procedure. i have to using import/export wizard to import or export my thousands external files weekly. But i still can use the libname statement to assign a permanent library on my share drive.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I used proc setinit to check our SAS module,&amp;nbsp; and we do have the SAS/ACCESS interface to PC Files module. our IT has no idea what happened. your response will be appreciated. Thank you.&lt;/P&gt;</description>
    <pubDate>Tue, 12 Apr 2016 18:54:59 GMT</pubDate>
    <dc:creator>lovedieer</dc:creator>
    <dc:date>2016-04-12T18:54:59Z</dc:date>
    <item>
      <title>Error Message for a libname</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Error-Message-for-a-libname/m-p/263306#M18293</link>
      <description>&lt;P&gt;I used to use the below code to connect to one of our ACCESS database at sharedrive. &lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt; libname LOC access "\\...share\data\database.accdb";&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;however, we recently updated the SAS EG, and my code do not work any more, and it gave me below error message: &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#FF0000"&gt;ERROR: Connect: Class not registered&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF0000"&gt;ERROR: Error in the LIBNAME statement.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;same error message also happened to my proc export/ import procedure. i have to using import/export wizard to import or export my thousands external files weekly. But i still can use the libname statement to assign a permanent library on my share drive.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I used proc setinit to check our SAS module,&amp;nbsp; and we do have the SAS/ACCESS interface to PC Files module. our IT has no idea what happened. your response will be appreciated. Thank you.&lt;/P&gt;</description>
      <pubDate>Tue, 12 Apr 2016 18:54:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Error-Message-for-a-libname/m-p/263306#M18293</guid>
      <dc:creator>lovedieer</dc:creator>
      <dc:date>2016-04-12T18:54:59Z</dc:date>
    </item>
    <item>
      <title>Re: Error Message for a libname</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Error-Message-for-a-libname/m-p/263312#M18294</link>
      <description>&lt;P&gt;You likely upgraded to a version of SAS that is 64bit and your office is 32 bit.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;See if you have PC file server installed. If so, start it up and use one of the following:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt; libname LOC pcfiles path= "\\...share\data\database.accdb";

 libname LOC accessCS "\\...share\data\database.accdb";&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 12 Apr 2016 19:04:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Error-Message-for-a-libname/m-p/263312#M18294</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2016-04-12T19:04:09Z</dc:date>
    </item>
    <item>
      <title>Re: Error Message for a libname</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Error-Message-for-a-libname/m-p/263313#M18295</link>
      <description>&lt;P&gt;&lt;A href="http://blogs.sas.com/content/sasdummy/2012/05/01/64-bit-gotchas/" target="_self"&gt;Darn 64bit?&lt;/A&gt;&amp;nbsp;we had the same issue before, so give a try to see if it fits yours.&lt;/P&gt;</description>
      <pubDate>Tue, 12 Apr 2016 19:07:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Error-Message-for-a-libname/m-p/263313#M18295</guid>
      <dc:creator>Haikuo</dc:creator>
      <dc:date>2016-04-12T19:07:37Z</dc:date>
    </item>
    <item>
      <title>Re: Error Message for a libname</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Error-Message-for-a-libname/m-p/263319#M18296</link>
      <description>&lt;P&gt;An alternative solution to using the PC File Server to deal with the bitness problem is to install the 64-bit Microsoft ACE Database drivers as long as your SAS Server is Windows-based. These are available as a download from Microsoft.&lt;/P&gt;</description>
      <pubDate>Tue, 12 Apr 2016 19:39:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Error-Message-for-a-libname/m-p/263319#M18296</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2016-04-12T19:39:44Z</dc:date>
    </item>
    <item>
      <title>Re: Error Message for a libname</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Error-Message-for-a-libname/m-p/263482#M18306</link>
      <description>Thank you all for the solution. I will contact IT department to check the suggestion. we are not allowed to change anything on computer, even minor as adobe reader updating. Thank you all.</description>
      <pubDate>Wed, 13 Apr 2016 12:01:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Error-Message-for-a-libname/m-p/263482#M18306</guid>
      <dc:creator>lovedieer</dc:creator>
      <dc:date>2016-04-13T12:01:25Z</dc:date>
    </item>
  </channel>
</rss>

