Date: Thu, 15 Apr 2010 09:02:54 -0700
Reply-To: Jack Hamilton <jfh@ACM.ORG>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Jack Hamilton <jfh@ACM.ORG>
Subject: Re: Remote submit without local SAS-installation
In-Reply-To: <201004151519.o3FAl0bH001184@malibu.cc.uga.edu>
Content-Type: text/plain; charset=us-ascii
As Joe said, remote login using telnet or rlogin.
Also:
- SAS Enterprise Guide can do it with the correct products licensed on the server.
- SAS/Intrnet.
- SAS Integration Technology server.
- On z/OS, you can FTP a batch job to JES2.
But basically, you need to have either a remote login session, or one of the server products.
--
Jack Hamilton
Caelum non animum mutant qui trans mare currunt.
On Apr 15, 2010, at 8:19 , Jesper Sahner Pedersen wrote:
> Hi,
>
> From a local SAS-installation you can sign on to a remote server and
> remote-submit your code:
>
> %let server=...;
> signon server user=_prompt_ password=_prompt_;
> rsubmit;
> *SAS-code;
> endrsubmit;
> signoff;
>
> In this example the local SAS-installation is only used for remotely
> submitting, nothing more. I wonder if the same SAS-code can be submitted to
> the remote server without a local SAS-installation (e.g. put in an .exe-file
> that is somehow sent to the remote server)?
>
> Regards,
> Jesper