Some organizations take the stand that no application should ever employ the true name of a table. True False TRUE ANSWER : ? YOUR ANSWER : ?
Before any changes to database structure are attempted one should first: All of these clearly understand the current structure and contents of the database only. create a complete backup of the operational database only. test any changes on a test database only. TRUE ANSWER : ? YOUR ANSWER : ?
How many copies of the database schema are typically used in the redesign process? Three Four One Two TRUE ANSWER : ? YOUR ANSWER : ?
Which of the following SQL statements are helpful in database redesign? Correlated subqueries only None of these EXISTS/NOT EXISTS expressions only Both of the above are helpful TRUE ANSWER : ? YOUR ANSWER : ?
Information systems and organizations do not just influence each other; they create each other. True False TRUE ANSWER : ? YOUR ANSWER : ?
Typically, there should be at least two different copies of the database schema used in the redesign process. False True 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); ALTER TABLE STUDENT ADD CONSTRAINT GradeCheck (Grade > 0); ALTER TABLE STUDENT ADD CONSTRAINT GradeCheck CHECK (Grade > 0); None of these TRUE ANSWER : ? YOUR ANSWER : ?
A tool that can help designers understand the dependencies of database structures is a: None of these data model. dependency graph. graphical display. TRUE ANSWER : ? YOUR ANSWER : ?