Oracle directly supports the definition of surrogate keys. True False TRUE ANSWER : ? YOUR ANSWER : ?
Which statement about sequences is not true? NextVal and CurrVal are both sequence methods. 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. TRUE ANSWER : ? YOUR ANSWER : ?
You have linked SQL*Plus to an external text editor. To invoke the text editor for use within SQL*Plus, which command do you use? Show [FileName] Alter [FileName] Open [FileName] Edit [FileName] TRUE ANSWER : ? YOUR ANSWER : ?
To obtain the structure of an Oracle table, the command to use is: DESC TABLE [TableName]. DESCRIBE STRUCTURE [TableName]. STRUCTURE [TableName]. DESCRIBE [TableName]. TRUE ANSWER : ? YOUR ANSWER : ?
The semicolon terminates a SQL statement (and executes it). True False TRUE ANSWER : ? YOUR ANSWER : ?
When using SQL*Plus, Oracle commands, column names, table names and all other database elements: must always be in lower case. must always be in upper case. are case sensitive. are case insensitive. TRUE ANSWER : ? YOUR ANSWER : ?
An Oracle System Change Number (SCN): is a value that keeps track of explicit locks. 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. TRUE ANSWER : ? YOUR ANSWER : ?
What type of failure occurs when Oracle fails due to an operating system or computer hardware failure? Media Failure Instance Failure Rollback failure Application failure 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 : ?
When you type Start FILENAME, the statement in your file will be executed automatically. True False TRUE ANSWER : ? YOUR ANSWER : ?