单选题Which two operations can be flashed back using the Flashback technology? ()A DROP USER SMITH;B DROP TABLE EMPLOYEES;C DROP TABLESPACE USERS;D ALTER TABLE SALES_REP DROP PARTITION P1;E ALTER TABLE EMPLOYEES DROP COLUMN DESIG_ID;

题目
单选题
Which two operations can be flashed back using the Flashback technology? ()
A

DROP USER SMITH;

B

DROP TABLE EMPLOYEES;

C

DROP TABLESPACE USERS;

D

ALTER TABLE SALES_REP DROP PARTITION P1;

E

ALTER TABLE EMPLOYEES DROP COLUMN DESIG_ID;


相似考题
更多“单选题Which two operations can be flashed back using the Flashback technology? ()A DROP USER SMITH;B DROP TABLE EMPLOYEES;C DROP TABLESPACE USERS;D ALTER TABLE SALES_REP DROP PARTITION P1;E ALTER TABLE EMPLOYEES DROP COLUMN DESIG_ID;”相关问题
  • 第1题:

    把表中“学历”字段的有效性规则取消,正确的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。

  • 第2题:

    若要删除职工表中的职称字段,应该使用的命令是( )。

    A.ALTER TABLE 职工 DROP 职称

    B.ALTER 职工 DROP 职称

    C.DROP TABLE 职称

    D.DROP 职称


    正确答案:A
    解析:命令ALTER TABLE表名>DROP字段名>可以删除表中的指定字段,而DROP TABLE表名>是直接从磁盘上删除表名所对应的DBF文件。

  • 第3题:

    下列SQL的数据定义语句组中,哪一组是正确的?

    A.CREATE SCHEMA...,DROP SCHEMA…,ALTER SCHEMA…

    B.CREATE TABLE......,DROP TABLE....,ALTER TABLE....

    C.CREATE VIEW..:,DROP VIEW...,ALTER VIEW…

    D.CREATE INDEX...,DROP INDEX…,ALTER INDEX…


    正确答案:B

  • 第4题:

    假设需要删除Customer表中的LogoutTime列,可以使用如下()方式。

    A.ALTER TABLE CUSTOMER DROP column LOGOUTTIME

    B.UPDATE TABLE DROP column LOGOUTTIME

    C.ALTER TABLE CUSTOMER DROP LOGOUTTIME

    D.UPDATE TABLE DROP LOGOUTTIME


    参考答案:A

  • 第5题:

    要逻辑删除某一列且不要因重写所有表数据块而导致性能降低,您可以执行以下命令()

    • A、Alter table modify column
    • B、Alter table drop column
    • C、Alter table set unused
    • D、Drop column "columname"

    正确答案:B

  • 第6题:

    在基表S中删除电话号码(PHONE)属性使用()命令。

    • A、ALTER S DROP PHONE        
    • B、ALTER TABLE S DROP PHONE
    • C、UPDATE TABLE S PHONE     
    • D、DROP TABLE S PHONE

    正确答案:B

  • 第7题:

    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

  • 第8题:

    Which two operations can be flashed back using the Flashback technology?()

    • A、DROP USER SMITH;
    • B、DROP TABLE EMPLOYEES;
    • C、DROP TABLESPACE USERS;
    • D、ALTER TABLE SALES_REP DROP PARTITION P1;
    • E、ALTER TABLE EMPLOYEES DROP COLUMN DESIG_ID;

    正确答案:A,B

  • 第9题:

    Examine the following commands executed in your database: SQL> ALTER SESSION RECYCLEBIN=ON; Session altered  SQL> CREATE TABLE emp TABLESPACE tbsfd AS SELECT * FROM hr.employees;  Table created.  Further, you executed the following command to drop the table:  SQL> DROP TABLE emp; Table dropped.  What happens in this scenario? ()

    • A、The table is moved to the SYSAUX tablespace.
    • B、The table is moved to the SYSTEM tablespace.
    • C、The table is removed from the database permanently.
    • D、The table is renamed and remains in the TBSFD tablespace.

    正确答案:D

  • 第10题:

    假设需要删除Customer表中的LogoutTime列,可以使用如下()方式。

    • A、ALTER TABLE CUSTOMER DROP column LOGOUTTIME
    • B、UPDATE TABLE DROP column LOGOUTTIME
    • C、ALTER TABLE CUSTOMER DROP LOGOUTTIME
    • D、UPDATE TABLE DROP LOGOUTTIME

    正确答案:A

  • 第11题:

    单选题
    Examine the following commands executed in your database: SQL> ALTER SESSION RECYCLEBIN=ON; Session altered  SQL > CREATE TABLE emp TABLESPACE tbsfd AS SELECT * FROM hr.employees;  Table created.  Further, you executed the following command to drop the table:  SQL> DROP TABLE emp;Table dropped.  What happens in this scenario?()
    A

    The table is moved to the SYSAUX tablespace.

    B

    The table is moved to the SYSTEM tablespace.

    C

    The table is removed from the database permanently.

    D

    The table is renamed and remains in the TBSFD tablespace.


    正确答案: D
    解析: 暂无解析

  • 第12题:

    单选题
    Which two operations can be flashed back using the Flashback technology? ()
    A

    DROP USER SMITH;

    B

    DROP TABLE EMPLOYEES;

    C

    DROP TABLESPACE USERS;

    D

    ALTER TABLE SALES_REP DROP PARTITION P1;

    E

    ALTER TABLE EMPLOYEES DROP COLUMN DESIG_ID;


    正确答案: E
    解析: 暂无解析

  • 第13题:

    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

  • 第14题:

    删除student表中“平均成绩”字段的正确SQL命令是( )。

    A. DELETE TABLE student DELETE COLUMN平均成绩

    B. ALTER TABLE student DELETE COLUMN平均成绩

    C. ALTER TABLE student DROP COLUMN平均成绩

    D. DELETE TABLE student DROP COLUMN平均成绩


    正确答案:C
    ALTER语句用于在已有的表中添加、修改或删除字段。删除字段的格式为:alter table tablename drop column fieldname,故本题答案为C 。

  • 第15题:

    删除student表的“平均成绩”字段的正确SQL命令是

    A.DELETE TABLE student DELETE COLUMN平均成绩

    B.ALTER TABLE student DELETE C0LUMN平均成绩

    C.ALTER TABLE student DROP COLUMN平均成绩

    D.DELETE TABLE student DROP COLUMN平均成绩


    正确答案:C
    解析: 本题考查的知识点为表结构的修改操作,命令格式为ALTER TABLE  表名[DROP[C0LUMN]字段名]。

  • 第16题:

    在下列SQL语句中,( )包含了不正确的定义语句。

    Ⅰ、CREATE TABLE CREATE VIEW CREATE INDEX

    Ⅱ、DROP TABLE DROP VIEW DROP INDEX

    Ⅲ、ALTER TABLE ALTER VIEW ALTER INDEX

    A)Ⅰ和Ⅱ

    B)只有Ⅱ

    C)只有Ⅲ

    D)Ⅱ和Ⅲ


    正确答案:C

  • 第17题:

    删除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

  • 第18题:

    SQL语句删除表的语句是()

    • A、DROP TABLE            
    • B、DROP VIEW 
    • C、DROP INDEX  
    • D、ALTER TABLE

    正确答案:A

  • 第19题:

    You just issued the following statement: ALTER TABLE SALES DROP COLUMN PROFIT. Which of the following choices identifies when the column will actually be removed from Oracle?()

    • A、Immediately following statement execution 
    • B、After the ALTER TABLE DROP UNUSED COLUMNS command is issued 
    • C、After the ALTER TABLE SET UNUSED COLUMN command is issued 
    • D、After the ALTER TABLE MODIFY command is issued

    正确答案:B

  • 第20题:

    For which two SQL statements can you use the Flashback Table feature to revert a table to its previous state?()

    • A、UPDATE TABLE
    • B、CREATE CLUSTER
    • C、TRUNCATE TABLE
    • D、ALTER TABLE MOVE
    • E、INSERT INTO···VALUES
    • F、ALTER TABLE···DROP COLUMN
    • G、ALTER TABLE···DROP PARTITION

    正确答案:A,E

  • 第21题:

    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

    正确答案:A

  • 第22题:

    多选题
    Which two operations can be flashed back using the Flashback technology?()
    A

    DROP USER SMITH;

    B

    DROP TABLE EMPLOYEES;

    C

    DROP TABLESPACE USERS;

    D

    ALTER TABLE SALES_REP DROP PARTITION P1;

    E

    ALTER TABLE EMPLOYEES DROP COLUMN DESIG_ID;


    正确答案: A,B
    解析: 暂无解析

  • 第23题:

    多选题
    For which two SQL statements can you use the Flashback Table feature to revert a table to its previous state?()
    A

    UPDATE TABLE

    B

    CREATE CLUSTER

    C

    TRUNCATE TABLE

    D

    ALTER TABLE MOVE

    E

    INSERT INTO···VALUES

    F

    ALTER TABLE···DROP COLUMN

    G

    ALTER TABLE···DROP PARTITION


    正确答案: C,B
    解析: 暂无解析

  • 第24题:

    单选题
    You just issued the following statement: ALTER TABLE SALES DROP COLUMN PROFIT. Which of the following choices identifies when the column will actually be removed from Oracle?()
    A

    Immediately following statement execution 

    B

    After the ALTER TABLE DROP UNUSED COLUMNS command is issued 

    C

    After the ALTER TABLE SET UNUSED COLUMN command is issued 

    D

    After the ALTER TABLE MODIFY command is issued


    正确答案: A
    解析: 暂无解析