SAS server processes dataset at a much faster rate than the local desktop. To send the datasets from the WORK library of the desktop to the WORK library of the server, and get the processed datasets from WORK library of the server to the WORK library of the desktop, we need to use PROC UPLOAD and PROC DOWNLOAD.
proc update data =localdata out =serverdata; run;
…code…
proc download data=serverdata out =localdata; run;