Database redesign is not terribly difficult if the: database has no data. database is structured. database is relatively small. database is well-designed. TRUE ANSWER : ? YOUR ANSWER : ?
What SQL command will allow you to change the table STUDENT to add the constraint named GradeCheck that states that the values of the Grade column must be greater than 0? ALTER TABLE STUDENT ALTER CONSTRAINT GradeCheck (Grade > 0); None of these ALTER TABLE STUDENT ADD CONSTRAINT GradeCheck CHECK (Grade > 0); ALTER TABLE STUDENT ADD CONSTRAINT GradeCheck (Grade > 0); TRUE ANSWER : ? YOUR ANSWER : ?
The EXISTS keyword will be true if: all rows in the subquery fail the condition only. neither of these two conditions is met. any row in the subquery meets the condition only. both of these two conditions are met. TRUE ANSWER : ? YOUR ANSWER : ?
A tool that can help designers understand the dependencies of database structures is a: graphical display. None of these data model. dependency graph. TRUE ANSWER : ? YOUR ANSWER : ?
What SQL command can be used to add columns to a table? MODIFY TABLE TableName ADD COLUMN ColumnName ALTER TABLE TableName ADD COLUMN ColumnName MODIFY TABLE TableName ADD ColumnName ALTER TABLE TableName ADD ColumnName TRUE ANSWER : ? YOUR ANSWER : ?
How can you find rows that do not match some specified condition? None of these NOT EXISTS EXISTS Double use of NOT EXISTS TRUE ANSWER : ? YOUR ANSWER : ?
Changing cardinalities in a database is: a rare database design task, but does occur. a database design task that never occurs. is impossible to do, so a new database must be constructed and the data moved into it. a common database design task. TRUE ANSWER : ? YOUR ANSWER : ?
The data model produced from the reverse engineering process does not include intersection table data. True False TRUE ANSWER : ? YOUR ANSWER : ?
The use of the double NOT EXISTS can be used to find rows that do not match some specified condition. True False TRUE ANSWER : ? YOUR ANSWER : ?
If a database is built correctly the first time, it will not have to be redesigned. True False TRUE ANSWER : ? YOUR ANSWER : ?