I want to know for using pass through facility of SQL in SAS is there need to install some service. This question arised because of the following ERROR in the log
ERROR: The SQLSERVE engine cannot be found.
ERROR: A Connection to the sqlserver DBMS is not currently supported, or is not installed at your site.
In general you need the appropriate SAS/ACCESS product installed and licensed to be able to connect to an external database regardless of the method, LIBNAME, PASSTHRU, SQL etc.
You can confirm what SAS products are licensed by running PROC SETINIT.
What database are you trying to connect to? Your errors suggest SQL Server. In which case you will need SAS/ACCESS to SQL Server, or SAS/ACCESS to ODBC. Your choice may depend on what operating system your SAS server runs on.
Thanks for the reply
When i submit proc setinit i got the following:-
---SAS/ACCESS Interface to PC Files | |
---SAS/ACCESS Interface to ODBC | |
---SAS/ACCESS Interface to MySQL So i have question whether i am able to use PROC SQL pass through or not |
With those products, you can use Pass-thru. With ODBC, you will need the appropriate drivers for your target database installed. On Windows, you can technically do it yourself, but you may need your IT support to provide the proper parameterization.
As Doc says you have the right products. Please post the code that gave you the errors you put in your first post. Also which database are you trying to connect to?
My guess is you are trying to use the SQL Server engine when you should be using ODBC: libname test ODBC dsn=xxxx etc.
Thanks for the reply
I am connecting ot SQL server using pass through facility
Can you provide me the code for this so that it will be error free
Thanks in advance
I submitted the following code
Proc sql;
Connect to odbc(datasrc=tribal user=** password=****);
Create table work.account as
Select * from connection to odbc
(Select *
From tribal.uu);
Disconnect from odbc;
Quit;
ERROR: CLI error trying to establish connection: [Microsoft][ODBC Driver Manager] The specified DSN contains an
architecture mismatch between the Driver and Application
ERROR: CLI error trying to establish connection: [Microsoft][ODBC Driver Manager] Data source name not found and no
default driver specified
ERROR: Connection to the odbc DBMS does not exist
You are encountering a bitness problem. Most probably the ODBC driver is still 32bit, while you are accessing it with 64 bit SW from SAS on a 64bit system.
eg
Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
Register now!
Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.