Oracle 视图 DBA_HIST_DATAFILE 官方解释,作用,如何使用详细说明
本站中文解释
Oracle视图DBA_HIST_DATAFILE显示每个数据文件的历史情况,空间使用情况以及可用空间。可以用来查看数据文件大小,当前使用空间,可用空间,内存数据库中的每个数据库文件等信息。它可以用来检查每个数据文件的历史状况,例如增加的大小,时间等。
使用方法:
要访问DBA_HIST_DATAFILE,你需要以SYSDBA身份登录数据库,然后执行以下查询:
SELECT *
FROM dba_hist_datafile
ORDER BY DBID, file#;
这将显示所有已知的数据文件的信息。可以使用相关列来过滤查询结果,以显示有关特定文件的数据。
官方英文解释
DBA_HIST_DATAFILE
displays a history of the data file information from the control file.
This view contains snapshots of V$DATAFILE
.
Column | Datatype | NULL | Description |
---|---|---|---|
|
|
|
Database ID |
|
|
|
File identification number |
|
|
|
Change number at which the data file was created |
|
|
|
Name of the data file |
|
|
|
Tablespace number |
|
|
Name of the tablespace |
|
|
|
Block size of the data file |
|
|
|
The database ID of the PDB for the sampled session |
|
|
|
The ID of the container that
|
See Also:
“V$DATAFILE”