zl程序教程

您现在的位置是:首页 >  数据库

当前栏目

Oracle 视图 V$RESTORE_POINT 官方解释,作用,如何使用详细说明

Oracle官方 使用 如何 详细 作用 说明 解释
2023-06-13 09:11:19 时间
本站中文解释

Oracle视图V$RESTORE_POINT用于查看当前实例的备份点,以及备份点的关联的数据文件。该视图主要包含以下几个字段:NAME,SCN,TIMESTAMP,DATABASE_INCARNATION#,DROPBOXTARGET,CREATION_TYPE,RESETLOGS_TIME等字段。

使用方法:

1、使用SQL查询备份点:SELECT * FROM V$RESTORE_POINT;

2、创建备份点:CREATE RESTORE POINT ;

3、删除备份点:DROP RESTORE POINT ;

4、手动管理备份点:ALTER RESTORE POINT OPTION1=VAL1 OPTION2=VAL2

官方英文解释

V$RESTORE_POINT displays information about restore points.


Indicates whether flashback log files will be kept to ensure a flashback to this point (YES) or not (NO)


Approximate number of bytes of disk space currently tied up supporting this restore point, and which would no longer be tied up if this restore point is the oldest restore point and it is dropped. This will always be zero for non-guaranteed restore points.


Time that was specified when the restore point was created. If a time was not specified, this value is NULL.


Indicates whether the restore point must be explicitly deleted (YES) or not (NO)


Indicates whether there is a clean PDB restore point for this PDB (YES) or not (NO)


Pluggable database (PDB) incarnation number. This value is meaningful only for PDB restore points.


This column is useful in Oracle Data Guard environments. It indicates the method by which a restore point was created. Possible values:


YES The restore point was automatically replicated from the primary database to this database when this database was a standby database. The string _PRIMARY is appended to the name of such a restore point.


NO The restore point was created by a user and was not replicated from the primary database.


0: This value is used for rows containing data that pertain to the entire CDB. This value is also used for rows in non-CDBs.


我想要获取技术服务或软件
服务范围:MySQL、ORACLE、SQLSERVER、MongoDB、PostgreSQL 、程序问题
服务方式:远程服务、电话支持、现场服务,沟通指定方式服务
技术标签:数据恢复、安装配置、数据迁移、集群容灾、异常处理、其它问题

本站部分文章参考或来源于网络,如有侵权请联系站长。
数据库远程运维 Oracle 视图 V$RESTORE_POINT 官方解释,作用,如何使用详细说明