Database redesign is not terribly difficult if the: database has no data. database is relatively small. database is well-designed. database is structured. TRUE ANSWER : ? YOUR ANSWER : ?
Which SQL-92 standard SQL command can be used to change a table name? CHANGE TABLE RENAME TABLE None of these ALTER TABLE TRUE ANSWER : ? YOUR ANSWER : ?
Before any changes to database structure are attempted one should first: create a complete backup of the operational database only. All of these test any changes on a test database only. clearly understand the current structure and contents of the database only. TRUE ANSWER : ? YOUR ANSWER : ?
Reverse engineering is the process of reading a database schema and producing a data model from that schema. False True TRUE ANSWER : ? YOUR ANSWER : ?
The data model that is produced from reverse engineering is: a logical model. an internal model. a conceptual model. None of these TRUE ANSWER : ? YOUR ANSWER : ?
Because of the importance of making data model changes correctly, many professionals are ________ about using an automated process for database redesign. optimistic None of these skeptical ambivalent 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 ADD CONSTRAINT GradeCheck (Grade > 0); ALTER TABLE STUDENT ADD CONSTRAINT GradeCheck CHECK (Grade > 0); None of these ALTER TABLE STUDENT ALTER CONSTRAINT GradeCheck (Grade > 0); TRUE ANSWER : ? YOUR ANSWER : ?
The EXISTS keyword will be true if: both of these two conditions are met. any row in the subquery meets the condition only. neither of these two conditions is met. all rows in the subquery fail the condition only. TRUE ANSWER : ? YOUR ANSWER : ?