Oracle 视图 DBA_LMT_USED_EXTENTS 官方解释,作用,如何使用详细说明
本站中文解释
Oracle视图DBA_LMT_USED_EXTENTS用于显示与ASM磁盘组具有相同LMT二次分配属性的各个数据文件中所使用的扩展页。 这些页以512字节组的形式进行记录,我们可以使用这个视图快速查看当前数据文件中使用的LMT扩展,以此来确定数据文件是否接近容限。
为查看当前数据文件中使用的LMT扩展页,我们可以在Oracle中使用DBA_LMT_USED_EXTENTS视图:
SELECT * FROM dba_lmt_used_extents;
其中,TS_NAME是表空间名,FILE_ID 是文件ID,EXTENT_ID 是扩展ID,EXTENT_NUMBER 是扩展数,EXTENT_SIZE是扩展的大小(以扇区为单位)。
官方英文解释
DBA_LMT_USED_EXTENTS
describes the extents comprising the segments in all locally 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 |