All technological notes.
backup sets and image copies
Oracle data files can be up to 128 TB in size.
Multisection
large files into sections and back up and restore these sections independently.backup sets and image copies.Each file section:
A multisection backup job produces a multipiece backup set.
backup sets and image copiesfull and incremental backupsimage copy creation timeExadataMultisection image copies
image copy creation time for large data files, in particular benefiting Exadata environments.should not apply large values of parallelism to back up a large file that resides on a small number of disks,
| 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. |
the MULTI_SECTION column in RC_BACKUP_SET and V$BACKUP_SET
the SECTION_SIZE column in V$BACKUP_DATAFILE and RC_BACKUP_DATAFILE
whole-file backup.SELECT MULTI_SECTION FROM V$BACKUP_SET;
SELECT SECTION_SIZE FROM V$BACKUP_DATAFILE;
-- 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';