The semicolon terminates a SQL statement (and executes it). True False TRUE ANSWER : ? YOUR ANSWER : ?
What is the type of Oracle backup in which all uncommitted changes have been removed from the datafiles? Consistent backup Inconsistent backup Full backup Differential backup TRUE ANSWER : ? YOUR ANSWER : ?
Which of the following is not true about indexes? Indexes are created with the ALTER TABLE command. 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 to enforce uniqueness on columns. TRUE ANSWER : ? YOUR ANSWER : ?
Which statement about sequences is not true? Sequences guarantee valid surrogate key values. A sequence is an object that generates a sequential series of unique numbers. Sequences are most often used to provide values for surrogate keys. NextVal and CurrVal are both sequence methods. TRUE ANSWER : ? YOUR ANSWER : ?
The only time that case matters is inside quotation marks of strings. False True TRUE ANSWER : ? YOUR ANSWER : ?
An Oracle System Change Number (SCN): is incremented whenever a deadlock occurs. 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. TRUE ANSWER : ? YOUR ANSWER : ?
What Oracle backup and recover file contains user and system data? OnLine ReDo file Control file Datafile Offline ReDo file TRUE ANSWER : ? YOUR ANSWER : ?
Which of the following is not true of SQL views? Oracle views cannot use the ORDER BY clause in view definitions. 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. TRUE ANSWER : ? YOUR ANSWER : ?