What Oracle backup and recover file contains user and system data? Offline ReDo file Datafile OnLine ReDo file Control 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 : ?
An Oracle System Change Number (SCN): is a value that is incremented whenever database changes are made. is a value that keeps track of explicit locks. is a value that is incremented whenever a dirty read occurs. is incremented whenever a deadlock occurs. TRUE ANSWER : ? YOUR ANSWER : ?
When using SQL*Plus, Oracle commands, column names, table names and all other database elements: are case sensitive. are case insensitive. must always be in upper case. must always be in lower case. 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 : ?
What type of failure occurs when Oracle fails due to an operating system or computer hardware failure? Application failure Instance Failure Media Failure Rollback failure TRUE ANSWER : ? YOUR ANSWER : ?
Which of the following is not true about modifying table columns? 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 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. TRUE ANSWER : ? YOUR ANSWER : ?
The left-leaning slash tells Oracle to execute whatever statement is in the buffer. True False TRUE ANSWER : ? YOUR ANSWER : ?
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 enable fast retrieval by column values. Indexes are created with the ALTER TABLE command. Indexes are created to enforce uniqueness on columns. 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. To see the errors, enter SHOW ERRORS in SQL*Plus. If there are no syntax errors, you will receive the message "NO ERRORS." The line numbers reported match the line numbers you see in your text editor. TRUE ANSWER : ? YOUR ANSWER : ?