Database Redesign What SQL command can be used to add columns to a table? ALTER TABLE TableName ADD ColumnName MODIFY TABLE TableName ADD ColumnName MODIFY TABLE TableName ADD COLUMN ColumnName ALTER TABLE TableName ADD COLUMN ColumnName ALTER TABLE TableName ADD ColumnName MODIFY TABLE TableName ADD ColumnName MODIFY TABLE TableName ADD COLUMN ColumnName ALTER TABLE TableName ADD COLUMN ColumnName ANSWER DOWNLOAD EXAMIANS APP
Database Redesign Because of the need for extensive knowledge of SQL, many database developers choose to automate the redesign process. False True False True ANSWER DOWNLOAD EXAMIANS APP
Database Redesign Which of the following modifications may not succeed? Both of the above actions should succeed Changing a column data type from numeric to char Neither of the above actions will succeed Changing a column data type from char to date Both of the above actions should succeed Changing a column data type from numeric to char Neither of the above actions will succeed Changing a column data type from char to date ANSWER DOWNLOAD EXAMIANS APP
Database Redesign The data model produced from the reverse engineering process is a true logical model. True False True False ANSWER DOWNLOAD EXAMIANS APP
Database Redesign Which of the following SQL statements are helpful in database redesign? Correlated subqueries only None of these Both of the above are helpful EXISTS/NOT EXISTS expressions only Correlated subqueries only None of these Both of the above are helpful EXISTS/NOT EXISTS expressions only ANSWER DOWNLOAD EXAMIANS APP
Database Redesign To drop a column that is used as a foreign key, first: drop the table containing the foreign key. All of these drop the primary key. drop the foreign key constraint. drop the table containing the foreign key. All of these drop the primary key. drop the foreign key constraint. ANSWER DOWNLOAD EXAMIANS APP