Which of the following best describes what you might expect after disabling InnoDB at run time?
Show answer and explanation
Correct answer: C
1Z0-874 Real Exam Questions
138 questions available · Page 1 of 14
Updated Exam DumpsVerified AnswersPass Guarantee
Which of the following best describes what you might expect after disabling InnoDB at run time?
Correct answer: C
Which of the following is true of the table cache if you mainly run simple queries on many tables?
Correct answer: B
Which of the following best describes why one should use VARCHAR rather than CHAR in InnoDB?
Correct answer: B
Which of the following best describes how the binary log might be helpful in query optimization?
Correct answer: C
You need to allow the user 'joe'@'example.com' the privilege to create and alter stored routines in the world database, but you do not want that user to be able to change any table definitions. The user already has the required permissions to access table data in the database.
Which of the following will achieve that?
Correct answer: D
Consider the following:
mysql> EXPLAIN SELECT Name FROM Country WHERE Population BETWEEN 1 AND 10000\G
*************************** 1. row ***************************
id: 1
select_type: SIMPLE
table: Country type:
range possible_keys:
i_pop key: i_pop
key_len: 4
ref: NULL
rows: 10
Extra: Using where
What is the meaning of the range value of the type column?
Correct answer: C
Is the following statement true or false? The username you use to connect to MySQL must be the same as the login used to access the operating system.
Correct answer: B
In regards to security, which of the following statements are true?
Correct answer: A
Which of the following statements are true regarding the slow query log?
Correct answers: A, B, F, H
Consider the following: mysql> SHOW STATUS LIKE 'Qcache%';
+-------------------------+--------+
| Variable_name | Value |
+-------------------------+--------+
| Qcache_free_blocks | 87 |
| Qcache_free_memory | 318442 |
| Qcache_hits | 11224 |
| Qcache_inserts | 19215 |
| Qcache_lowmem_prunes | 437 |
| Qcache_not_cached | 9155 |
| Qcache_queries_in_cache | 240 |
| Qcache_total_blocks | 924 |
+-------------------------+--------+
What can be derived from this output?
Correct answer: A