Hello, I am trying to connect to MS SQL Server data table through SAS and I ran into this issue and not sure what it means. I ran the following code and got issue proc sql; connect to SQLSVR as mydb (datasrc="SQL_SAS" user="XXX" password="XXX"); select * from connection to mydb (select * from DATA_TABLE); quit; run; 23 GOPTIONS ACCESSIBLE; 24 proc sql; 25 connect to SQLSVR as mydb (datasrc="SQL_SAS" user="D113338" password=XXXXXXXXXX); ERROR: CLI error trying to establish connection: [DataDirect][ODBC lib] Data source name not found and no default driver specified NOTE: PROC SQL set option NOEXEC and will continue to check the syntax of statements. 26 select * from connection to mydb 27 (select * from DATA_TABLE); ERROR: The MYDB engine cannot be found. ERROR: A Connection to the mydb DBMS is not currently supported, or is not installed at your site. 28 quit; I already added that SQL_SAS datasource into the ODBC Datasouce Administrator but it still did not work. Thank you so much for any help.
... View more