BookmarkSubscribeRSS Feed
☑ This topic is solved. Need further help from the community? Please sign in and ask a new question.
learn_SAS_23
Quartz | Level 8


Hello Team ,

am a new user and trying to execute below sample DB2 program from SAS

 

 proc sql;
   connect to DB2
         ( 
             READ_ISOLATION_LEVEL=UR DATAsrc=Test AUTHDOMAIN="Test schema" 
         ); 
 %let  out_sql_code =0;
%let  out_sql_state =0;
  create table sasresults as select * from connection to db2
   (call "temp".Test_DB2program_test (0,:out_sql_code,:out_sql_state));
   disconnect from db2 ;
quit;

even if , am passing correct parameters while calling DB2 procedure , am still  getting below error

error: cli execute error: [ibm][cli driver] cli0100e wrong number of parameters. sqlstate=07001

 

Can some one help how to fix this,

 

 

1 ACCEPTED SOLUTION

Accepted Solutions
Tom
Super User Tom
Super User

If you are running using FROM CONNECTION TO ... ( ) then the stuff in () has to return a TABLE.

If it doesn't then use EXECUTE BY ... () instead to run the stuff in ().

View solution in original post

2 REPLIES 2
Tom
Super User Tom
Super User

If you are running using FROM CONNECTION TO ... ( ) then the stuff in () has to return a TABLE.

If it doesn't then use EXECUTE BY ... () instead to run the stuff in ().

learn_SAS_23
Quartz | Level 8

Thanks TOM ,

works with execute By .

 

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