Managing Databases with Oracle
After a table has been created, its structure can be modified using the SQL command:

MODIFY TABLE [TableName].
CHANGE TABLE [TableName].
UPDATE TABLE [TableName].
ALTER TABLE [TableName].

ANSWER DOWNLOAD EXAMIANS APP

Managing Databases with Oracle
Which of the following is not true of SQL views?

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 cannot use the ORDER BY clause in view definitions.
Oracle views can by queried.

ANSWER DOWNLOAD EXAMIANS APP

Managing Databases with Oracle
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.
Indexes are created with the ALTER TABLE command.
Columns that are frequently used with equal conditions in WHERE clauses are good candidates for indexes.

ANSWER DOWNLOAD EXAMIANS APP

Managing Databases with Oracle
In creating a procedure, you may get a message if you have compile errors. Which of the following is true?

If there are no syntax errors, you will receive the message "NO ERRORS."
SQL*Plus will automatically show the errors to you.
To see the errors, enter SHOW ERRORS in SQL*Plus.
The line numbers reported match the line numbers you see in your text editor.

ANSWER DOWNLOAD EXAMIANS APP