Question 111

You have a MySQL replication setup and you intentionally stop the SQL thread on the slave.

What are two reasons that you may stop the SQL thread on the slave while keeping the I/O thread running?
  • Question 112

    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? (Choose two.)
  • Question 113

    What is the order of tables shown in an EXPLAIN output?
  • Question 114

    A MySQL instance is running on a dedicated server. Developers access the server from the same network subnet. Users access the database through an application that is running on a separate server in a DMZ.
    Which two will optimize the security of this setup? (Choose two.)
  • Question 115

    Consider the table people with this definition:

    The application uses a query such as:
    SELECT * FROM people WHERE YEAR(Birthday) = 1980;
    The query is not using an index.
    Which two methods can be used to allow the query to use an index? (Choose two.)