Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

OLEDB connection to SQL Server

Status
Not open for further replies.

katrina11

Technical User
Apr 30, 2011
108
Finally I was able to google an ODBC sulution which I looked for and recently posted:

The following is working:

LIBNAME MYLIBREF ODBC
COMPLETE="Driver={SQL Server};server=REPORTP01;Database=DW;" schema=DBO;

However, considering that ODBC/DSN connection was unstable in the past, now I am looking for OLEDB solution.

However OLEDB connection failed and generated the following error log:

50 %let db_link = SQLOLEDB ;
51 %let db_svr = REPORTP01 ;
52 %let db_tbl = DW ;
53 %let db_intsec = SSPI ;
54 %let db_sec = true ;
55
56 /* Link for OLEDB */
57 libname mylibref oledb provider = &db_link
58 properties = (
59 "data source" = "&db_svr"
60 "initial catalog" = "&db_tbl"
61 "Integrated Security" = "&db_intsec"
62 "Persist Security Info" = "&db_sec"
63 )
64 schema=DBO connection=shared readbuff=500
64 ! dbmax_text=200;
ERROR: The OLEDB engine cannot be found.
ERROR: Error in the LIBNAME statement.

What is wrong? What do you think? Any idea appreciated.

Thanks,
Katrin
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top