Oracle 视图 ALL_FILE_GROUP_VERSIONS 官方解释,作用,如何使用详细说明
本站中文解释
ALL_FILE_GROUP_VERSIONS视图列出了数据库中已有的文件组的版本。该视图包含以下字段:
FILE#:表示文件的唯一标识符;
VERSION:表示文件的版本;
CREATION_TIME:表示文件创建的时间;
CHECKPOINT_CHANGE#:标识此版本上次被检测点更改所用文件号,可以代表此版本被创建之前所有被更改或传播的文件;
RESETLOGS_CHANGE#:表示此版本上一次重置日志所用的文件号,可以代表此版本被创建之前所有被更改或传播的文件。
这个视图可以帮助DBA查看文件组的版本以及版本之间的关联和改动。
使用该视图可以通过以下命令查看文件组版本:
SELECT * FROM all_file_group_versions ORDER BY VERSION;
官方英文解释
ALL_FILE_GROUP_VERSIONS
shows top-level version information for the file groups accessible to the current user.
Related Views
DBA_FILE_GROUP_VERSIONS
shows top-level version information for all file groups in the database.USER_FILE_GROUP_VERSIONS
shows top-level version information for all file groups owned by the current user. This view does not display theFILE_GROUP_OWNER
column.
Column | Datatype | NULL | Description |
---|---|---|---|
|
|
| Owner of the file group |
|
|
| Name of the file group |
|
|
| User-specified name for the version |
|
|
| Internal version number |
|
|
| User who created the version |
|
|
| Time at which the version was created |
|
| Comments about the file group | |
|
| Default directory object for this version, if specified |
See Also:
“DBA_FILE_GROUP_VERSIONS”
“USER_FILE_GROUP_VERSIONS”
编辑:568数据
标签:文件,版本,视图,代表,标识符