BookmarkSubscribeRSS Feed
imdickson
Quartz | Level 8

Hi All. I have a PROC SQL script that is written with a loop in WHERE statement.

 

%let id='2019-JAN-E6-S'; (Can have more than 1 ID in actual DB)
proc sql;
select distinct INCIDENT_RK into:incidentrk1-:incidentrk&SysMaxLong from ecmdb.INCIDENT_LIVE where INCIDENT_ID = &id;

select count (distinct incident_rk) into:cnt from ecmdb.INCIDENT_LIVE where INCIDENT_ID = &id;
quit;



delete from ecmdb.INCIDENT_UDF_CHAR_VALUE where INCIDENT_RK in (&incidentrk1

%do i=2 %to &cnt;

,&&incidentrk&i

%end;

)

 

 

Due to performance issue, I would like to convert my above script into pass-thru but it wont work. What is wrong with my code?

 

proc sql noprint;
connect to ODBC(datasrc=DEVECM user=ecm password=1 insertbuff = 10000);
EXECUTE (
delete from ecm.incident_udf_num_value where incident_rk IN

(&incidentrk1

%do i=2 %to &cnt;

,&&incidentrk&i

%end;

)


) BY ODBC ;
;
disconnect from ODBC;
quit;

 

 

I understand that pass-thru statememt have to follow Microsoft SQL standard but I am not familiar with QUOTE etc statement that will make my loop works. Can anyone further assist me?

6 REPLIES 6
PaigeMiller
Diamond | Level 26

First, you need to get your SQL passthru to work properly for one or two variables WITHOUT macros and WITHOUT macro variables. Once you have that, you should be able to turn it into something that works using macro language. If you don't have working code without macros and without macro variables, then you will never get it to work with macros.

 

So please show us working SAS code without macros and without macro variables.

--
Paige Miller
imdickson
Quartz | Level 8

Thanks buddy. I will show later as i just got off from my work. Thank you so much.

Tom
Super User Tom
Super User

Why do you have the %DO loop?

Are there too many values to put into a single macro variable?

let id='2019-JAN-E6-S'; 
proc sql;
select distinct INCIDENT_RK
 into :incidentrk_list separated by ',' 
from ecmdb.INCIDENT_LIVE 
where INCIDENT_ID in (&id)
;
%if &sqlobs %then %do;
delete from ecmdb.INCIDENT_UDF_CHAR_VALUE 
  where INCIDENT_RK in (&incidentrk_list)
;
%end;
quit;
imdickson
Quartz | Level 8

Ok thanks for suggesting separated by comma option. I believe by using this, I do not have to loop at all. I am currently out of office but will that work with Pass-thru statement without any %DO loop?

Tom
Super User Tom
Super User

As long as the syntax is valid in the remote database.

Note that the macro variable needs to be built in the SAS (local) environment.  

 

It might be better to push the whole logic into the remote database, perhaps by making a temporary table instead of a list of values in one or more SAS macro variables.

 

Patrick
Opal | Level 21

There was a semicolon after the %do statement. Below code should create valid SQL syntax.

options mprint;
%let cnt=3;
%let incidentrk1=1;
%let incidentrk2=2;
%let incidentrk3=3;

%macro test();
  proc sql noprint noexec;
    connect to ODBC(datasrc=DEVECM user=ecm password=1 insertbuff = 10000);
    EXECUTE (
      delete from ecm.incident_udf_num_value where incident_rk IN
        (&incidentrk1
      %do i=2 %to &cnt;
          ,&&incidentrk&i
      %end;
    ) ) BY ODBC;
    ;
    disconnect from ODBC;
  quit;
%mend;

Having said that: I believe there is nothing in your SQL that SAS couldn't push to the database if formulated as SAS SQL. Eventually consider code as below (which of course you can also write as explicit pass-through SQL).

proc sql;
  delete from ecmdb.incident_udf_num_value 
  where incident_rk in 
    (select distinct INCIDENT_RK from ecmdb.INCIDENT_LIVE where INCIDENT_ID = &id)
  ;
quit;

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

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
  • 6 replies
  • 1012 views
  • 1 like
  • 4 in conversation