ocp 052 you are creating a locally managed tablespace

来源:互联网 发布:网络切换开关 编辑:程序博客网 时间:2024/06/13 09:30

You are creating a locally managed tablespace to meet the following requirements: 

All the extents should be of the same size. The data should be spread across two data files.

A bitmap should be used to record the free space within the allocated extents.

Which three options would you choose? (Choose three.) 

A) set PCTFREE and PCTUSED to 50

B) specify extent allocation as Uniform

C) specify extent allocation as Automatic

D) create the tablespace as bigfile tablespace

E) create the tablespace as smallfile tablespace

F) set segment space management to Automatic

G) use the RESIZE clause while creating the tablespace

 

Answer: B,E,F

All the extents should be of the same size,需要区统一管理,选B

The data should be spread across two data files,只有smallfile类型的表空间才能有多个数据文件,所以选E。

A bitmap should be used to record the free space within the allocated extents,要用位图管理,那么需要段空间自动管理(ASSM),选F

原创粉丝点击