Which of the following is not true about modifying table 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. 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 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 enforce uniqueness on columns. Indexes are created to enable fast retrieval by column values. TRUE ANSWER : ? YOUR ANSWER : ?
What is the type of Oracle backup in which all uncommitted changes have been removed from the datafiles? Consistent backup Full backup Differential backup Inconsistent backup TRUE ANSWER : ? YOUR ANSWER : ?
After a table has been created, its structure can be modified using the SQL command: ALTER TABLE [TableName]. UPDATE TABLE [TableName]. MODIFY TABLE [TableName]. CHANGE TABLE [TableName]. TRUE ANSWER : ? YOUR ANSWER : ?
When you type into SQL*Plus and press enter, the statement will be finished and executed. False True TRUE ANSWER : ? YOUR ANSWER : ?
When using SQL*Plus, Oracle commands, column names, table names and all other database elements: are case sensitive. must always be in upper case. must always be in lower case. are case insensitive. 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 period ( . ) followed by [Enter]. A colon ( : ) followed by [Enter]. A left slash ( ) followed by [Enter]. TRUE ANSWER : ? YOUR ANSWER : ?
The only time that case matters is inside quotation marks of strings. True False TRUE ANSWER : ? YOUR ANSWER : ?
Oracle commands, column names, table names, view names and all other database elements are case sensitive. False True TRUE ANSWER : ? YOUR ANSWER : ?