Hello guys!
Could someone tell me what is the difference between batch job and interactive job?
and what kind of job is this:
If In one SAS program,there were many data steps and proc sql... some of them use rsubmit to run SAS procedures in a remote server(Unix) ,,,and also in the same SAS program some of them are procedures run in my local machine(Windows).
Here is my example(the code will be executed in SAS Base 9 on my Windows XP laptop,and the romote server is UNIX):
Program name: OneExample
/* program start */
data one;
set sashelp.class;
run;
Rsubmit;
data two;
......
run;
proc sql ;
create table as
.....
;
quit;
data three;
...
run;
Endrsubmit;
data four;
set one;
run;
/* end of program */
Thanks!
Mike