Oracle 视图 DBA_DMT_FREE_SPACE 官方解释,作用,如何使用详细说明
本站中文解释
Oracle的视图DBA_DMT_FREE_SPACE可以显示实例中Data Pump进程中每个Data Pump子进程使用的空闲空间。这个视图可以发挥功能,例如查看运行在一个文件上的Data Pump子进程使用多少空闲空间,以及每个Data Pump子进程使用的最大可用空闲空间是多少。
要使用DBA_DMT_FREE_SPACE视图,需要在Oracle会话中执行以下查询:
SELECT tapename, session#, free_space FROM DBA_DMT_FREE_SPACE;
该查询将显示每个Data Pump子进程在指定的文件上使用的空闲空间,以及该子进程可使用的最大空闲空间。
官方英文解释
DBA_DMT_FREE_SPACE
describes the free extents in all dictionary managed tablespaces in the database.
Column | Datatype | NULL | Description |
---|---|---|---|
|
|
|
Identifier number of the tablespace containing the extent |
|
|
|
File identifier number of the file containing the extent |
|
|
|
Starting block number of the extent |
|
|
|
Size of the extent (in Oracle blocks) |