Date: Tue, 26 Aug 2003 08:08:43 -0700
Reply-To: "Choate, Paul@DDS" <pchoate@DDS.CA.GOV>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: "Choate, Paul@DDS" <pchoate@DDS.CA.GOV>
Subject: Re: can you submit local code inside an rsubmit block?
Content-Type: text/plain
Roland --
Why not use two remote submit blocks with the local code in-between?
rsubmit;
.....remote code....;
run;
endrsubmit;
.....local code....;
run;
rsubmit;
.....remote code....;
run;
endrsubmit;
The remote session stays active while the local program is running (as long
as you stay connected), so your work dataset and its contents will still be
available when you submit the second block. Don't forget to end each remote
submit with a "run;" or the last remote proc/datastep will hang until the
next remote submit.
HTH
Paul Choate
DDS Data Extraction
(916) 654-2160
-----Original Message-----
From: Roland [mailto:roland@RASHLEIGH-BERRY.FSNET.CO.UK]
Sent: Tuesday, August 26, 2003 4:24 AM
To: SAS-L@LISTSERV.UGA.EDU
Subject: can you submit local code inside an rsubmit block?
Can you be running a block of code remotely using rsubmit; endrsubmit; and
within it submit some code that runs on your local machine?