You can check on the status of tables with the DESCRIBE or DESC command. True False TRUE ANSWER : ? YOUR ANSWER : ?
You can use the DROP statement to remove structures from the database. True False TRUE ANSWER : ? YOUR ANSWER : ?
Which of the following is not true of SQL views? The SQL-92 standard does not allow the use of the ORDER BY clause in view definitions. Oracle views are created using the standard SQL-92 CREATE VIEW command. Oracle views can by queried. Oracle views cannot use the ORDER BY clause in view definitions. TRUE ANSWER : ? YOUR ANSWER : ?
Oracle will let you define Notepad as your default editor, and whenever you type NOTEPAD, SQL*Plus will invoke Notepad. True False TRUE ANSWER : ? YOUR ANSWER : ?
Which prefixes are available to Oracle triggers? :new only Neither :new nor :old Both :new and :old :old only TRUE ANSWER : ? YOUR ANSWER : ?
Oracle commands, column names, table names, view names and all other database elements are case sensitive. False True TRUE ANSWER : ? YOUR ANSWER : ?
Which of the following is NOT an Oracle-supported trigger? AFTER DURING BEFORE INSTEAD OF TRUE ANSWER : ? YOUR ANSWER : ?
Which of the following is not true about modifying table columns? You can increase the number of characters in character columns or the number of digits in numeric columns You cannot increase or decrease the number of decimal places. You can add a column at any time as long as it is a NULL column. You can drop a column at any time. TRUE ANSWER : ? YOUR ANSWER : ?
Which statement about sequences is not true? Sequences are most often used to provide values for surrogate keys. Sequences guarantee valid surrogate key values. A sequence is an object that generates a sequential series of unique numbers. NextVal and CurrVal are both sequence methods. TRUE ANSWER : ? YOUR ANSWER : ?