Oracle 视图 DBA_LMT_FREE_SPACE 官方解释,作用,如何使用详细说明
本站中文解释
Oracle视图DBA_LMT_FREE_SPACE可以提供有关LMT文件的空闲空间的详细信息。它显示了每个LMT文件的空闲空间,其单位是在字节。您可以根据这些信息来决定是否要创建和扩展Tablespaces以满足 Space Requirements。
使用方法:
首先,从Oracle数据库网站上,可以下载并安装官方发布的Oracle实例。安装完毕之后打开实例,login,使用dba账号登录系统。登录成功后,在Oracle数据库控制台上输入SQL查询命令:
SELECT *
FROM DBA_LMT_FREE_SPACE;
输入完毕后,系统会显示关于LMT文件的空闲空间的详细信息,包括空闲空间的字节数、大小、所在LMT文件的名称等。您也可以根据需要,对查询结果进行筛选,以获取相关信息。
官方英文解释
DBA_LMT_FREE_SPACE
describes the free extents in all locally 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) |