The process of reading a database schema and producing a data model from that schema is known as: database design. None of these reverse engineering. data modeling. 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? None of these ALTER TABLE STUDENT ADD CONSTRAINT GradeCheck (Grade > 0); ALTER TABLE STUDENT ALTER CONSTRAINT GradeCheck (Grade > 0); ALTER TABLE STUDENT ADD CONSTRAINT GradeCheck CHECK (Grade > 0); TRUE ANSWER : ? YOUR ANSWER : ?
Which of the following modifications may not succeed? Changing a column data type from char to date Changing a column data type from numeric to char Both of the above actions should succeed Neither of the above actions will succeed 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 : ?
Before any changes to database structure are attempted one should first: test any changes on a test database only. All of these create a complete backup of the operational database only. clearly understand the current structure and contents of the database only. TRUE ANSWER : ? YOUR ANSWER : ?
The EXISTS keyword will be true if any row in the subquery meets the condition. True False TRUE ANSWER : ? YOUR ANSWER : ?
The EXISTS keyword will be true if: both of these two conditions are met. 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. TRUE ANSWER : ? YOUR ANSWER : ?
Database redesign is not terribly difficult if the: database has no data. database is structured. database is well-designed. database is relatively small. TRUE ANSWER : ? YOUR ANSWER : ?
The data model that is produced from reverse engineering is: an internal model. a conceptual model. None of these a logical model. TRUE ANSWER : ? YOUR ANSWER : ?