Software Knowledge

  1. Home
  2. Docs
  3. Software Knowledge
  4. Backup
  5. TSM: TDP for Oracle example command
Generic selectors
Exact matches only
Search in title
Search in content
Post Type Selectors

TSM: TDP for Oracle example command

ตัวอย่าง

ในกรณีเจอว่า มี block corrupt และ เรายอมรับที่จะ Backup โดยไม่สนใจ Block นั้น

run

{

allocate channel t1 type ‘sbt_tape’ parms ‘ENV=(TDPO_OPTFILE=/opt/tivoli/tsm/client/oracle/bin64/tdpo.opt)’;

allocate channel t2 type ‘sbt_tape’ parms ‘ENV=(TDPO_OPTFILE=/opt/tivoli/tsm/client/oracle/bin64/tdpo.opt)’;

SET MAXCORRUPT FOR DATAFILE 5 to 2;

sql “alter system archive log current”;

BACKUP INCREMENTAL LEVEL 0 filesperset 10 format ‘%d_KPIDB_INC_0__%t_%s_%p’ tag ‘ORADB_’ (database);

BACKUP CURRENT CONTROLFILE;

DELETE noprompt OBSOLETE;

release channel t1;

release channel t2;

}