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

DI Studio question. I want to make sure that if an input table is empty, the job fails (triggers an ERROR) and stops running. How can this be accomplished?

P.S. Should be resolved without user written code.

Thanks for your time. Smiley Happy

1 ACCEPTED SOLUTION

Accepted Solutions
BrunoMueller
SAS Super FREQ

SAS Data Integration Studio can be extended with your own user written transformations, so you would need to code it once and then just use it again and again. The code for such a transformation could look like this:

%macro myCheckData;
 
%global trans_rc;

  data _A_
%sysfunc( compress(&transformID, .));
    set &_input(obs=1);
  run;

 
%put NOTE: &=sysnobs &=syserr;

 
%if &sysnobs = 1 %then %do;
   
%let trans_rc = 0;
    %put NOTE: OKOKOKOKOK;
  %end;
 
%else %do;
   
%let trans_rc = 8;
    %put NOTE: NOTOK NOTOK NOTOK NOTOK;
  %end;

 
%put NOTE: &sysmacroname &=trans_rc;
%mend;

%
myCheckData

You can use then the normal Return Code Check transformation.

View solution in original post

2 REPLIES 2
Patrick
Opal | Level 21

If you want full control then I believe you would have to implement this either as pre-code in the node or as a custom transformation.

You could create a autocall macro for this and then simply call this autocall macro. Some nodes generate a macro "%etls_recordCheck" which could serve as a starting point to write such a macro.

BrunoMueller
SAS Super FREQ

SAS Data Integration Studio can be extended with your own user written transformations, so you would need to code it once and then just use it again and again. The code for such a transformation could look like this:

%macro myCheckData;
 
%global trans_rc;

  data _A_
%sysfunc( compress(&transformID, .));
    set &_input(obs=1);
  run;

 
%put NOTE: &=sysnobs &=syserr;

 
%if &sysnobs = 1 %then %do;
   
%let trans_rc = 0;
    %put NOTE: OKOKOKOKOK;
  %end;
 
%else %do;
   
%let trans_rc = 8;
    %put NOTE: NOTOK NOTOK NOTOK NOTOK;
  %end;

 
%put NOTE: &sysmacroname &=trans_rc;
%mend;

%
myCheckData

You can use then the normal Return Code Check transformation.

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

How to connect to databases in SAS Viya

Need to connect to databases in SAS Viya? SAS’ David Ghan shows you two methods – via SAS/ACCESS LIBNAME and SAS Data Connector SASLIBS – in this video.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 2 replies
  • 1901 views
  • 3 likes
  • 3 in conversation