单选题You are trying to alter the initial segment size given to a table in a dictionary-managed tablespace. Which of the following keywords would be used as part of this process?()A DROP TABLE B ALTER TABLE C RESIZE D COALESCE

题目
单选题
You are trying to alter the initial segment size given to a table in a dictionary-managed tablespace. Which of the following keywords would be used as part of this process?()
A

DROP TABLE 

B

ALTER TABLE 

C

RESIZE 

D

COALESCE

如果没有搜索结果或未解决您的问题,请直接 联系老师 获取答案。
相似问题和答案

第1题:

下列说法正确的是()

A.alter table user drop column sex;

B.alter table user add sex varchar(20);

C.alter table user drop sex;

D.alter table user modify id int primary key;


正确答案:D,B,A,C 

第2题:

根据SQL标准,删除表student中对字段sno的唯一性约束,应该使用下面哪条语句? ()

A drop sno from table student

B alter table student drop sno

C alter table student drop unique(sno)

D alter table student drop sno unique


参考答案C

第3题:

使用SQL语句将教师表中的照片字段删除,以下正确的是()。

A.Alter table教师Delete照片

B.Alter table教师Drop照片

C.Alter table教师AND Drop照片

D.Alter table教师AND Delete照片


正确答案:B

第4题:

In your test database, you have created the ORDERS table as an index/x7forganized table (IOT). To facilitate faster querying, you have created a mapping table and a bitmap index on the ORDER_FILLED column. You observe that the query performance degrades when users perform a large volume of transactions.  While investigating the reason, you find that the mapping table segment is fragmented, leading to poor performance. Which option would you use to defragment the mapping table without affecting the original table data?()

  • A、export and import the mapping table
  • B、drop and re­create the mapping table
  • C、truncate the mapping table and reinsert the values
  • D、use the ALTER TABLE .. REBUILD command to defragment the mapping table

正确答案:B

第5题:

Which two partitioned table maintenance operations support asynchronous Global Index Maintenance inOracle database 12c?()

A. ALTER TABLE SPLIT PARTITION

B. ALTER TABLE MERGE PARTITION

C. ALTER TABLE TRUNCATE PARTITION

D. ALTER TABLE ADD PARTITION

E. ALTER TABLE DROP PARTITION

F. ALTER TABLE MOVE PARTITION


参考答案:C, E

第6题:

把表中"单价"字段的有效性规则取消,使用SQL语句

A.ALTER TABLE ORDER ALTER 单价 DROP CHECK

B.ALTER TABLE ORDER DELETE 单价 DROP CHECK

C.ALTER TABLE ORDER DELETE CHECK 单价

D.ALTER TABLE ORDER DROP CHECK 单价


正确答案:A
解析:修改表结构的SQL语句如下:
ALTER TABLE 表名 [CHECK| ALTER [COLUMN] 字段名
| DROP [CHECK] 字段名
表示删除有效性规则。

第7题:

把表中“学历”字段的有效性规则取消,正确的SQL语句是( )。

A.ALTER TABLE学生ALTER学历DROP CHECK

B.ALTER TABLE学生DELETE学历DROP CHECK

C.ALTER TABLE学生DELETE CHECK学历

D.ALTER TABLE学生DROP CHECK学历


正确答案:A
修改表结构将字段的有效性规则删除的语句为:ALTERTABLE表名[ALTER[COLUMN]字段名1DROP[CHECK]],所以此题答案为A。

第8题:

以下能够删除一列的是( )

A.alter table emp remove addcolumn

B.alter table emp drop column addcolumn

C.alter table emp delete column addcolumn

D.alter table emp delete addcolumn


正确答案:B 

第9题:

删除PRIMARYKEY约束条件及其所有依赖约束条件的语法是什么()

  • A、ALTER TABLE table_name DROP CONSTRAINT constraint_name CASCADE
  • B、ALTER TABLE table_name DROP CONSTRAINT FOREIGN KEY CASCADE
  • C、DROP CONSTRAINT table_name(constraint_name)
  • D、ALTER TABLE table_name DROP CONSTRAINT constraint_name

正确答案:A

第10题:

Which two partitioned table maintenance operations support asynchronous Global Index Maintenance inOracle database 12c?()

  • A、ALTER TABLE SPLIT PARTITION
  • B、ALTER TABLE MERGE PARTITION
  • C、ALTER TABLE TRUNCATE PARTITION
  • D、ALTER TABLE ADD PARTITION
  • E、ALTER TABLE DROP PARTITION
  • F、ALTER TABLE MOVE PARTITION

正确答案:C,E

更多相关问题