A general purpose MySQL instance is configured with the following options:
--slow-query-log
--long-query-time=.0001
--log-queries-not-using-indexes
--log-slow-admin-queries
--general-log
--log-bin
--binlog-format=STATEMENT
--innodb-flush-log-at-trx-commit=1
Which three statements are true for most workloads? (Choose three.)
You have a consistent InnoDB backup created with mysqldump, the largest table is 50 GB in size.
You start to restore your backup with this command;
shell> mysql -u root -p < backup.sql
After 30 minutes, you notice that the rate of restore seems to have slowed down. No other processes or external factors are affecting server performance.
Which is the most likely explanation for this slowdown?
Which MySQL utility copies the master instance to a slave instance on the same host?
Consider a replication setup where a snapshot of the replication status shows:

Which statement is true?
Which statement is true about using Microsoft Windows Cluster as a platform for MySQL?
Consider the index information for the dept_emp table in the employee's schema:

Which two conclusions can be made based on the output of the query?
An existing master-slave setup is currently using a delayed replication of one hour. The master has crashed and the slave must be "rolled forward" to provide all the latest data.
The SHOW SLAVE STATUSindicates these values:
* RELAY_LOG_FILE=hostname-relay-bin.00004
* RELAY_LOG_POS=1383
Which command set would make the slave current?
Why should you be selective when granting the PROCESS privilege to an account?
Consider the join_buffer_size parameter in MySQL Server.
Which two statements are true about the join buffer?
Group Replication uses global transaction identifiers to track executed transactions and are fundamental in avoiding transaction conflict. Which additional three steps help in avoiding conflicts in group replication?
You are creating a strategy for backing up MySQL using a cold binary backup. The MySQL instance is a replication master with global transaction identifiers (GTIDs) enabled and it uses Transparent Data Encryption (TDE). Other than the configuration required to make the instance a replication master and enabled GTIDs and TDE, the instance is using all default settings.
The requirements for the backup are:
- It must be possible to rebuild the instance using the backup.
- It must be verified.
- It must allow for a catastrophic hardware failure.
Which four steps must be included in the backup strategy? (Choose four.)
Given these table definitions and the explain plan:

Which ALTER TABLE statement will improve the performance of the query?
What is the best method for monitoring Group Replication conflict resolution?
There are multiple instances of MySQL Server running on a single OS that is backed up using the mysqlbackup command.
The /etc/my/cnf contains default values, for example, datadir=/var/lib/mysql/, with extra instances having their own separate my.cnf file (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?