BookmarkSubscribeRSS Feed
jimbarbour
Meteorite | Level 14

I'm running SAS 9.4 TS1M4 on an AIX (7100-03-03-1415) machine which I access via SAS EG 7.15 HF2 (7.100.5.6112) (64-bit).

 

I'm trying to submit some SAS code from within a SAS program using SYSTASK.

 

SYSTASK COMMAND 'sas -sysin /ca_analytics/data_intelligence/Export.sas -SYSPARM 1+5666666+a' NOWAIT STATUS=T1_RC TASKNAME=T1_TASK SHELL;
WAITFOR T1_TASK;

%PUT NOTE: RC = &T1_RC;

 

Uniformly, I get a return code of 126, and the code doesn't execute.  If I cut and paste my code onto a UNIX command line, it works just fine.  I'm surely missing something elementary, but what?

 

Any pointers appreciated.

 

Thanks,

 

Jim

2 REPLIES 2
Tom
Super User Tom
Super User

Check what machine your SAS code is running on.  In our shop commands that work on the machine that users use to launch SAS do not necessarily work on the machine that is actually running the SAS code.

jimbarbour
Meteorite | Level 14

Good suggestion.  We have only one AIX machine with SAS on it available to us, so I don't think that's the issue.

 

I also set and verify the working directory by means of an X command prior to issuing my SYSTASK as follows:

 

X "cd &SAS_Path";

FILENAME pwd PIPE "pwd";

*--------------------------------------------------------------------------------------------------*;

DATA _NULL_;
    LENGTH Working_Directory $32767;
    INFILE pwd
        TRUNCOVER
        ;
    INPUT @1 Working_Directory $32767.;
    PUTLOG "NOTE: The working directory is=" Working_Directory;
    STOP;
RUN;

 

So, I'm pretty sure I'm pointing to the right spot on the right machine.

 

Jim

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!

SAS Enterprise Guide vs. SAS Studio

What’s the difference between SAS Enterprise Guide and SAS Studio? How are they similar? Just ask SAS’ Danny Modlin.

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