Oracle 视图 DBA_TEMP_FILES 官方解释,作用,如何使用详细说明
本站中文解释
Oracle视图DBA_TEMP_FILES显示每个数据库的临时文件的状态和空间使用情况,用户可以使用该视图来查看临时文件的实际分配空间(ALLOCATED_SPACE),已使用空间(USED_SPACE)和剩余空间(FREE_SPACE)。查看大小,位置,状态等信息
可以使用下列语句查看DBA_TEMP_FILES视图:
SELECT * FROM dba_temp_files;
官方英文解释
DBA_TEMP_FILES
describes all temporary files (tempfiles) in the database.
Column | Datatype | NULL | Description |
---|---|---|---|
|
|
Name of the database temp file |
|
|
|
File identifier number of the database temp file |
|
|
|
|
Name of the tablespace to which the file belongs |
|
|
Size of the file (in bytes) |
|
|
|
Size of the file (in Oracle blocks) |
|
|
|
File status:
|
|
|
|
Tablespace-relative file number |
|
|
|
Indicates whether the file is autoextensible ( |
|
|
|
maximum size of the file (in bytes) |
|
|
|
Maximum size of the file (in Oracle blocks) |
|
|
|
Default increment for autoextension (in Oracle blocks) |
|
|
|
Size of the useful portion of the file (in bytes) |
|
|
|
Size of the useful portion of the file (in Oracle blocks) |
|
|
|
Type of tablespace this file belongs to:
|
|
|
|
Instance ID of the instance to which the temp file belongs. This column has a NULL value for temp files that belong to shared tablespaces. |