OCP-1Z0-052-V8.02-180题

180. User SCOTT wants to perform a bulk insert operation in the EMP_DEP table. SCOTT receives the

following error after the INSERT statement is issued and few rows are inserted:

INSERT INTO EMP_DEP (emp_id,name,salary,dep_name,mgr_id)

*

ERROR at line 1:

ORA-01653: unable to extend table SCOTT.EMP_DEP by 128 in tablespace USERS

Identify two actions either of which will help you resolve this problem. (Choose two.)

A.Grant the RESOURCE role to SCOTT.

B.Add data files to the USERS tablespace.

C.Grant the CREATE ANY TABLE privilege to SCOTT.

D.Increase the space for SCOTT on the USERS tablespace.

E.Increase the size of the data file associated with the USERS tablespace.

Answer: BE

答案解析:

题意是想插入数据到scott.emp_dep表中,但是却没有足够的空间。

此时增大表空间的方法有:

1、增加一个数据文件。

2、增大表空间中其中一个数据文件resize

3、自动扩展表空间

原文地址:https://www.cnblogs.com/hzcya1995/p/13316981.html