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

本站中文解释

Oracle 视图 ALL_FILE_GROUP_FILES 是把当前用户下全部数据文件组合内的数据文件信息(全部数据文件组合包括表空间和自定义数据文件组合)汇总查询出来的视图,它的主要用途是提供用户查询某张表空间中,根据文件组合名称查询数据文件的一些基本信息,如文件路径、表空间名称和文件组合状态等信息;它暴露出来的列名包括:OWNER(表空间所有者)、TABLESPACE_NAME(表空间名)、FILE_NAME(数据文件名)、FILE_GROUP_NAME(文件组合名称)、STATUS(文件组合激活状态)和FILE_GROUP_TYPE(是表空间文件组合还是自定义文件组合类型)等。

使用方式:
在 ALL_FILE_GROUP_FILES视图之中,经常可以看到表空间的全部数据文件的信息,比如查询某张表空间下的所有数据文件信息,可以使用:

Select * From dba_file_group_files Where tablespace_name=’YOUR_TABLESPACE_NAME’;

官方英文解释

ALL_FILE_GROUP_FILES shows the file set for each versioned file group accessible to the current user.

Related Views

  • DBA_FILE_GROUP_FILES shows the file set for each versioned group in the database.

  • USER_FILE_GROUP_FILES shows the file set for each versioned group owned by the current user. This view does not display the FILE_GROUP_OWNER column.

Column Datatype NULL Description

FILE_GROUP_OWNER

VARCHAR2(128)

NOT NULL

Owner of the file group

FILE_GROUP_NAME

VARCHAR2(128)

NOT NULL

Name of the file group

VERSION_NAME

VARCHAR2(128)

NOT NULL

Name of the version to which the file belongs

VERSION

NUMBER

NOT NULL

Internal version number of the file group version to which the file belongs

FILE_NAME

VARCHAR2(512)

NOT NULL

Name of the file

FILE_DIRECTORY

VARCHAR2(128)

NOT NULL

Directory object for the directory where the file is stored

FILE_TYPE

VARCHAR2(32)

User-specified file type

FILE_SIZE

NUMBER

Size of the file

FILE_BLOCK_SIZE

NUMBER

Block size for the file

COMMENTS

VARCHAR2(4000)

Comments about the file group

See Also:

  • “DBA_FILE_GROUP_FILES”

  • “USER_FILE_GROUP_FILES”


数据运维技术 » Oracle 视图 ALL_FILE_GROUP_FILES 官方解释,作用,如何使用详细说明