Can't Figure Out How To Delete Scheduled Task

saivan

ADSM.ORG Member
Joined
Aug 22, 2019
Messages
23
Reaction score
1
Points
0
Greetings,
I've got a scheduled task in my server that checks in tapes that might be in the I/O slots daily. I would like to delete this scheduled task, but I am unable to find it using either q sched or q script. I myself set this task up years ago, but I'm stumped as to how to get rid of it.

Can anyone point me in the right direction?

Thank you.
 
I've got a scheduled task in my server that checks in tapes that might be in the I/O slots daily.

It is an admin schedule not a client schedule, that is why we can not find it via just q sched

To get a list of admin schedule.

query schedule * type=administrative

or

query schedule * t=a

Once we ID the admin schedule.

To delete the schedule:

delete schedule schedule_name t=a

If we want to keep the schedule but do not want it to run.

update schedule schedule_name t=a expire=02/22/2024

Good Luck,
Sias
 
It could be scheduled also from within OS's crontab, check that too
 
Back
Top