Purpose
This statement is used to drop a restore point.
Notice
- DROP RESTORE POINT is not supported in V4.x.
- System tenants do not support creating and dropping restore points.
Syntax
DROP RESTORE POINT restore_point
Parameters
| Parameter | Description |
|---|---|
| restore_point | The name of the restore point. |
Examples
View existing restore points of the tenant.
obclient> SELECT * FROM V$RESTORE_POINT;Expected return result:
+-----------+------------------+----------------------------+------+ | TENANT_ID | SNAPSHOT | TIME | NAME | +-----------+------------------+----------------------------+------+ | 1001 | 1630407064663511 | 2021-08-31 18:51:04.665692 | rp1 | +-----------+------------------+----------------------------+------+ 1 row in setDrop the restore point
rp1.obclient> DROP RESTORE POINT rp1;References
