Note_Tech

All technological notes.


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

Backup - Multisection for Very Large Files

Back


Multisection Large File Backup

backup_multisection





Views

View Description
V$BACKUP_SET displays information about backup sets from the control file.
V$BACKUP_DATAFILE displays information about control files and data files in backup sets from the control file.
RC_BACKUP_SET lists information about backup sets for all incarnations of the database.
RC_BACKUP_DATAFILE lists information about data files in backup sets.
SELECT MULTI_SECTION FROM V$BACKUP_SET;

SELECT SECTION_SIZE FROM V$BACKUP_DATAFILE;

Command

-- Backup datafile with a specific secion size
BACKUP <options> SECTION SIZE <integer> [K | M | G]
-- Validate datafile with a specific secion size
VALIDATE DATAFILE <options> SECTION SIZE <integer> [K | M | G]

-- e.g.,
BACKUP DATAFILE 5 SECTION SIZE = 25M TAG 'section25mb';

TOP