Home / CSE / Database System 2 - CS :: Managing Databases with Oracle

CSE :: Database System 2 - CS

  1. What type of failure occurs when Oracle fails due to an operating system or computer hardware failure?

  2. A.

     Application failure

    B.

     Instance Failure

    C.

     Media Failure

    D.

     Rollback failure


  3. Which statement about sequences is not true?

  4. A.

     A sequence is an object that generates a sequential series of unique numbers.

    B.

     Sequences are most often used to provide values for surrogate keys.

    C.

     NextVal and CurrVal are both sequence methods.

    D.

     Sequences guarantee valid surrogate key values.


  5. Which prefixes are available to Oracle triggers?

  6. A.

     :new only

    B.

     :old only

    C.

     Both :new and :old

    D.

     Neither :new nor :old


  7. In creating a procedure, you may get a message if you have compile errors. Which of the following is true?

  8. A.

     The line numbers reported match the line numbers you see in your text editor.

    B.

     SQL*Plus will automatically show the errors to you.

    C.

     To see the errors, enter SHOW ERRORS in SQL*Plus.

    D.

     If there are no syntax errors, you will receive the message "NO ERRORS."


  9. Which of the following is not true about indexes?

  10. A.

     Indexes are created to enforce uniqueness on columns.

    B.

     Indexes are created to enable fast retrieval by column values.

    C.

     Columns that are frequently used with equal conditions in WHERE clauses are good candidates for indexes.

    D.

     Indexes are created with the ALTER TABLE command.


  11. Which of the following is not true of SQL views?

  12. A.

     Oracle views cannot use the ORDER BY clause in view definitions.

    B.

     Oracle views are created using the standard SQL-92 CREATE VIEW command.

    C.

     Oracle views can by queried.

    D.

     The SQL-92 standard does not allow the use of the ORDER BY clause in view definitions.


  13. SQL*Plus will finish the statement and execute it when the user types in this:

  14. A.

     A left slash ( ) followed by [Enter].

    B.

     A colon ( : ) followed by [Enter].

    C.

     A semicolon ( ; ) followed by [Enter].

    D.

     A period ( . ) followed by [Enter].


  15. Which of the following is NOT an Oracle-supported trigger?

  16. A.

     BEFORE

    B.

     DURING

    C.

     AFTER

    D.

     INSTEAD OF


  17. After a table has been created, its structure can be modified using the SQL command:

  18. A.

     UPDATE TABLE [TableName].

    B.

     MODIFY TABLE [TableName].

    C.

     ALTER TABLE [TableName].

    D.

     CHANGE TABLE [TableName].


  19. Which of the following is not true about modifying table columns?

  20. A.

     You can drop a column at any time.

    B.

     You can add a column at any time as long as it is a NULL column.

    C.

     You can increase the number of characters in character columns or the number of digits in numeric columns

    D.

     You cannot increase or decrease the number of decimal places.