BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
Babloo
Barite | Level 11

I'm trying to create table via oracle table. When I tried to run the code below, 

 

%include "/usr/sas/tir/sa_connect.txt";
proc sql;
create table mibipads select * from connection to odbc 
(select bipad,title from mas.bipad_master); 
disconnect from odbc; 
quit;

I got error as,

 

ERROR: CLI error trying to establish connection: [unixODBC][Driver Manager]Data source name not found, and no default driver
specified.

 

sa_connect.txt file having the details to connect oracle from SAS and I it don't seem issue with this .txt. Can someone guide where I need to tweak the code to run without any errors.

1 ACCEPTED SOLUTION

Accepted Solutions
Astounding
Opal | Level 21

Your %included file already contains PROC SQL;

 

So get rid of the second PROC SQL statement after the %include.  That begins a separate SAS step that does not have a connection.

View solution in original post

5 REPLIES 5
Babloo
Barite | Level 11

I missed the keyword in my previous post. Code is like,

 

%include "/usr/sas/tir/sa_connect.txt";
proc sql;
create table mibipads as select * from connection to odbc 
(select bipad,title from mas.bipad_master); 
disconnect from odbc; 
quit;
RW9
Diamond | Level 26 RW9
Diamond | Level 26

You are missing the connection part, the syntax is something like:

proc sql;

  connect to odbc (user="ABC",password=...);

  select * from connection to odbc (select * from abc);

  disconnect from odbc;

quit;

 

 

See here for an Oracle version, you will need something similar for your database.

https://support.sas.com/documentation/cdl/en/acreldb/63647/HTML/default/viewer.htm#a003113595.htm

Babloo
Barite | Level 11

My connection part in the .txt file and it has,

 

proc sql; connect to odbc (user=*** password=****_proddb dsn='******');

Note: I put a '*' to hide the confidential information in the public forum.

Astounding
Opal | Level 21

Your %included file already contains PROC SQL;

 

So get rid of the second PROC SQL statement after the %include.  That begins a separate SAS step that does not have a connection.

RW9
Diamond | Level 26 RW9
Diamond | Level 26

Why do you have the connection string in a text file?  If so then you only need to put the connect part, and include at the place the included text should appear:

sa_connect.txt:

connect to odbc (user=*** password=****_proddb dsn='******');

 

proc sql;

  %include "/usr/sas/tir/sa_connect.txt";

  select ...;

  disconnect...;

quit;

SAS INNOVATE 2024

Innovate_SAS_Blue.png

Registration is open! SAS is returning to Vegas for an AI and analytics experience like no other! Whether you're an executive, manager, end user or SAS partner, SAS Innovate is designed for everyone on your team. Register for just $495 by 12/31/2023.

If you are interested in speaking, there is still time to submit a session idea. More details are posted on the website. 

Register now!

What is Bayesian Analysis?

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.

Get the $99 certification deal.jpg

 

 

Back in the Classroom!

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

View all other training opportunities.

Discussion stats
  • 5 replies
  • 1800 views
  • 0 likes
  • 3 in conversation