Reputation: 33
I am trying to schedule datastage job using datastage director client 11.7.
But facing issue:
Error adding to schedule:sh:/usr/bin/at:permission denied
Upvotes: 0
Views: 529
Reputation: 839
Looks like dsadm
is unable to perform scheduling.
DataStage uses Linux internal scheduling utility such as cron/at
to schedule the jobs, check whether dsadm
has the privilege to do it.
Upvotes: 1
Reputation: 470
Make sure that the datastage engine user is able to schedule cron
and at
jobs. cron
is used to schedule recurring jobs wheras at
is used to schedule "one-shots". In some environments, these services are not activated by default anymore and must be enabled.
Upvotes: 1