An Oracle System Change Number (SCN): is a value that is incremented whenever database changes are made. is incremented whenever a deadlock occurs. is a value that is incremented whenever a dirty read occurs. is a value that keeps track of explicit locks. TRUE ANSWER : ? YOUR ANSWER : ?
Oracle directly supports the definition of surrogate keys. False True TRUE ANSWER : ? YOUR ANSWER : ?
To obtain the structure of an Oracle table, the command to use is: STRUCTURE [TableName]. DESCRIBE [TableName]. DESCRIBE STRUCTURE [TableName]. DESC TABLE [TableName]. TRUE ANSWER : ? YOUR ANSWER : ?
You can check on the status of tables with the DESCRIBE or DESC command. False True TRUE ANSWER : ? YOUR ANSWER : ?
Oracle maintains a System Change Number (SCN) which is a database-wide value that is incremented by Oracle whenever database changes are made. 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? SQL*Plus will automatically show the errors to you. If there are no syntax errors, you will receive the message "NO ERRORS." To see the errors, enter SHOW ERRORS in SQL*Plus. The line numbers reported match the line numbers you see in your text editor. TRUE ANSWER : ? YOUR ANSWER : ?
What Oracle backup and recover file contains user and system data? Datafile Offline ReDo file Control file OnLine ReDo file TRUE ANSWER : ? YOUR ANSWER : ?
Indexes are created to enforce uniqueness on columns and to enable fast retrieval by column values. False True TRUE ANSWER : ? YOUR ANSWER : ?