My server is being rebooted shortly.
I'm trying to dump all of the data sets from the server work directory onto my pc so I can upload them again when the servers back online.
The code I'm trying to run is as follows;
RSUBMIT ;
LIBNAME drive 'C:\temp\sessiondump';
PROC COPY IN=SASCATCA OUT=drive ;
SELECT _ALL_ ;
RUN ;
ENDRSUBMIT ;
This code works if I individually list all of the datasets in the SELECT statement.
As the session has a few hundered data sets, I'm wanting to specify the entire contents using a single reference.
My first thought was _ALL_ but this isn't working.
Any ideas?
Any help with this would be appreciated.
Cheers,
Fat Captain.