<?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 SAS + ODBC not working in version 9 in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/SAS-ODBC-not-working-in-version-9/m-p/72318#M15595</link>
    <description>In version 8 I used to run this code no problem:&lt;BR /&gt;
libname ext 'C:\';&lt;BR /&gt;
PROC SQL;&lt;BR /&gt;
  CONNECT TO ODBC(prompt);&lt;BR /&gt;
  CREATE TABLE ext.Test AS&lt;BR /&gt;
  SELECT * FROM CONNECTION TO ODBC&lt;BR /&gt;
 (&lt;BR /&gt;
 select DateTime from dbo.Date);&lt;BR /&gt;
%PUT &amp;amp;SQLXMSG;&lt;BR /&gt;
%PUT &amp;amp;SQLXRC;&lt;BR /&gt;
DISCONNECT FROM odbc;&lt;BR /&gt;
quit;&lt;BR /&gt;
&lt;BR /&gt;
Pretty simple connection to ODBC.  But after upgrading to version 9 it gives me the following error:&lt;BR /&gt;
464  libname ext 'C:\';&lt;BR /&gt;
NOTE: Libref EXT was successfully assigned as follows:&lt;BR /&gt;
      Engine:        V9&lt;BR /&gt;
      Physical Name: C:\&lt;BR /&gt;
465  PROC SQL;&lt;BR /&gt;
466    CONNECT TO ODBC(prompt);&lt;BR /&gt;
ERROR: The ODBC engine cannot be found.&lt;BR /&gt;
ERROR: A Connection to the ODBC DBMS is not currently supported, or is not installed at your&lt;BR /&gt;
       site.&lt;BR /&gt;
467    CREATE TABLE ext.Test AS&lt;BR /&gt;
468    SELECT * FROM CONNECTION TO ODBC&lt;BR /&gt;
469   (&lt;BR /&gt;
470   select DateTime from dbo.Date);&lt;BR /&gt;
ERROR: The ODBC engine cannot be found.&lt;BR /&gt;
ERROR: A Connection to the ODBC DBMS is not currently supported, or is not installed at your&lt;BR /&gt;
       site.&lt;BR /&gt;
471  %PUT &amp;amp;SQLXMSG;&lt;BR /&gt;
ERROR: A Connection to the ODBC DBMS is not currently supported, or is not installed at your&lt;BR /&gt;
site.&lt;BR /&gt;
472  %PUT &amp;amp;SQLXRC;&lt;BR /&gt;
-1&lt;BR /&gt;
473  DISCONNECT FROM odbc;&lt;BR /&gt;
ERROR: Connection to the odbc DBMS does not exist.&lt;BR /&gt;
474  quit;&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
When I run PROC SETINIT;run; it shows that I do have an ODBC engine... what is the hold up here?</description>
    <pubDate>Tue, 03 Feb 2009 19:19:26 GMT</pubDate>
    <dc:creator>GoldFish</dc:creator>
    <dc:date>2009-02-03T19:19:26Z</dc:date>
    <item>
      <title>SAS + ODBC not working in version 9</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-ODBC-not-working-in-version-9/m-p/72318#M15595</link>
      <description>In version 8 I used to run this code no problem:&lt;BR /&gt;
libname ext 'C:\';&lt;BR /&gt;
PROC SQL;&lt;BR /&gt;
  CONNECT TO ODBC(prompt);&lt;BR /&gt;
  CREATE TABLE ext.Test AS&lt;BR /&gt;
  SELECT * FROM CONNECTION TO ODBC&lt;BR /&gt;
 (&lt;BR /&gt;
 select DateTime from dbo.Date);&lt;BR /&gt;
%PUT &amp;amp;SQLXMSG;&lt;BR /&gt;
%PUT &amp;amp;SQLXRC;&lt;BR /&gt;
DISCONNECT FROM odbc;&lt;BR /&gt;
quit;&lt;BR /&gt;
&lt;BR /&gt;
Pretty simple connection to ODBC.  But after upgrading to version 9 it gives me the following error:&lt;BR /&gt;
464  libname ext 'C:\';&lt;BR /&gt;
NOTE: Libref EXT was successfully assigned as follows:&lt;BR /&gt;
      Engine:        V9&lt;BR /&gt;
      Physical Name: C:\&lt;BR /&gt;
465  PROC SQL;&lt;BR /&gt;
466    CONNECT TO ODBC(prompt);&lt;BR /&gt;
ERROR: The ODBC engine cannot be found.&lt;BR /&gt;
ERROR: A Connection to the ODBC DBMS is not currently supported, or is not installed at your&lt;BR /&gt;
       site.&lt;BR /&gt;
467    CREATE TABLE ext.Test AS&lt;BR /&gt;
468    SELECT * FROM CONNECTION TO ODBC&lt;BR /&gt;
469   (&lt;BR /&gt;
470   select DateTime from dbo.Date);&lt;BR /&gt;
ERROR: The ODBC engine cannot be found.&lt;BR /&gt;
ERROR: A Connection to the ODBC DBMS is not currently supported, or is not installed at your&lt;BR /&gt;
       site.&lt;BR /&gt;
471  %PUT &amp;amp;SQLXMSG;&lt;BR /&gt;
ERROR: A Connection to the ODBC DBMS is not currently supported, or is not installed at your&lt;BR /&gt;
site.&lt;BR /&gt;
472  %PUT &amp;amp;SQLXRC;&lt;BR /&gt;
-1&lt;BR /&gt;
473  DISCONNECT FROM odbc;&lt;BR /&gt;
ERROR: Connection to the odbc DBMS does not exist.&lt;BR /&gt;
474  quit;&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
When I run PROC SETINIT;run; it shows that I do have an ODBC engine... what is the hold up here?</description>
      <pubDate>Tue, 03 Feb 2009 19:19:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-ODBC-not-working-in-version-9/m-p/72318#M15595</guid>
      <dc:creator>GoldFish</dc:creator>
      <dc:date>2009-02-03T19:19:26Z</dc:date>
    </item>
    <item>
      <title>Re: SAS + ODBC not working in version 9</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-ODBC-not-working-in-version-9/m-p/72319#M15596</link>
      <description>Are you sure that SAS/ACCESS was properly installed in SAS9?&lt;BR /&gt;
I think this issue is best solved by SAS tech support.&lt;BR /&gt;
&lt;BR /&gt;
Regards,&lt;BR /&gt;
Linus</description>
      <pubDate>Wed, 04 Feb 2009 11:24:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-ODBC-not-working-in-version-9/m-p/72319#M15596</guid>
      <dc:creator>LinusH</dc:creator>
      <dc:date>2009-02-04T11:24:25Z</dc:date>
    </item>
    <item>
      <title>Re: SAS + ODBC not working in version 9</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-ODBC-not-working-in-version-9/m-p/72320#M15597</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Late post i just realized. But that's totally a SAS/ACCESS to ODBC issue. You need a driver manager and the proper driver to the database you intend to contact.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As an additional, yet important note: Depending on if this is a server installation or not, you will also need to deal with what sort of user/pass credentials your db uses.&amp;nbsp; For security purposes, many companies are going, or have gone to using ldap to authorize users. For example, if you are in an environment that requires you use a user/pass from an active directory (ie single sign on / SSO) that will need to be considered when configuring ODBC connection parameters to those data sources. This as we've found can be a big deal and all efforts should be made in checking through these requirements first as any single source of information on how to set this up is not to be found. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Oct 2013 16:24:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-ODBC-not-working-in-version-9/m-p/72320#M15597</guid>
      <dc:creator>pmiddlet72</dc:creator>
      <dc:date>2013-10-17T16:24:16Z</dc:date>
    </item>
    <item>
      <title>Re: SAS + ODBC not working in version 9</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-ODBC-not-working-in-version-9/m-p/72321#M15598</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It would be helpful to know what operating system you are using with SAS and what database you are trying to connect to. If you are using Windows then you can configure/test ODBC connections in the ODBC Administrator tool of Windows Control Panel. It will also list what ODBC drivers you have installed.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Oct 2013 18:54:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-ODBC-not-working-in-version-9/m-p/72321#M15598</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2013-10-17T18:54:36Z</dc:date>
    </item>
    <item>
      <title>Re: SAS + ODBC not working in version 9</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-ODBC-not-working-in-version-9/m-p/72322#M15599</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Still, the error implies that there something missing in the installation, not any ODBC manager configuration issue,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Oct 2013 18:58:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-ODBC-not-working-in-version-9/m-p/72322#M15599</guid>
      <dc:creator>LinusH</dc:creator>
      <dc:date>2013-10-17T18:58:10Z</dc:date>
    </item>
  </channel>
</rss>

