Question 46

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? (Choose three.)
  • Question 47

    What is the best method for monitoring Group Replication conflict resolution?
  • Question 48

    After analysis on the slow query log on a high-end OLTP service, the table identified in the slow queries is:

    What are the two most likely reasons for the slowness given this output? (Choose two.)
  • Question 49

    Consider the join_buffer_sizeparameter in MySQL Server.
    Which two statements are true about the join buffer? (Choose two.)
  • Question 50

    You have the following in your my.cnf configuration file:
    [mysqld]
    default_authentication_plugin=sha256_password
    You want to create a new user who will be connecting from the IP address 192.0.2.10, and you want to use the authentication plug-in that implements SHA-256 hashing for user account passwords.
    Which two statements would create a user named webdesign for this IP address with the password of imbatman using a SHA_256 password hash?