answer is e f
Which two storage engines provide a view of the data consistent with the storage system at any
moment? (Choose two.)
AC
Reference:
https://zetcode.com/mysql/storageengines/
Your MySQL installation is running low on space due to binary logs. You need to reduce your log
space usage urgently.
Which two sets of actions when completed will accomplish this? (Choose two.)
AD
Reference:
https://severalnines.com/database-blog/my-mysql-database-out-disk-space
answer is e f
A colleague complains about slow response time on your website.
Examine this query and output:
What is the most likely cause for the high number of lock waits?
B
Reference:
https://severalnines.com/database-blog/how-fix-lock-wait-timeout-exceeded-error-
mysql
You have a MySQL system with 500 GB of data that needs frequent backups.
You use a mix of MyISAM and InnoDB storage engines for your dat
a. Examine your backup requirement:
The MySQL system being backed up can never be unavailable or locked to the client applications.
The recovery from the backup must work on any system.
Only 1 hour of data can be lost on recovery of the backup.
Which option fulfills all backup requirements?
C
answer is D
A MySQL server is monitored using MySQL Enterprise Monitors agentless installation.
Which three features are available with this installation method? (Choose three.)
CEG
You are using mysqlcheck for server maintenance.
Which two statements are true? (Choose two.)
A. The mysqlcheck --check --all-databases command takes table write locks while performing a series
of checks.
B. The mysqlcheck --optimize --all-databases command reclaims free space from table files.
C. The mysqlcheck --repair --all-databases command can repair an InnoDB corrupted table.
D. The mysqlcheck command can be renamed mysqlrepair so that it repairs tables by default.
E. The mysqlcheck --analyze --all-databases command performs a series of checks to spot eventual
table corruptions.
DE
(none)
Explanation
Examine this command and output:
Which two options will improve the security of the MySQL instance? (Choose two.)
CE
Examine this command, which executes successfully:
cluster.addInstance(<user>@<host>:<port>, {recoveryMethod: clone})
Which three statements are true? (Choose three.)
ADF
Which three settings control global buffers shared by all threads on a MySQL server? (Choose three.)
ABF
Reference:
https://docs.oracle.com/cd/E17952_01/mysql-5.7-en/server-system-variables.html
You reconfigure and start a slave that was not replicating for several days.
The configuration file and CHANGE MASTER command are correct. Examine the GTID information
from both master and slave:
Which statement is true?
A
Reference:
https://bugs.mysql.com/bug.php?id=86643
Your MySQL server was upgraded from an earlier major version.
The sales database contains three tables, one of which is the transactions table, which has 4 million
rows.
You are running low on disk space on the datadir partition and begin to investigate.
Examine these commands and output:
Which two statements are true? (Choose two.)
AE
An attempt to recover an InnoDB Cluster fails.
Examine this set of messages and responses:
host3:3377 ssl JS > dba.rebootClusterFromCompleteOutage() Reconfiguring the default cluster from
complete outage
The instance host1:3377' was part of the cluster configuration. Would you like to rejoin it to the
cluster? [y/N]: y
The instance host2:3377 was part of the cluster configuration. Would you like to rejoin it to the
cluster? [y/N]: y
Dba.rebootClusterFromCompleteOutage: The active session instance isnt the most updated in
comparison with the ONLINE instances of the Clusters metadat
a. Please use the most up to date instance: host1:3377. (RuntimeError)
Which statement is true?
C
Which three actions are effective in capacity planning? (Choose three.)
BFG
Examine this command, which executes successfull
mysqlbackup --defaults-file=/backups/server-my.cnf --backup-dir=/backups/full
copy-back
Which statement is true about the copy-back process?
AC
Reference:
https://dev.mysql.com/doc/mysql-enterprise-backup/3.11/en/restore.restore.html
Examine these statements, which execute successfully:
TRUNCATE test; BEGIN;
INSERT INTO test(id, name) VALUES(1, Hello); ROLLBACK;
SELECT id FROM test;
Which three storage engines would return a nonempty recordset for the test table when executing
the statements? (Choose three.)
ADF
Reference:
https://dev.mysql.com/doc/refman/5.6/en/blackhole-storage-engine.html