Changing cardinalities in a database is: 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 common database design task. a rare database design task, but does occur. TRUE ANSWER : ? YOUR ANSWER : ?
The data model produced from the reverse engineering process does not include intersection table data. False True TRUE ANSWER : ? YOUR ANSWER : ?
A tool that can help designers understand the dependencies of database structures is a: None of these dependency graph. data model. graphical display. TRUE ANSWER : ? YOUR ANSWER : ?
Database redesign is not terribly difficult if the: database is well-designed. database is relatively small. database is structured. database has no data. TRUE ANSWER : ? YOUR ANSWER : ?
Which is not true of a correlated subquery? They are very similar to a regular subquery. The processing of the SELECT statements is nested. They can be used to verify functional dependencies. EXISTS/NOT EXISTS is a form of a correlated subquery. TRUE ANSWER : ? YOUR ANSWER : ?
A regular subquery can be processed: by nesting. None of these from the bottom up. from the top down. TRUE ANSWER : ? YOUR ANSWER : ?
Some organizations take the stand that no application should ever employ the true name of a table. True False TRUE ANSWER : ? YOUR ANSWER : ?
How can you find rows that do not match some specified condition? EXISTS Double use of NOT EXISTS NOT EXISTS None of these TRUE ANSWER : ? YOUR ANSWER : ?
What SQL command can be used to delete columns from a table? MODIFY TABLE TableName DROP COLUMN ColumnName MODIFY TABLE TableName DROP ColumnName ALTER TABLE TableName DROP ColumnName ALTER TABLE TableName DROP COLUMN ColumnName TRUE ANSWER : ? YOUR ANSWER : ?