🔒 This topic is solved and locked.
Need further help from the community? Please
sign in and ask a new question.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Posted 08-06-2021 09:25 PM
(2453 views)
Dear Experts,
I have a Base SAS program (PGMA.sas) running in Windows (Current version: 9.04.01M6P110718; Operating System: WX64_WKS.) .
How can I schedule Base SAS to run PGMA to run daily at 8PM? What options are available in Base SAS?
Thanks in advance
Qui
1 ACCEPTED SOLUTION
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Use the task scheduler function of Windows.
Be sure to specify the correct path in Program/Script box.
C:\Program FIles\SASHome\SASFoundation\...\sas.exe -sysin "...\pgma.sas"
-sysin is a parameter for batch execution of a specific program.
4 REPLIES 4
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Use the task scheduler function of Windows.
Be sure to specify the correct path in Program/Script box.
C:\Program FIles\SASHome\SASFoundation\...\sas.exe -sysin "...\pgma.sas"
-sysin is a parameter for batch execution of a specific program.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Thanks kawakami, I add a scheduling record. I left out -sysin as I do not know what should be in it. Qui
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
If you're running a single licensed installation then SAS doesn't offer any capabilities AFAIK.
That comes with server licenses and tools.
You can use Windows Scheduler or another scheduling tool but they require your computer to be on and running.
That comes with server licenses and tools.
You can use Windows Scheduler or another scheduling tool but they require your computer to be on and running.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Thanks Reeza for the advice. Qui