1Z1-888 Exam Question 141

A MySQL Server has been running an existing application successfully for six months. The my.cnf is adjusted to contain this additional configuration:

The MySQL Server is restarted without error.
What effect will the new configuration have on existing account?
  • 1Z1-888 Exam Question 142

    There are multiple instances of MySQL Server running on a single OS that is backed up using the mysqlbackupcommand.
    The /etc/my/cnf contains default values, for example, datadir=/var/lib/mysql/,with extra instances having their own separate my.cnffile (for example /etc/mysql/instanceN.cnf) overriding the defaults.
    A restore of the second instance is attempted from the mysqlbackup archive using this command:
    mysqlbackup --backup-dir=/opt/backup/mysql/instance2 copy-back
    Upon starting the second MySQL instance, you notice that the data does not match the expected backup.
    Which command-line option is required to successfully update the second instance?
  • 1Z1-888 Exam Question 143

    Consider the table people with the 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.)
  • 1Z1-888 Exam Question 144

    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.)
  • 1Z1-888 Exam Question 145

    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.)