CREATE_RESTORE_POINT
This procedure is used to define a named restore point on the Recovery Appliance that can then be used later to create an archival backup.
Syntax
PROCEDURE CREATE_ARCHIVAL_BACKUP(
db_unique_name IN VARCHAR2,
restore_point IN VARCHAR2,
restore_until_scn IN NUMBER DEFAULT NULL,
restore_until_time IN TIMESTAMP WITH TIME ZONE DEFAULT NULL,
comments IN VARCHAR2 DEFAULT NULL);
Parameters
Table 12 CREATE_ARCHIVAL_BACKUP Parameters
| Parameter | Description |
|---|---|
db_unique_name |
The DB_UNIQUE_NAME of the protected database. |
restore_point |
User specified name for the restore point name. |
restore_until_scn |
User specified recovery SCN for which a restore point is created. |
restore_until_time |
User specified recovery time for which a restore point is created. |
comments |
Optional user supplied comment describing reason for executing this command. |