1.
In which ways can you set the query_cache_type option?
2.
Which of the following would be considered a good candidate table for compression?
3.
Consider the following EXPLAIN of a simple Join: mysql> EXPLAIN SELECT CountryList.Name, CityList.Name, CityList.Population -> FROM CountryList JOIN CityList ON CountryList.Code = CityList.Country -> WHERE CityList.Population > 8000000\G ************************** 1. row *************************** id: 1 select_type: SIMPLE table: CountryList type: ALL possible_keys: NULL key: NULL key_len: NULL ref: NULL rows: 239 Extra: ************************** 2. row *************************** id: 1 select_type: SIMPLE table: CityList type: ALL possible_keys: NULL key: NULL key_len: NULL ref: NULL rows: 4079 Extra: Using where How many rows need to be examined to perform the join?
4.
What will be the results of the following query? mysql> SELECT * FROM CountryLanguage PROCEDURE ANALYSE(10, 256)
5.
Why should one preferably group multiple statements for InnoDB tables within a transaction whenever it is possible?
6.
Which of the following best describes what may limit the number of simultaneous connections to the server? What are possible ways to increase it?
7.
Which key buffers are available for MyISAM tables?
8.
Doing SELECT COUNT(*) queries in InnoDB is efficient...
9.
Which of the following best describes when it might be advantageous to split a dynamic-row table into dynamic-row and fixed-row tables?
10.
Which of the following statements are true?