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

本站中文解释

Oracle的DBA_FILE_GROUP_TABLES是DBA_TABLES表的子集,提供当前数据库中表及其归属的文件组的信息。

用途:DBA_FILE_GROUP_TABLES视图可用于查看当前数据库中哪些表属于特定的文件组:

使用方法:

1. 首先需要查询要查看的文件组的编号:

SELECT fg.file_group_id, fg.group_name FROM dba_tablespaces fg;

2. 然后使用所查询出的编号从DBA_FILE_GROUP_TABLES视图中查询表的信息:

SELECT t.table_name, t.file_group_id, fg.group_name
FROM dba_file_group_tables t
INNER JOIN dba_tablespaces fg ON t.file_group_id=fg.file_group_id
WHERE t.file_group_id = :file_group_id;

官方英文解释

DBA_FILE_GROUP_TABLES shows information about all the tables in the database that can be imported using the file set. Its columns are the same as those in ALL_FILE_GROUP_TABLES.

See Also:

“ALL_FILE_GROUP_TABLES”


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