Which of the following SQL statements are helpful in database redesign? None of these Correlated subqueries only EXISTS/NOT EXISTS expressions only Both of the above are helpful TRUE ANSWER : ? YOUR ANSWER : ?
The data model that is produced from reverse engineering is: a logical model. a conceptual model. None of these an internal model. TRUE ANSWER : ? YOUR ANSWER : ?
The NOT EXISTS keyword will be true if any row in the subquery meets the condition. True False TRUE ANSWER : ? YOUR ANSWER : ?
Typically, there should be at least two different copies of the database schema used in the redesign process. False True TRUE ANSWER : ? YOUR ANSWER : ?
What SQL command can be used to delete columns from a table? ALTER TABLE TableName DROP ColumnName MODIFY TABLE TableName DROP ColumnName MODIFY TABLE TableName DROP COLUMN ColumnName ALTER TABLE TableName DROP COLUMN ColumnName TRUE ANSWER : ? YOUR ANSWER : ?
To drop a column that is used as a foreign key, first: All of these drop the primary key. drop the foreign key constraint. drop the table containing the foreign key. TRUE ANSWER : ? YOUR ANSWER : ?
Changing cardinalities in a database is: a common database design task. is impossible to do, so a new database must be constructed and the data moved into it. a database design task that never occurs. a rare database design task, but does occur. TRUE ANSWER : ? YOUR ANSWER : ?
It is not easy to build a database correctly the first time. True False TRUE ANSWER : ? YOUR ANSWER : ?