When you type into SQL*Plus and press enter, the statement will be finished and executed. False True TRUE ANSWER : ? YOUR ANSWER : ?
After a table has been created, its structure can be modified using the SQL command: CHANGE TABLE [TableName]. ALTER TABLE [TableName]. MODIFY TABLE [TableName]. UPDATE TABLE [TableName]. TRUE ANSWER : ? YOUR ANSWER : ?
To obtain the structure of an Oracle table, the command to use is: DESC TABLE [TableName]. DESCRIBE [TableName]. STRUCTURE [TableName]. DESCRIBE STRUCTURE [TableName]. TRUE ANSWER : ? YOUR ANSWER : ?
SQL*Plus will finish the statement and execute it when the user types in this: A semicolon ( ; ) followed by [Enter]. A left slash ( ) followed by [Enter]. A colon ( : ) followed by [Enter]. A period ( . ) followed by [Enter]. TRUE ANSWER : ? YOUR ANSWER : ?
Of the three ways to create an Oracle database, which one is the easiest and most recommended? Using the SQL CREATE DATABASE command. Using the Oracle-supplied database creation procedures. Using the Oracle Database Configuration Assistant. None of these TRUE ANSWER : ? YOUR ANSWER : ?
Which of the following is not true about indexes? Indexes are created to enforce uniqueness on columns. Indexes are created to enable fast retrieval by column values. Columns that are frequently used with equal conditions in WHERE clauses are good candidates for indexes. Indexes are created with the ALTER TABLE command. TRUE ANSWER : ? YOUR ANSWER : ?
What Oracle backup and recover file contains user and system data? Control file Offline ReDo file Datafile OnLine ReDo file TRUE ANSWER : ? YOUR ANSWER : ?
An Oracle System Change Number (SCN): is incremented whenever a deadlock occurs. is a value that keeps track of explicit locks. is a value that is incremented whenever a dirty read occurs. is a value that is incremented whenever database changes are made. TRUE ANSWER : ? YOUR ANSWER : ?
You can check on the status of tables with the DESCRIBE or DESC command. False True TRUE ANSWER : ? YOUR ANSWER : ?