Hi,
if SAS/Connect is available, you can subit anything you want.
rsubmit;
data _null_;
command= "command you want to execute";
call system(command);
run;
endrsubmit;
The "command" is running in the context of the remote user, used to sign on to the remote server.
Best Regards,
Daniel Schulte
_____________________________
Daniel Schulte
viadee Unternehmensberatung GmbH
Anton-Bruchausen-Str. 8
D-48147 Muenster
Tel. +49 251 77777-142
Fax +49 251 77777-99142
Mail ***@viadee.de
________________________________
Von: SAS(r) Discussion im Auftrag von Anthony Smith
Gesendet: Di 10.10.2006 16:44
An: SAS-***@LISTSERV.UGA.EDU
Betreff: Starting a script from SAS on the mainframe.
Is this possible? I am using mainframe SAS and wanted to know if there
was a way where I could call a script on a Unix or Linux server. Maybe
connect via SSH and issue a command?