Renaming the TSM Schedule in 5.5

tmlsuresh

ADSM.ORG Member
Joined
Jun 23, 2010
Messages
22
Reaction score
0
Points
0
Location
Chennai, India
Hi All,

I have defined a daily backup schedule with the name node_weeklybackup""

Is it possible to rename the schedule to "node_dailybackup"
 
Cannot rename a schedule. You can only copy, update, delete, query the schedule.
 
Hi,
I nice trick is to write

q sched domain schedule f=m

Alter output in a text editor, and paste it back.
 
Last edited:
You can also use a script like the following:


COPY SCHEDULE $1 $2 $1 $3 REPLACE=NO
DELETE SCHEDULE $1 $2
DEFINE ASSOCIATION $1 $3 $4
Q EVENT $1* $3 begind=+1


where $1 = policy domain, $2 = old schedule name, $3 = new schedule name, $4 = node name.
 
Last edited:
Back
Top