Event scheduling scripts??

klebesco

ADSM.ORG Member
Joined
Jan 17, 2003
Messages
43
Reaction score
0
Points
0
I've seen examples of how to tell if client backups are in progress..

(select * from sessions where upper(session_type) = 'NODE'

if (rc_ok) exit

action statement)



Anybody know how to tell in a similar fashion when:



storage pool backup is occurring

DBbackup is occurring

migration is occurring



Thanks for your help!
 
Normally, we do not allow TSM to scheduler to run these jobs itself. Instead, we use an external job scheduler to run these jobs. Additionally, I have some process scripts, written in perl, which do check to see if these are running. Mostly, I do this by runing "q proc" and parsing the results to identify the process which is running. That we I can either tell the operator to com back later, and that it's OK to perfrom the operation.



Andy.
 
You're close to saying it yourself...



select * from processes where process='Database Backup'

ans so on...

I don't know the process description for the other processes, but you can figure them out.



Rgds.

Geirr G. H.
 
Back
Top