After a table has been created, its structure can be modified using the SQL command: ALTER TABLE [TableName]. CHANGE TABLE [TableName]. MODIFY TABLE [TableName]. UPDATE TABLE [TableName]. 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? Open [FileName] Edit [FileName] Alter [FileName] Show [FileName] TRUE ANSWER : ? YOUR ANSWER : ?
Which of the following is not true of SQL views? Oracle views can by queried. Oracle views are created using the standard SQL-92 CREATE VIEW command. The SQL-92 standard does not allow the use of the ORDER BY clause in view definitions. Oracle views cannot use the ORDER BY clause in view definitions. TRUE ANSWER : ? YOUR ANSWER : ?
To obtain the structure of an Oracle table, the command to use is: STRUCTURE [TableName]. DESCRIBE [TableName]. DESC TABLE [TableName]. DESCRIBE STRUCTURE [TableName]. TRUE ANSWER : ? YOUR ANSWER : ?
Which of the following is NOT an Oracle-supported trigger? INSTEAD OF AFTER BEFORE DURING TRUE ANSWER : ? YOUR ANSWER : ?
Which of the following is not true about indexes? Indexes are created to enforce uniqueness on columns. Columns that are frequently used with equal conditions in WHERE clauses are good candidates for indexes. Indexes are created with the ALTER TABLE command. Indexes are created to enable fast retrieval by column values. TRUE ANSWER : ? YOUR ANSWER : ?
Oracle will let you define Notepad as your default editor, and whenever you type NOTEPAD, SQL*Plus will invoke Notepad. False True TRUE ANSWER : ? YOUR ANSWER : ?
The default extension for an Oracle SQL*Plus file is: .txt .sql .ora .pls TRUE ANSWER : ? YOUR ANSWER : ?
Oracle commands, column names, table names, view names and all other database elements are case sensitive. True False TRUE ANSWER : ? YOUR ANSWER : ?