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 ADD CONSTRAINT GradeCheck CHECK (Grade > 0); ALTER TABLE STUDENT ADD CONSTRAINT GradeCheck (Grade > 0); None of these ALTER TABLE STUDENT ALTER CONSTRAINT GradeCheck (Grade > 0); 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 : ?
Which SQL-92 standard SQL command can be used to change a table name? RENAME TABLE CHANGE TABLE None of these ALTER TABLE 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. a common database design task. is impossible to do, so a new database must be constructed and the data moved into it. TRUE ANSWER : ? YOUR ANSWER : ?
Typically, there should be at least two different copies of the database schema used in the redesign process. True False TRUE ANSWER : ? YOUR ANSWER : ?
Which of the following modifications may not succeed? Changing a column data type from char to date Neither of the above actions will succeed Both of the above actions should succeed Changing a column data type from numeric to char TRUE ANSWER : ? YOUR ANSWER : ?
A tool that can help designers understand the dependencies of database structures is a: dependency graph. graphical display. None of these data model. TRUE ANSWER : ? YOUR ANSWER : ?
The data model that is produced from reverse engineering is: a conceptual model. None of these an internal model. a logical model. TRUE ANSWER : ? YOUR ANSWER : ?
The data model produced from the reverse engineering process is a true logical model. False True TRUE ANSWER : ? YOUR ANSWER : ?