BookmarkSubscribeRSS Feed
anirudhs
Obsidian | Level 7

how to import the oracle stored procedure using the odbc connection in sas.

where we can pass the parameter's to the stored procedure.

i need the basic code connecton for the procedure

3 REPLIES 3
Kalind_Patel
Lapis Lazuli | Level 10

You can call oracle stored process from SAS,

Here is the link for code:

http://support.sas.com/kb/18/350.html

anirudhs
Obsidian | Level 7

I am searching for the connection using the odbc for oracle process to import 

Kalind_Patel
Lapis Lazuli | Level 10

Okay, than try this code

 

proc sql;
connect to odbc as oracledb
(datasrc="yourDSN" user=xxxx password=xxxx);

create table work.test_dataset as
select *
from connection to oracledb
(
execute schema.oracleStoredProcedure
@Param1 = 'value1',
@Param2 = 'value2',
@Param3 = 333;
);
quit;

Please note that you need  SAS/Access to ODBC or SAS/Access to Oracle license to execute oracle stored process.

sas-innovate-2024.png

Join us for SAS Innovate April 16-19 at the Aria in Las Vegas. Bring the team and save big with our group pricing for a limited time only.

Pre-conference courses and tutorials are filling up fast and are always a sellout. Register today to reserve your seat.

 

Register now!

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
  • 4514 views
  • 2 likes
  • 2 in conversation