can I use DOS command to create scheduling of a specified report?
Hi plkkw,
Not sure what kind of scheduling you want in Web Report Studio which uses a DOS command, however, this is what I've used in the past:
net use s: \\sydfs01\SASdata
net use h: \\sydfs02\shareddata
net use m: \\Sydfs01\SASdata\Sasuserdata\SAS_Output#allows us to run SAS without having to reference directory
path = "C:\Program Files\SAS\SASFoundation\9.2"#sas flags used for running jobs in batch
set sas_options = -nosplash -noxwait -noxsync -noterminal -icon#location of work folders for SAS
set work_path = -work "s:\sasusertemp\"#sas job shortener
set sj = %%work_path%% %%sas_options%% -sysin
#list of jobs to run
###sas %sj% "H:\Technical\Data\Agencies\Sirius\SAS prog\1. Downloading Sirius Tables.sas"
sas %sj% "H:\Technical\Data\Agencies\Sirius\SAS prog\2. Creating Base Tables.sas"
^^
It was used in conjunction with Windows Scheduler though.
Hi John T,
let me test it later.
many thanks
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.