BookmarkSubscribeRSS Feed
sasbeginner_us
Calcite | Level 5

Hi,

I am calling a sas program from ksh script (inside a while do loop) and have the below code to capture the sas return code but it is not working. The sas code failed in a proc sql statement but returned 0 to ksh. Please let me know what is wrong here..

 

ksh:

------

sas  ${sas_path}/test.sas \
           -sysparm "$name $date " \
           -log    $log_path/test.log.${name}.${rundatetime} \
        -print  $log_path/test.lst.${name}.${rundatetime}
         wait
        rc_sas=$?

            if [[ $rc_sas -ge 3 ]]
        then
          echo $rc_sas
         print "see file" 

 

sas log:

----------

ERROR: Teradata prepare: An owner referenced by user does not have SELECT WITH GRANT OPTION access

 

ksh log:

----------

+ wait
+ rc_sas=0
+ [[ 0 -ge 3 ]]

1 REPLY 1
LinusH
Tourmaline | Level 20
It seems that your Teradata error does not affect the SAS error status. Seeing the calling SAS step would help. If you are using SQL check the SQLXRC macro variable.
Data never sleeps

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

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
  • 1 reply
  • 854 views
  • 0 likes
  • 2 in conversation