<?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: I am not able to connect to SQL server? in Microsoft Integration with SAS</title>
    <link>https://communities.sas.com/t5/Microsoft-Integration-with-SAS/I-am-not-able-to-connect-to-SQL-server/m-p/61574#M852</link>
    <description>Hi Cynthia&lt;BR /&gt;
First of all thanks for your reply.&lt;BR /&gt;
My SAS have the below SAS components. Is the component -SAS/ACCESS Interface to ODBC   is good enough to communicate with OLE DB or should I have install -SAS/ACCESS Interface to OLE DB with my SAS . If I want to install , How do I get it. Is it free or Do I have to pay for it. Again thanks so much for your replay.&lt;BR /&gt;
&lt;BR /&gt;
---STATPLUS                                                                31OCT2010&lt;BR /&gt;
---ENTERPRISE                                                              31OCT2010&lt;BR /&gt;
---SAS/ETS                                                                 31OCT2010&lt;BR /&gt;
---SAS/OR                                                                  31OCT2010&lt;BR /&gt;
---MDDB Server common products                                             31OCT2010&lt;BR /&gt;
---OR OPT                                                                  31OCT2010&lt;BR /&gt;
---OR PRS                                                                  31OCT2010&lt;BR /&gt;
---OR IVS                                                                  31OCT2010&lt;BR /&gt;
---OR LSO                                                                  31OCT2010&lt;BR /&gt;
---SAS/ACCESS Interface to ODBC                                            31OCT2010</description>
    <pubDate>Wed, 24 Feb 2010 21:20:48 GMT</pubDate>
    <dc:creator>Inp</dc:creator>
    <dc:date>2010-02-24T21:20:48Z</dc:date>
    <item>
      <title>I am not able to connect to SQL server?</title>
      <link>https://communities.sas.com/t5/Microsoft-Integration-with-SAS/I-am-not-able-to-connect-to-SQL-server/m-p/61572#M850</link>
      <description>Hi Dear,&lt;BR /&gt;
I am trying to connect to Sql server , the coding and log are below. According to the below log, should I have to installed ODBC driver for SQL server. It seems, I am not able to connect to the server. Password and Userid works when I connect from sql server to sqlserver. For securty reason, I have replace them.If I have to install, can any one please let me know where I can get the odbc driver and how to do it. Thanks so much in advance.&lt;BR /&gt;
&lt;BR /&gt;
1    proc sql noprint;&lt;BR /&gt;
2      connect to oledb as idr&lt;BR /&gt;
3        (init="Provider=SQLOLEDB.1;&lt;BR /&gt;
4               Password=password;&lt;BR /&gt;
5               Persist Security Info=True;&lt;BR /&gt;
6               User ID=userid;&lt;BR /&gt;
7               Initial Catalog=Anguilla;&lt;BR /&gt;
8               Data Source=xxxxxx"&lt;BR /&gt;
9        );&lt;BR /&gt;
ERROR: The OLEDB engine cannot be found.&lt;BR /&gt;
ERROR: A Connection to the oledb DBMS is not currently supported, or is not installed at your site.&lt;BR /&gt;
10&lt;BR /&gt;
11     create table work.sample as&lt;BR /&gt;
12      select&lt;BR /&gt;
13         *&lt;BR /&gt;
14       from connection to idr&lt;BR /&gt;
15       (&lt;BR /&gt;
16         select *&lt;BR /&gt;
17         from mytabel&lt;BR /&gt;
18         where period = '2009-10-31'&lt;BR /&gt;
19       )&lt;BR /&gt;
20      ;&lt;BR /&gt;
ERROR: The IDR engine cannot be found.&lt;BR /&gt;
ERROR: A Connection to the idr DBMS is not currently supported, or is not installed at your site.&lt;BR /&gt;
21     %PUT &amp;amp;SQLXMSG;&lt;BR /&gt;
ERROR: A Connection to the idr DBMS is not currently supported, or is not installed at your site.&lt;BR /&gt;
22&lt;BR /&gt;
23     disconnect from idr;&lt;BR /&gt;
ERROR: Connection to the idr DBMS does not exist.&lt;BR /&gt;
24     quit;&lt;BR /&gt;
NOTE: The SAS System stopped processing this step because of errors.&lt;BR /&gt;
NOTE: PROCEDURE SQL used (Total process time):&lt;BR /&gt;
      real time           0.25 seconds&lt;BR /&gt;
      cpu time            0.01 seconds&lt;BR /&gt;
&lt;BR /&gt;
25   run;</description>
      <pubDate>Tue, 23 Feb 2010 20:42:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Microsoft-Integration-with-SAS/I-am-not-able-to-connect-to-SQL-server/m-p/61572#M850</guid>
      <dc:creator>Inp</dc:creator>
      <dc:date>2010-02-23T20:42:26Z</dc:date>
    </item>
    <item>
      <title>Re: I am not able to connect to SQL server?</title>
      <link>https://communities.sas.com/t5/Microsoft-Integration-with-SAS/I-am-not-able-to-connect-to-SQL-server/m-p/61573#M851</link>
      <description>Hi:&lt;BR /&gt;
  If you have done the required setup, as explained in this paper (on page 1):&lt;BR /&gt;
&lt;A href="http://support.sas.com/techsup/technote/ts700.pdf" target="_blank"&gt;http://support.sas.com/techsup/technote/ts700.pdf&lt;/A&gt;&lt;BR /&gt;
 &lt;BR /&gt;
and if you are using the correct syntax, as shown in Example 3 on page 3, then, if connection is still not working, you might want to open a track with Tech Support for more help.&lt;BR /&gt;
 &lt;BR /&gt;
cynthia</description>
      <pubDate>Wed, 24 Feb 2010 01:27:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Microsoft-Integration-with-SAS/I-am-not-able-to-connect-to-SQL-server/m-p/61573#M851</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2010-02-24T01:27:00Z</dc:date>
    </item>
    <item>
      <title>Re: I am not able to connect to SQL server?</title>
      <link>https://communities.sas.com/t5/Microsoft-Integration-with-SAS/I-am-not-able-to-connect-to-SQL-server/m-p/61574#M852</link>
      <description>Hi Cynthia&lt;BR /&gt;
First of all thanks for your reply.&lt;BR /&gt;
My SAS have the below SAS components. Is the component -SAS/ACCESS Interface to ODBC   is good enough to communicate with OLE DB or should I have install -SAS/ACCESS Interface to OLE DB with my SAS . If I want to install , How do I get it. Is it free or Do I have to pay for it. Again thanks so much for your replay.&lt;BR /&gt;
&lt;BR /&gt;
---STATPLUS                                                                31OCT2010&lt;BR /&gt;
---ENTERPRISE                                                              31OCT2010&lt;BR /&gt;
---SAS/ETS                                                                 31OCT2010&lt;BR /&gt;
---SAS/OR                                                                  31OCT2010&lt;BR /&gt;
---MDDB Server common products                                             31OCT2010&lt;BR /&gt;
---OR OPT                                                                  31OCT2010&lt;BR /&gt;
---OR PRS                                                                  31OCT2010&lt;BR /&gt;
---OR IVS                                                                  31OCT2010&lt;BR /&gt;
---OR LSO                                                                  31OCT2010&lt;BR /&gt;
---SAS/ACCESS Interface to ODBC                                            31OCT2010</description>
      <pubDate>Wed, 24 Feb 2010 21:20:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Microsoft-Integration-with-SAS/I-am-not-able-to-connect-to-SQL-server/m-p/61574#M852</guid>
      <dc:creator>Inp</dc:creator>
      <dc:date>2010-02-24T21:20:48Z</dc:date>
    </item>
    <item>
      <title>Re: I am not able to connect to SQL server?</title>
      <link>https://communities.sas.com/t5/Microsoft-Integration-with-SAS/I-am-not-able-to-connect-to-SQL-server/m-p/61575#M853</link>
      <description>Hi:&lt;BR /&gt;
  As it says on page 1 of the document, you need SAS/ACCESS to OLEDB (not ODBC). Quote directly from page 1:&lt;BR /&gt;
&lt;BR /&gt;
"Before you begin using &lt;B&gt; SAS/ACCESS Interface to OLE DB &lt;/B&gt; there are system requirements that will need to be met prior to its use.&lt;BR /&gt;
They include the following:&lt;BR /&gt;
Products Required:&lt;BR /&gt;
•	 Base SAS software&lt;BR /&gt;
•	&lt;B&gt;SAS/ACCESS Interface to OLE DB&lt;/B&gt;&lt;BR /&gt;
                        &lt;BR /&gt;
DBMS Products Required:&lt;BR /&gt;
•	 An OLE DB provider needs to be installed on the same machine that SAS will be running on. The OLE DB&lt;BR /&gt;
provider is obtained from a third party (other than SAS) vendor.&lt;BR /&gt;
•	Any additional DBMS client software may need to be installed and configured on the same machine as the OLE DB provider. Many OLE DB providers communicate with the DBMS server using the DBMS client. Once the client software is installed and configured to communicate with the server in question, the OLE DB provider should be able to also communicate with the DBMS server.&lt;BR /&gt;
•	Microsoft Data Access Components (MDAC), Version 2.7 or higher&lt;BR /&gt;
Note: The SAS System will automatically install Microsoft Data Access Components (MDAC) when you install SAS/ACCESS Interface to OLE DB software. &lt;BR /&gt;
&lt;BR /&gt;
Once the above software has been installed and any additional client software has been installed and configured, SAS/ACCESS Interface to OLE DB is ready to be used."&lt;BR /&gt;
&lt;BR /&gt;
  In order to get SAS/ACCESS to OLE DB, you should contact your internal SAS software representative or SAS Sales Rep. Pricing depends on the site license that your company has. It's possible that your company already has a SAS/ACCESS to OLE DB license and you have to ask for it to be installed on your system. What you show may only be what's physically installed, not what has actually been licensed.&lt;BR /&gt;
 &lt;BR /&gt;
If your SQL server is ODBC-compliant and you wish to access it via ODBC, then you will need to follow other directions for ODBC access to your database.&lt;BR /&gt;
&lt;A href="http://support.sas.com/documentation/cdl/en/acreldb/63023/HTML/default/a001353892.htm" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/acreldb/63023/HTML/default/a001353892.htm&lt;/A&gt;&lt;BR /&gt;
&lt;A href="http://support.sas.com/documentation/cdl/en/acreldb/63023/HTML/default/a001355231.htm" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/acreldb/63023/HTML/default/a001355231.htm&lt;/A&gt;&lt;BR /&gt;
&lt;BR /&gt;
ODBC and OLE-DB are two different methods of connecting to various data sources and each method has a separate SAS/ACCESS product (just as Oracle and DB2 are two different data bases, each with their own SAS/ACCESS product):&lt;BR /&gt;
Definition of ODBC:&lt;BR /&gt;
 &lt;A href="http://en.wikipedia.org/wiki/Open_Database_Connectivity" target="_blank"&gt;http://en.wikipedia.org/wiki/Open_Database_Connectivity&lt;/A&gt;&lt;BR /&gt;
&lt;BR /&gt;
Definition of OLE-DB:&lt;BR /&gt;
&lt;A href="http://en.wikipedia.org/wiki/OLE-DB" target="_blank"&gt;http://en.wikipedia.org/wiki/OLE-DB&lt;/A&gt;&lt;BR /&gt;
     &lt;BR /&gt;
cynthia</description>
      <pubDate>Wed, 24 Feb 2010 23:04:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Microsoft-Integration-with-SAS/I-am-not-able-to-connect-to-SQL-server/m-p/61575#M853</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2010-02-24T23:04:39Z</dc:date>
    </item>
    <item>
      <title>Re: I am not able to connect to SQL server?</title>
      <link>https://communities.sas.com/t5/Microsoft-Integration-with-SAS/I-am-not-able-to-connect-to-SQL-server/m-p/242241#M1771</link>
      <description>&lt;P&gt;This document is not available. Do you have other&amp;nbsp;information you can share?&lt;/P&gt;</description>
      <pubDate>Thu, 07 Jan 2016 18:22:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Microsoft-Integration-with-SAS/I-am-not-able-to-connect-to-SQL-server/m-p/242241#M1771</guid>
      <dc:creator>ksachar</dc:creator>
      <dc:date>2016-01-07T18:22:33Z</dc:date>
    </item>
    <item>
      <title>Re: I am not able to connect to SQL server?</title>
      <link>https://communities.sas.com/t5/Microsoft-Integration-with-SAS/I-am-not-able-to-connect-to-SQL-server/m-p/247556#M1772</link>
      <description>If you already have the license for ODBC, why can't you use that instead?</description>
      <pubDate>Tue, 02 Feb 2016 18:23:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Microsoft-Integration-with-SAS/I-am-not-able-to-connect-to-SQL-server/m-p/247556#M1772</guid>
      <dc:creator>LinusH</dc:creator>
      <dc:date>2016-02-02T18:23:24Z</dc:date>
    </item>
  </channel>
</rss>

