What are three methods to reduce MySQL server exposure to remote connections? (Choose three.)
You created a backup of the world database with this command:
shell> mysqldump --opt world > dump.sql
Which two will import the data from dump.sql? (Choose two.)
Which statement is correct about how InnoDB storage engine uses disk space?
An employee cannot access the company database. You check the connection variables:
A look at the user privileges shows:
What is a valid explanation for why one of the users is unable to connect to the database?
You are contacted by a user who does not have permission to access a database table. You determine after investigation that this user should be permitted to have access and so you execute a GRANT statement to enable the user to access the table.
Which statement describes the activation of that access for the user?
You have a server that has very limited memory but has a very large table.
You will use mysqldump to back up this table.
Which option will ensure mysqldump will process a row at a time instead of buffering a set of rows?
Is it true that binary backups always take less space than text backups?
You have a MySQL instance with the following variables in the /etc/my.cnf file:
You issue these statements:
USE prices;
UPDATE sales.january SET amount=amount+1000;
An hour after excluding the statements, you realize that you made a mistake and you want to go to the binary log and look at the statements again.
Which statement is true? (Choose two.)
Which statement best describes the purpose of the InnoDB buffer pool?
Consider:
Which statement best describes the meaning of the value for the key_len column?
One of your colleagues is trying to make a change using the mysql command-line client for his or her application session.
The colleague instant messages you this command:
mysql> SET SESSION max_connections = 200;
Why does the command fail?
Which two statements are true about InnoDB auto-increment locking? (Choose two.)
Where does MySQL Linux RPM install the mysqld binary?
Which statement describes how the relay log works?
While attempting to set up a new replication slave on host ‘192.168.0.25’ with the user ‘replication’, you encounter this error:
What should you do to resolve this error?
You have successfully provisioned the latest MySQL 5.7 database instance on a physical host, to be added to an existing farm for use in a modern, high volume, ACID-compliant, OLTP website, which serves hundreds of DML transactions per second.
The default values of which two key variables do you change to ensure seamless operation of the database? (Choose two.)
You back up by using mysqldump.
Which configuration is required on the MySQL Server to allow point-in-time recovery?
You are using the Performance Schema to investigate replication on a slave which has a single master. The option slave-parallel-type is set to DATABASE.
Assume that all instruments and consumers are enabled and all threads are instrumented.
Which two facts can be concluded from the given output? (Choose two.)