Which of the following modifications may not 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 TRUE ANSWER : ? YOUR ANSWER : ?
The NOT EXISTS keyword will be true if: neither of these two conditions is met. any row in the subquery meets the condition. all rows in the subquery fail the condition. both of these two conditions are met. TRUE ANSWER : ? YOUR ANSWER : ?
The NOT EXISTS keyword will be true if any row in the subquery meets the condition. False True TRUE ANSWER : ? YOUR ANSWER : ?
Because of the need for extensive knowledge of SQL, many database developers choose to automate the redesign process. True False 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 : ?
Before any changes to database structure are attempted one should first: test any changes on a test database only. clearly understand the current structure and contents of the database only. create a complete backup of the operational database only. All of these TRUE ANSWER : ? YOUR ANSWER : ?
Which SQL-92 standard SQL command can be used to change a table name? None of these ALTER TABLE RENAME TABLE CHANGE TABLE TRUE ANSWER : ? YOUR ANSWER : ?
Reverse engineering is the process of reading a database schema and producing a data model from that schema. True False TRUE ANSWER : ? YOUR ANSWER : ?
Which of the following SQL statements are helpful in database redesign? EXISTS/NOT EXISTS expressions only None of these Correlated subqueries only Both of the above are helpful TRUE ANSWER : ? YOUR ANSWER : ?
What SQL command can be used to delete columns from a table? ALTER TABLE TableName DROP ColumnName ALTER TABLE TableName DROP COLUMN ColumnName MODIFY TABLE TableName DROP ColumnName MODIFY TABLE TableName DROP COLUMN ColumnName TRUE ANSWER : ? YOUR ANSWER : ?