Which of the following is not true about indexes? Columns that are frequently used with equal conditions in WHERE clauses are good candidates for indexes. Indexes are created to enforce uniqueness on columns. Indexes are created with the ALTER TABLE command. Indexes are created to enable fast retrieval by column values. TRUE ANSWER : ? YOUR ANSWER : ?
Which of the following is not true about modifying table columns? You can add a column at any time as long as it is a NULL column. You cannot increase or decrease the number of decimal places. You can drop a column at any time. You can increase the number of characters in character columns or the number of digits in numeric columns TRUE ANSWER : ? YOUR ANSWER : ?
Which of the following is NOT an Oracle-supported trigger? AFTER INSTEAD OF BEFORE DURING TRUE ANSWER : ? YOUR ANSWER : ?
The only time that case matters is inside quotation marks of strings. False True TRUE ANSWER : ? YOUR ANSWER : ?
In creating a procedure, you may get a message if you have compile errors. Which of the following is true? To see the errors, enter SHOW ERRORS in SQL*Plus. The line numbers reported match the line numbers you see in your text editor. SQL*Plus will automatically show the errors to you. If there are no syntax errors, you will receive the message "NO ERRORS." TRUE ANSWER : ? YOUR ANSWER : ?
SQL*Plus will finish the statement and execute it when the user types in this: A period ( . ) followed by [Enter]. A colon ( : ) followed by [Enter]. A semicolon ( ; ) followed by [Enter]. A left slash ( ) followed by [Enter]. TRUE ANSWER : ? YOUR ANSWER : ?
If there is only one statement and no ambiguity about what is wanted, Oracle will treat the semicolon and slash as the same. False True TRUE ANSWER : ? YOUR ANSWER : ?
To see the contents of the SQL*Plus buffer, type: CONTENTS LIST CURRENT BUFFER TRUE ANSWER : ? YOUR ANSWER : ?
What Oracle backup and recover file contains user and system data? OnLine ReDo file Offline ReDo file Datafile Control file TRUE ANSWER : ? YOUR ANSWER : ?