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
E. Use PURGE BINARY LOGS to <binlog_name>.
F. Use SET GLOBAL binlog_expire_logs_seconds=<value> and run the FLUSH BINARY LOGS command.
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
A. You use the MyISAM storage engine for most common tables.
A. You use the MyISAM storage engine for most common tables.
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
D. Take your backup from a slave of the MySQL system.
A MySQL server is monitored using MySQL Enterprise Monitors agentless installation.
Which three features are available with this installation method? (Choose three.)
CEG
A. MySQL Replication monitoring
C. MySQL Query Analysis data
E. security-related advisor warnings
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
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.
Examine this command and output:
Which two options will improve the security of the MySQL instance? (Choose two.)
CE
A. Remove group read/write privileges from the private_key.pem file.
E. Change the parent directory owner and group to mysql.
Examine this command, which executes successfully:
cluster.addInstance(<user>@<host>:<port>, {recoveryMethod: clone})
Which three statements are true? (Choose three.)
ADF
A. The account used to perform this recovery needs the BACKUP_ADMIN privilege.
B. A target instance must exist, then it will be provisioned with data from an instance already in the cluster and joined to the cluster.
E. A new instance is installed, initialized, and provisioned with data from an instance already in the cluster and joined to the cluster.
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
B. key_buffer_size
C. table_open_cache
E. innodb_buffer_pool_size
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
E. Replication will work.
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
A. Executing SET GLOBAL innodb_row_format=COMPRESSED and then ALTER TABLE transactions will free up disk space.
E. The transactions table was created with innodb_file_per_table=OFF.
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
B. The cluster is running and there is at least one ONLINE instance.
Which three actions are effective in capacity planning? (Choose three.)
BFG
B. monitoring OS resources for patterns
F. basing expected growth on an average of the last 3 years
G. consulting the application team about any future projects and use
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
C. It restores files from the backup directory to their original MySQL server locations.
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
B. ARCHIVE
E. MEMORY
F. MyISAM
The correct answer is A,C
InnoDB and NDB are the two storage engines that provide a consistent view of the data at any given moment. They achieve this through mechanisms like multi-version concurrency control (MVCC), ensuring that queries see a stable snapshot of the data even while other transactions are modifying it
B and E are correct
NDB,InnoDB