When performing diagnostic functions on a server should excessive start and stop messages be looked for in the error log, and why?
Reveal answer details Close answer details
Correct answerD
Oracle · 1Z0-874
Preview real exam questions, verified answers and available explanations before choosing a study plan.
|
Single choice
When performing diagnostic functions on a server should excessive start and stop messages be looked for in the error log, and why? Reveal answer details Close answer detailsCorrect answerD
Single choice
Consider the following: mysql> SELECT * FROM CountryLanguages; +----+---------------+-------------+----------+ | ID | CountryName | CountryCode | Language | +----+---------------+-------------+----------+ | 1 | United States | USA | English | | 2 | United States | USA | Spanish | | 3 | Mexico | MEX | Spanish | | 4 | Canada | CAN | English | | 5 | Canada | CAN | French | +----+---------------+-------------+----------+ Which of the following describe how this table would look correctly normalized? Reveal answer details Close answer detailsCorrect answerA
Single choice
Which key buffers are available for MyISAM tables? Reveal answer details Close answer detailsCorrect answerA
Single choice
Which factors can be considered in a stored routine to allow or disallow access or modification of data? Reveal answer details Close answer detailsCorrect answerB
Single choice
When working with replication, why might you want to stop the SQL thread on the slave while keeping the I/O thread running? Reveal answer details Close answer detailsCorrect answerC
Single choice
Which of the following best describe how access control occurs in MySQL? Reveal answer details Close answer detailsCorrect answerA
Single choice
As an administrator, you attempt to create the account 'joe'@'example.com' with the following statement: GRANT SELECT, UPDATE, DELETE ON world. * TO 'joe'@'example.com' Which of the following best describe the effects of issuing this statement? Reveal answer details Close answer detailsCorrect answerA
Single choice
How can the SHOW PROCESSLIST command be helpful when optimizing queries? Reveal answer details Close answer detailsCorrect answerC
Single choice
Which of the following statements best describe the indexes supported by the MEMORY storage engine, and their general characteristics? Reveal answer details Close answer detailsCorrect answerC
Single choice
Which of the following best describes the purpose of the InnoDB buffer pool? Reveal answer details Close answer detailsCorrect answerA
Single choice
Which of the following best describe the general steps involved in normalization? Reveal answer details Close answer detailsCorrect answerA
Single choice
Which of the following statements are true regarding the structure of grant tables in new distributions? Reveal answer details Close answer detailsCorrect answerB
Single choice
Consider the following: mysql> EXPLAIN SELECT * FROM City WHERE CountryCode = 'USA'\G *************************** 1. row *************************** id: 1 select_type: SIMPLE table: City type: ALL possible_keys: NULL key: NULL key_len: NULL ref: NULL rows: 4079 Extra: Using where What does the possible_keys column in this output denote? Reveal answer details Close answer detailsCorrect answerB
Single choice
Consider the following two partial outputs of the SHOW VARIABLES command on a master and slave server: Master: +--------------------------+---------------------------+ | Variable_name | Value | +--------------------------+---------------------------+ | connect_timeout | 5 | | log_bin | ON | | max_connections | 100 | | shared_memory_base_name | MYSQL | | server_id | 2 | | tmp_table_size | 5242880 | | version | 5.0.13-rc-nt | Slave: +--------------------------+---------------------------+ | Variable_name | Value | ---------------------------+---------------------------+ | connect_timeout | 5 | | log_bin | ON | | max_connections | 10 | | shared_memory_base_name | MYSQL | | tmp_table_size | 4266336 | | version | 5.0.16-rc-nt | There is apparently a problem with the slave replicating from the master. Which of the following best describes the most likely problem? Reveal answer details Close answer detailsCorrect answerA
Single choice
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? Reveal answer details Close answer detailsCorrect answerC
Single choice
In which ways can you set the query_cache_type option? Reveal answer details Close answer detailsCorrect answerA
Single choice
Which of the following statements about MEMORY tables are true? Reveal answer details Close answer detailsCorrect answerD
Single choice
Which of the following optimizations could be made based on data collected in the slow query log? Reveal answer details Close answer detailsCorrect answerC
Single choice
Consider the following EXPLAIN of a simple Join: -> 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? Reveal answer details Close answer detailsCorrect answerE
Single choice
Why is --bind-address an important security option? Reveal answer details Close answer detailsCorrect answerA
Single choice
Which of the following best describes the purpose of the max_allowed_packet parmeter, and when it is set? Reveal answer details Close answer detailsCorrect answerA |