OCP-1Z0-053-V12.02-81题

来源:互联网 发布:数据库备份服务器 编辑:程序博客网 时间:2024/05/15 06:03

81.Evaluate the following command and its output:

SQL>SELECT * FROM dba_temp_free_space;

TABLESPACE_NAME TABLESPACE_SIZE ALLOCATED_SPACE FREE_SPACE

LMTEMP 250609664 101048576 149561088

Which two statements correctly interpret the output? (Choose two.)

A. FREE_SPACE indicates only the space that is currently unallocated.

B. ALLOCATED_SPACE indicates only the space currently allocated and in use.

C. FREE_SPACE indicates only the space that is currently allocated and available for reuse.

D. ALLOCATED_SPACE indicates both the space currently allocated and used, and the space that is

available for reuse.

E. FREE_SPACE indicates both the space that is currently allocated and available for reuse, and the

space that is currently unallocated.

Answer: DE

答案解析:

参考:http://docs.oracle.com/cd/E11882_01/server.112/e40402/statviews_5062.htm#REFRN23627


DBA_TEMP_FREE_SPACE displays temporary space usage information at tablespace level.

ColumnDatatypeNULLDescriptionTABLESPACE_NAMEVARCHAR2(30)NOT NULLName of the tablespaceTABLESPACE_SIZENUMBER Total size of the tablespace, in bytesALLOCATED_SPACENUMBER Total allocated space, in bytes, including space that is currently allocated and used and space that is currently allocated and available for reuseFREE_SPACENUMBER Total free space available, in bytes, including space that is currently allocated and available for reuse and space that is currently unallocated
原创粉丝点击