1.
Is it true that binary backups always take less space than text backups?
2.
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
3.
Suppose you are adding rows to a MyISAM table and the --datadir location runs out of disk space. What will happen when this occurs?
4.
You have installed MySQL Server for the first time on your system. However, the data directory along with the tables in the mysql system database are missing. Which step do you perform to create the contents of the data directory?
5.
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?
6.
These details are shown when logged in to an account: Which set of statements would match the accounts shown?
7.
Host slave1 has ip address 192.0.2.10. Host slave2 has ip address 203.0.113.50 Examine these commands: Why did this error occur?
8.
You are setting up a new installation of MySQL Server 5.7 (a GA release.) You have used a ZIP or TAR package to ensure that the mysqld binary, along with its support files, such as plug-ins and error messages, now exist on the host. Assume that the default datadir exists on the host. You installed the binary in the default location (the default --basedir value) for your operating system. Which step should you perform before defining your own databases and database tables?
9.
Consider that local disk files are accessible via MySQL with commands such as: mysql> LOAD DATA LOCAL INFILE '/etc/passwd' INTO TABLE mypasswords; What change could be made to stop any breach via this insecurity?
10.
A simple master-to-slave replication is currently being used. This information is extracted from the SHOW SLAVE STATUS output: You execute a 'SHOW CREATE TABLE mytable" on the slave: The table mytable on the slave contains: You have issued a STOP SLAVE command. You have determined that it is safe to skip the transaction in this case. One or more statements are required before you can issue a START SLAVE command to resolve the duplicate key error. Which statement should be used?