BookmarkSubscribeRSS Feed
4john
Calcite | Level 5
I am working in a unix sas environment.I do batch submissions.But any ideas regarding time scheduling a batch submission would be great.

os : solaris5
shell : korn shell
sas : v9

Thanks
4 REPLIES 4
deleted_user
Not applicable
you can use cron scheduler
LinusH
Tourmaline | Level 20
If you are at fairly large site, chance is quite high that there exists a 3rd party scheduling tool.
Or, if you by any chance are licensing DI Server, you could maybe use Platform Job Scheduler.
/Linus
Data never sleeps
Hima
Obsidian | Level 7

Crontab can be used to schedule jobs in Unix via Unix SAS. To access crontab login to Unix and type crontab -e (Edit mode). This is a VI Editor. Press Esc Key and I for insert. Press Esc Key and x to delete.

Syntax for crontab is

*    *    *    *    *  command to be executed

┬    ┬    ┬    ┬    ┬

│    │    │    │    │

│    │    │    │    │

│    │    │    │    └───── day of week (0 - 6) (Sunday=0 )

│    │    │    └────────── month (1 - 12)

│    │    └─────────────── day of month (1 - 31)

│    └──────────────────── hour (0 - 23)

└───────────────────────── min (0 - 59)

Example

00 08 * * 0-6 /home/test.ksh > /home.test.log

This would run the report every day at 8 AM. Make sure you invoke the sas from shell script. You would need some scripting knowledge to do this.

LinusH
Tourmaline | Level 20

If you are licensing any part of SAS Intelligence Platform (that, do you have a metadata server), there is a GUI interface to cron in the Scheduling Server plugin in the SAS Management Console.

/Linus

Data never sleeps

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 4 replies
  • 6020 views
  • 0 likes
  • 4 in conversation