单选题Which of the following operations does not require Oracle to store information in an UNDO segments as part of the transaction?()A INSERT B SELECT C UPDATE D DELETE

题目
单选题
Which of the following operations does not require Oracle to store information in an UNDO segments as part of the transaction?()
A

INSERT 

B

SELECT 

C

UPDATE 

D

DELETE


相似考题
参考答案和解析
正确答案: D
解析: 暂无解析
更多“单选题Which of the following operations does not require Oracle to store information in an UNDO segments as part of the transaction?()A INSERT B SELECT C UPDATE D DELETE”相关问题
  • 第1题:

    SQL的DML包括的语句有()。

    • A、ROLLBACK,COMMIT
    • B、CREATE,DROP,ALTER
    • C、GRANT,REVOKE
    • D、SELECT,INSERT,DELETE,UPDATE

    正确答案:D

  • 第2题:

    You executed the following query:  SELECT operation, undo_sql, table_name FROM flashback_transaction_query; Which statement is correct regarding the query output?()

    • A、 It would return information regarding only the last committed transaction.
    • B、 It would return only the active transactions in all the undo segments in the database.
    • C、 It would return only the committed transactions in all the undo segments in the database.
    • D、 It would return both active and committed transactions in all the undo segments in the database.
    • E、 It would return information regarding the transactions that began and were committed in the last 30 minutes.

    正确答案:D

  • 第3题:

    Which object privileges can be granted on a view? ()

    • A、none
    • B、DELETE, INSERT,SELECT
    • C、ALTER, DELETE, INSERT, SELECT
    • D、DELETE, INSERT, SELECT, UPDATE

    正确答案:D

  • 第4题:

    Which two statements are true regarding transactions in an Oracle database()

    • A、Multiple transactions can use the same undo segment.
    • B、A transaction is assigned an undo segment when it is started.
    • C、More than one transaction cannot share the same extent in the undo tablespace.
    • D、The transactions use system undo segment to store undo data if all the segments in the undo tablespaceare used.

    正确答案:A,B

  • 第5题:

    You require the Oracle server to manage the undo segments and space among various active sessions automatically. You created an undo tablespace, UNDO_TBS1, in your database. Which two additional steps would you perform to achieve this?()

    • A、Set the UNDO_RETENTION parameter to 900 or more.
    • B、Create an initial undo segment in the undo tablespace.
    • C、Enable the retention guarantee for the undo tablespace.
    • D、Set the UNDO_TABLESPACE parameter to UNDO_TBS1.
    • E、Set the UNDO_MANAGEMENT initialization parameter to AUTO.

    正确答案:D,E

  • 第6题:

    User SCOTT executes the following command on the EMP table but has not issued COMMIT, ROLLBACK,or any data definition language (DDL) command:  SQL> SELECT job FROM emp  2  WHERE job=’CLERK’ FOR UPDATE OF empno;  SCOTT has opened another session to work with the database. Which three operations would wait when issued in SCOTT’s second session?()

    • A、LOCK TABLE emp IN SHARE MODE;
    • B、LOCK TABLE emp IN EXCLUSIVE MODE;
    • C、DELETE FROM emp WHERE job=’MANAGER’;
    • D、INSERT INTO emp(empno,ename) VALUES (1289,’Dick’);
    • E、SELECT job FROM emp WHERE job=’CLERK’ FOR UPDATE OF empno;

    正确答案:A,B,E

  • 第7题:

    单选题
    Which of the following operations does not require Oracle to store information in an UNDO segments as part of the transaction?()
    A

    INSERT 

    B

    SELECT 

    C

    UPDATE 

    D

    DELETE


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

  • 第8题:

    单选题
    Which object privileges can be granted on a view? ()
    A

    none

    B

    DELETE, INSERT,SELECT

    C

    ALTER, DELETE, INSERT, SELECT

    D

    DELETE, INSERT, SELECT, UPDATE


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

  • 第9题:

    多选题
    Which two statements regarding the FLASHBACK_TRANSACTION_QUERY view are correct?()
    A

    You can find information about only active transactions from the view

    B

    You can find information about read only transactions from the view

    C

    You require the SELECT ANY TRANSACTION system privilege to access the view

    D

    You can find information about both active and committed transactions from the view

    E

    You require the SELECT ON FLASHBACK_TRANSACTION_QUERY object privilege to access the view


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

  • 第10题:

    多选题
    A constraint in a table is defined with the INITIALLY IMMEDIATE clause. You executed the ALTER TABLE command with the ENABLE VALIDATE option to enable the constraint that was disabled. What are the two effects of this command?()
    A

    It fails if any existing row violates the constraint.

    B

    It does not validate the existing data in the table.

    C

    It enables the constraint to be enforced at the end of each transaction.

    D

    It prevents insert, update, and delete operations on the table while the constraint is in the process of being enabled.


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

  • 第11题:

    多选题
    You require the Oracle server to manage the undo segments and space among various active sessions automatically. You created an undo tablespace, UNDO_TBS1, in your database. Which two additional steps would you perform to achieve this?()
    A

    Set the UNDO_RETENTION parameter to 900 or more.

    B

    Create an initial undo segment in the undo tablespace.

    C

    Enable the retention guarantee for the undo tablespace.

    D

    Set the UNDO_TABLESPACE parameter to UNDO_TBS1.

    E

    Set the UNDO_MANAGEMENT initialization parameter to AUTO.


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

  • 第12题:

    单选题
    You need to give the MANAGER role the ability to select from, insert into, and modify existing rows in the STUDENT_GRADES table. Anyone given this MANAGER role should be able to pass those privileges on to others. Which statement accomplishes this? ()
    A

    GRANT select, insert, update ON student_grades TO manager

    B

    GRANT select, insert, update ON student_grades TO ROLE manager

    C

    GRANT select, insert, modify ON student_grades TO manager WITH GRANT OPTION;

    D

    GRANT select, insert, update ON student_grades TO manager WITH GRANT OPTION;

    E

    GRANT select, insert, update ON student_grades TO ROLE manager WITH GRANT OPTION;  

    F

    GRANT select, insert, modify ON student_grades TO ROLE manager WITH GRANT OPTION;


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

  • 第13题:

    Which of the following is the correct procedure to update the BIOS on LS42 blades without using the AMM?()

    • A、Insert the Update eXpress Service Pack Installer (UXSPI) CD, boot the LS42 blade and follow the prompts 
    • B、Boot the blade to the Bootable Media Creator (BoMC) CD and follow the prompts 
    • C、Press F1 when the LS42 system is booting, select Update BIOS, insert the diskette into the diskette drive, and select OK 
    • D、Use the Remote Supervisor Adapter virtual disk

    正确答案:B

  • 第14题:

    Which two operations require undo data?()

    • A、committing a transaction
    • B、rolling back a transaction
    • C、recovering from failed transactions
    • D、recording a transaction to redo log files
    • E、rolling forward during instance recovery

    正确答案:B,C

  • 第15题:

    You need to give the MANAGER role the ability to select from, insert into, and modify existing rows in the STUDENT_GRADES table. Anyone given this MANAGER role should be able to pass those privileges on to others. Which statement accomplishes this? ()

    • A、GRANT select, insert, update ON student_grades TO manager
    • B、GRANT select, insert, update ON student_grades TO ROLE manager
    • C、GRANT select, insert, modify ON student_grades TO manager WITH GRANT OPTION;
    • D、GRANT select, insert, update ON student_grades TO manager WITH GRANT OPTION;
    • E、GRANT select, insert, update ON student_grades TO ROLE manager WITH GRANT OPTION;  
    • F、GRANT select, insert, modify ON student_grades TO ROLE manager WITH GRANT OPTION;

    正确答案:D

  • 第16题:

    Which of the following Oracle features utilize the undo tablespace?() 

    • A、 Flashback Query
    • B、 Flashback Drop
    • C、 Flashback Table
    • D、 Flashback Database
    • E、 Transaction Processing
    • F、 Recycle Bin

    正确答案:A,C,E

  • 第17题:

    Which of the following operations does not require Oracle to store information in an UNDO segments as part of the transaction?()

    • A、INSERT 
    • B、SELECT 
    • C、UPDATE 
    • D、DELETE

    正确答案:B

  • 第18题:

    You need to give the MANAGER role the ability to select from, insert into, and modify existing rows in the STUDENT_GRADES table. Anyone given this MANAGER role should be able to pass those privileges on to others. Which statement accomplishes this?()

    • A、GRANT select, insert, update   ON student_grades   TO manager;
    • B、GRANT select, insert, update   ON student_grades   TO ROLE manager;
    • C、GRANT select, insert, modify   ON student_grades   TO manager   WITH GRANT OPTION;
    • D、GRANT select, insert, update   ON student_grades   TO manager   WITH GRANT OPTION;
    • E、GRANT select, insert, update   ON student_grades   TO ROLE manager   WITH GRANT OPTION;
    • F、GRANT select, insert, modify   ON student_grades   TO ROLE manager   WITH GRANT OPTION;

    正确答案:D

  • 第19题:

    单选题
    During the implement phase, systems acceptance testing does which of the following for the customer? Select exactly 1 answer(s) from the following:()。
    A

    installation, configuration, and testing, as well as the commissioning of tools and processes in accordance with the operations implementation plan

    B

    provision of information regarding customer-specified design requirements and configuration

    C

    the migration of network services from an existing state to a future state in accordance with the migration plan

    D

    the provision of an objective means of measuring system operability and functionality


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

  • 第20题:

    多选题
    A constraint in a table is defined with the INITIALLY IMMEDIATE clause. You executed the ALTER TABLEcommand with the ENABLE VALIDATE option to enable the constraint that was disabled.  What are the twoeffects of this command()
    A

    It fails if any existing row violates the constraint.

    B

    It does not validate the existing data in the table.

    C

    It enables the constraint to be enforced at the end of each transaction.

    D

    It prevents insert, update, and delete operations on the table while the constraint is in the process of beingenabled


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

  • 第21题:

    多选题
    Which two statements are true regarding transactions in an Oracle database()
    A

    Multiple transactions can use the same undo segment.

    B

    A transaction is assigned an undo segment when it is started.

    C

    More than one transaction cannot share the same extent in the undo tablespace.

    D

    The transactions use system undo segment to store undo data if all the segments in the undo tablespaceare used.


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

  • 第22题:

    单选题
    You executed the following query: SELECT operation, undo_sql, table_name FROM flashback_transaction_query;  Which statement is correct regarding the query output?()
    A

    It would return information regarding only the last committed transaction.

    B

    It would return only the active transactions in all the undo segments in the database.

    C

    It would return only the committed transactions in all the undo segments in the database.

    D

    It would return both active and committed transactions in all the undo segments in the database.

    E

    It would return information regarding the transactions that began and were committed in the last 30 minutes.


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

  • 第23题:

    多选题
    Which two operations require undo data?()
    A

    committing a transaction

    B

    rolling back a transaction

    C

    recovering from failed transactions

    D

    recording a transaction to redo log files

    E

    rolling forward during instance recovery


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

  • 第24题:

    单选题
    You executed the following query:  SELECT operation, undo_sql, table_name FROM flashback_transaction_query; Which statement is correct regarding the query output?()
    A

     It would return information regarding only the last committed transaction.

    B

     It would return only the active transactions in all the undo segments in the database.

    C

     It would return only the committed transactions in all the undo segments in the database.

    D

     It would return both active and committed transactions in all the undo segments in the database.

    E

     It would return information regarding the transactions that began and were committed in the last 30 minutes.


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