What are two ways in which normalizing your tables helps improve performance In MySQL?
Reveal answer details Close answer details
Correct answerD
Oracle · 1Z0-882
Preview real exam questions, verified answers and available explanations before choosing a study plan.
|
Single choice
What are two ways in which normalizing your tables helps improve performance In MySQL? Reveal answer details Close answer detailsCorrect answerD
Single choice
Assume the user has just connected to the MySQL server. What is the result of the query SELECT @ a? Reveal answer details Close answer detailsCorrect answerD
Multiple choice
Which two keywords cannot be used in multi-table deletes? Reveal answer details Close answer detailsCorrect answersB, C
Single choice
The contents of the parent and child tables are: ![]() The child table has the parent_id column that has a foreign key constraint to the id column of the parent What is the effect of the above command? Reveal answer details Close answer detailsCorrect answerA
Multiple choice
Assume your connection uses SQL mode ANSI_QUOTES. Which two statements cause a syntax error? Reveal answer details Close answer detailsCorrect answersA, B
Single choice
Consider the table t1 created with this statement: CREATE TABLE t1( ![]() These commands are executed: DELETE FROM t1 WHERE id=200; INSERT INTO t1 (name) VALUES (`pluto'): Which data set is inserted in the table? Reveal answer details Close answer detailsCorrect answerA
Single choice
Consider the statements: Mysql> drop function foo; ERROR 1305 (420000): FUNCTION test, foo does not exist Mysql > show warnings; ![]() Mysql> get diagnostics condition 2 @msg=MESSAGE_TEXT; What is the result of the final statement? Reveal answer details Close answer detailsCorrect answerC
Multiple choice
Inspect the CREATE TABLE below: Mysql> CREATE TABLE foo (a INT, PRIMARY KEY (a)) ENGINE =InnoDB; Query Ok, 0 rows affected, 2 Mysql> SHOW WARNINGS; ![]() Which two is true connecting the meaning of the warnings? Reveal answer details Close answer detailsCorrect answersD, E
Single choice
What is true about the contents of the INFORMATION_SCHEMATA table? Reveal answer details Close answer detailsCorrect answerB
Multiple choice
An application packs several fields of information into the details column of the table sensors. The first six characters of that data represent a location code. Example: "ABCDEFOO ooozzz comments will be here FIELDS----FIELD64" Given the query pattern: SELECT----FROM sensors WHERE details LIKE `ABCDEF Which three ALTER TABLE commands enable the optimizer to user an index for this WHERE patterns? Reveal answer details Close answer detailsCorrect answersA, B
Single choice
Consider the content of the class and student tables: Class ![]() Which three queries produce the same result? Reveal answer details Close answer detailsCorrect answerD
Single choice
You have two tables: ![]() You execute the statement: REPLACE INTO department (Department_ID, Department_Name) VALUES (1, `Admin'); What data is in the employee table after the statement? ![]() Reveal answer details Close answer detailsCorrect answerC
Single choice
Consider the statement: CREATE TABLE t1 (a INT) PARTITION BY KEY /*150611 ALGORITHM = 1*/ What does this statement do? Reveal answer details Close answer detailsCorrect answerC
Multiple choice
Your application is running slow. Which two features provide information that help to identify problems? Reveal answer details Close answer detailsCorrect answersB, C
Single choice
You are connected to a MySQL server and using a prepared statement. You accidentally exit your session. What will happen if you log back in to use your prepared statement? Reveal answer details Close answer detailsCorrect answerA |