BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
Sathish_jammy
Lapis Lazuli | Level 10

Hi, 

I have SAS 9.4 and SQL(2008) application in my PC.My entire database are in SQL application.

I want to use SQL database in SAS. There i found some code for connectivity in internet but those are not effective.

Can any one please suggest the perfect code with an example for me to proceed further.

 

Libname New_lib ODBC NoPrompt="Driver=C:; Server=192.168.1.14; Database=Mvdsc1302; Uid=IT; pwd=***";

ERROR: CLI error trying to establish connection: [Microsoft][ODBC Driver Manager] Data source name not found and no default driver specified ERROR: Error in the LIBNAME statement.


ERROR: CLI error trying to establish connection: [Microsoft][ODBC Driver Manager] Data source name not found and no default
driver specified
ERROR: Error in the LIBNAME statement.

How/what should i insert in Driver filed, Please help me with correct format.

1 ACCEPTED SOLUTION

Accepted Solutions
SASKiwi
PROC Star

Open the Windows ODBC Administrator tool and select the Drivers tab to find out the names of the ODBC drivers you have installed. As I suspect you are using SQL Server the likely driver name is SQL Server.

 

Libname New_lib ODBC NoPrompt="Driver=SQL Server;Server=192.168.1.14;Database=Mvdsc1302;Uid=IT;pwd=***"; 

 

View solution in original post

3 REPLIES 3
AndrewHowell
Moderator

Forgetting SAS as the client application for the time being, let's first ensure the underlying SQL database client can connect to the SQL database server - because without that, any client applications will fail to connect.

 

So:

  • Can you verify your SQL client/server connectivity is working?
  • Perhaps look in your ODBC Administrator settings.
  • If your SQL client can connect, that is the connection string you should be using in your SAS libname statement.
  • If you have an ODBC entry which (successfully) connects to your SQL database, then use the simpler "dsn='MySqlDetails' rather than the lengthy connection string.

 

Good luck!

Sathish_jammy
Lapis Lazuli | Level 10

Thanks for your suggestion. Smiley Happy 

You guys are really awesome!. @AndrewHowell @SASKiwi

& The code works GREAT!...

 

Got all the tables from SQL. 

 

 

SASKiwi
PROC Star

Open the Windows ODBC Administrator tool and select the Drivers tab to find out the names of the ODBC drivers you have installed. As I suspect you are using SQL Server the likely driver name is SQL Server.

 

Libname New_lib ODBC NoPrompt="Driver=SQL Server;Server=192.168.1.14;Database=Mvdsc1302;Uid=IT;pwd=***"; 

 

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 3 replies
  • 9370 views
  • 0 likes
  • 3 in conversation