Question 91

You have a config file for a running DB with this excerpt:
[mysqld]
tmp_table_size=16M
sort_buffer_size=256k
To address a query performance problem of connecting to the DB from an application on another host, you log in and make these changes to the DB:
mysql> SET GLOBAL tmp_table_size=32000000;
mysql> SET sort_buffer_size=2000000;
This solves the problem with your queries. However, later the DB instance is restarted and the performance problem returns.
Which three best describe this scenario?
  • Question 92

    The MySQL installation includes the mysql_config_editor utility for managing login paths stored in a
    .mylogin.cnf file.
    Which two are true about the login path feature? (Choose two.)
  • Question 93

    You will configure a MySQL Server to act as a replication master. Which two options must be configured correctly to allow this?
  • Question 94

    Consider the CHECK TABLE command.
    In which two situations should this command be used? (Choose two.)
  • Question 95

    A master-slave replication setup has the slave showing this error:

    On the master server, the binary logs show:

    What could explain this error? (Choose two.)