The data model produced from the reverse engineering process does not include intersection table data. False True TRUE ANSWER : ? YOUR ANSWER : ?
What SQL command can be used to add columns to a table? MODIFY TABLE TableName ADD COLUMN ColumnName MODIFY TABLE TableName ADD ColumnName ALTER TABLE TableName ADD COLUMN ColumnName ALTER TABLE TableName ADD ColumnName 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 : ?
The EXISTS keyword will be true if: both of these two conditions are met. neither of these two conditions is met. any row in the subquery meets the condition only. all rows in the subquery fail the condition only. TRUE ANSWER : ? YOUR ANSWER : ?
The use of the double NOT EXISTS can be used to find rows that do not match some specified condition. False True TRUE ANSWER : ? YOUR ANSWER : ?
The EXISTS keyword will be true if any row in the subquery meets the condition. False True TRUE ANSWER : ? YOUR ANSWER : ?
Which of the following modifications may not succeed? Both of the above actions should succeed Neither of the above actions will succeed Changing a column data type from char to date Changing a column data type from numeric to char TRUE ANSWER : ? YOUR ANSWER : ?
Before any changes to database structure are attempted one should first: clearly understand the current structure and contents of the database only. test any changes on a test database only. create a complete backup of the operational database only. All of these TRUE ANSWER : ? YOUR ANSWER : ?
Information systems and organizations do not just influence each other; they create each other. True False 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); ALTER TABLE STUDENT ALTER CONSTRAINT GradeCheck (Grade > 0); None of these TRUE ANSWER : ? YOUR ANSWER : ?