Note_Tech

All technological notes.


Project maintained by simonangel-fong Hosted on GitHub Pages — Theme by mattgraham

DBA - Backup Sets and Image Copies

Back


Dynamic Views

Dynamic View Description
V$BACKUP_SET Backup sets created
V$BACKUP_ PIECE Backup pieces that exist
V$DATAFILE_COPY Copies of data files on disk
V$BACKUP_ FILES Information about all files created when creating backups
View Description
RC_BACKUP_SET Backup sets created
RC_BACKUP_ PIECE Backup pieces that exist
RC_DATAFILE_COPY Copies of data files on disk
RC_BACKUP_ FILES Information about all files created when creating backups

Backup Sets


Command

BACKUP AS BACKUPSET
FORMAT '/BACKUP/df_%d_%s_%p.bus'
TABLESPACE hr data;

Image Copies


Command

Configuration:

CONFIGURE DEVICE TYPE DISK BACKUP TYPE TO COPY;

Backup

BACKUP AS COPY DATABASE PLUS ARCHIVELOG;
BACKUP AS COPY DATAFILE '/ORADATA/users_01_db0l.dbf';
BACKUP AS COPY ARCHIVELOG LIKE '/arch$';

Backup Set vs Image Copy


Proxy copies


diagram_imagecopy_copyset


TOP