1.
Assuming that the account 'joe'@'%' does not already exist on the server, executing the statement mysql> CREATE USER 'joe'@'%' IDENTIFIED BY 'sakila' will have the following consequences:
2.
Which of the following best describes what the master.info file contains and how it is used?
3.
Consider the following: mysql> EXPLAIN SELECT Name FROM Country WHERE Code = 'CAN'\G ************************** 1. Row*************************** id: 1 select_type: SIMPLE table: Country type: const possible_keys: PRIMARY key: PRIMARY key_len: 3 ref: const rows: 1 Extra: Which of the following best describes the meaning of the value of the type column?
4.
Which of the following best describes the purpose of the max_allowed_packet parmeter, and when it is set?
5.
Which of the following best describes how the binary log might be helpful in query optimization?
6.
Suppose the key column of an EXPLAIN output is NULL. What does this mean?
7.
What is the effect of using WITH GRANT OPTION when executing the following statement? GRANT SELECT, UPDATE, DELETE ON world.* TO 'joe'@'example.com' IDENTIFIED BY 'Sakila' WITH GRANT OPTION
8.
Which of the following is/are valid reasons to consider using --skip-networking?
9.
Why should you be selective when granting the PROCESS privilege to an account?
10.
Connection strings in FEDERATED tables are stored...