【mos記事から翻訳】datafileバックアップの成長情報の入手方法

1188 ワード

Datafileバックアップの成長情報を取得するにはどうすればいいですか?
由来:HOWTO get information about the growth of the datafile backup(文書ID 352777.1)
適用:Oracle Server-Enterprise Edition-Version:8.1.7.4 to 10.2.0.1-Release:8.1.7 to 10.2 Oracle Server-Enterprise Edition-Version:8.1.7.4 to 11.1.0.7[Release:8.1.7 to 11.1]Information in this document applies to any platform.
ターゲット:バックアップ時間が増加したチェック時、将来のバックアップスペースの要件、Filling grade of a datafile.
ソリューション:RC_BACKUP_DATAFILEまたはV$BACKUP_DATAFILEで検索します.
BLOCKS列はbacked upされたblockの数(すなわちバックアップに参加したblockの数)DATAFILE_BLOCKS列は、datafileの合計ブロック数です.
MAN catalog :
Example for the increase in the last 14 days :

SQL> select file#, min(blocks), max(blocks), max(blocks) - min(blocks)
     from rc_backup_datafile
     where db_name='V920'
     and completion_time > sysdate - 14
     group by file#
     order by max(blocks)- min(blocks);

    
controlfile:
SQL> select file#, min(blocks), max(blocks), max(blocks) - min(blocks)
     from v$backup_datafile
     where completion_time > sysdate - 14
     group by file#
     order by max(blocks)- min(blocks);