Oracle 视图 DBA_DMT_USED_EXTENTS 官方解释,作用,如何使用详细说明
本站中文解释
Oracle视图DBA_DMT_USED_EXTENTS可以用来查询在Oracle数据库中使用的扩展页面的各个非新分配磁盘页面的数量及其类型分布,特别是与表空间和数据库文件相关的。
使用Oracle视图DBA_DMT_USED_EXTENTS时,可以使用如下“SELECT”语句:SELECT EXTENTS, BYTES, TYPE FROM DBA_DMT_USED_EXTENTS WHERE TABLESPACE_NAME = ”;
第一列EXTENTS显示的是每个页面的大小,第二列BYTES显示的是每个页面的字节数,第三列TYPE显示的是页面类型。
此外,使用Oracle视图DBA_DMT_USED_EXTENTS也可以查询当前使用的每个磁盘页面的按类型分布,以及除新分配的磁盘页面以外的空间使用情况。
官方英文解释
DBA_DMT_USED_EXTENTS
describes the extents comprising the segments in all dictionary managed tablespaces in the database.
Column | Datatype | NULL | Description |
---|---|---|---|
|
|
| File number of the segment header of the extent |
|
|
| Block number of the segment header of the extent |
|
|
| Identifier number of the tablespace containing the extent |
|
|
| Extent number in the segment |
|
|
| File identifier number of the file containing the extent |
|
|
| Starting block number of the extent |
|
|
| Number of blocks in the extent |
编辑:编程语言
标签:页面,的是,视图,磁盘,类型