Oracle 视图 V$BACKUP_SPFILE 官方解释,作用,如何使用详细说明
本站中文解释
监控备份进程
Oracle视图是一种特殊的容器,它可以把基于一组参数的结果存放起来并对外公开,它与传统表面上乍一看没有什么区别(或者说几乎没有什么区别),但是它可以把结果视为一个普通的表。
V$BACKUP_SPFILE是oracle的一个数据字典视图,用于监控备份进程。它可以显示有关spfile的当前备份和其他信息,햄包括备份类型、备份标识和时间等等。
要使用此视图,可以执行以下查询:
SELECT * from V$BACKUP_SPFILE;
这将显示一个表,其中包含spfile的备份信息。您可以使用此表来查看哪些文件备份了什么时候,以及任何有关这次备份的其他信息。
官方英文解释
V$BACKUP_SPFILE
displays information about server parameter files in backup sets from the control file.
Column | Datatype | Description |
---|---|---|
|
|
Backup SPFILE record ID |
|
|
Backup SPFILE record stamp |
|
|
Backup set stamp (of the set which contains this SPFILE backup) |
|
|
Backup set count (of the set which contains this SPFILE backup) |
|
|
Time when the SPFILE was last modified (this also includes creation time) |
|
|
Size of the SPFILE (in bytes) |
|
|
Time when the backup of the SPFILE completed |
|
|
Unique database name |
|
|
The ID of the container to which the data pertains. Possible values include:
|
|
|
The GUID of the PDB to which the backup belongs. This is useful after the PDB is dropped to identify which PDB the backup belongs to. |