Expiring data through TDP

nikhil_1707

ADSM.ORG Member
Joined
Jan 10, 2008
Messages
161
Reaction score
0
Points
0
How to expire data by using the tdp option as i see the TSM is not expiring the rman data and it is filling up the space...so from the tdpo end what command i should use to expire the data
 
there is some option to expire data through TDP command?
 
expire oracle for example

hi,

pls refer the following ,you can delete expire backup.

run
{
ALLOCATE CHANNEL FOR MAINTENANCE DEVICE TYPE sbt parms
'ENV=(TDPO_OPTFILE=/usr/tivoli/tsm/client/oracle/bin64/tdpo.opt)';
CROSSCHECK BACKUP OF DATABASE;
delete noprompt expired backup;
delete noprompt obsolete;
resync catalog;
release channel;
}
 
Back
Top