Question 86

What three are correct statements about MySQL backups? (Choose three.)
  • Question 87

    A MySQL replication slave is set up as follows:
    * Uses all InnoDB tables
    * Receives ROW-based binary logs
    * Has the read-only option
    The replication slave has been found in an error state.
    You check the MySQL error log file and find these entries:

    What are two possible causes for this error to occur? (Choose two.)
  • Question 88

    Which two capabilities are granted with the SUPER privilege? (Choose two.)
  • Question 89

    You have just created a replication slave from a backup of the master made with mysqldump:

    You try to log in to the slave with the application user, but fail as follows:

    The login works on the master.
    Which two changes to the process can fix the issue?
  • Question 90

    The following grants were executed:
    GRANT CREATE ROUTING ON sales.* TO 'webadmin'@'%';
    GRANT ALTER ON PROCEDURE sales.myproc TO 'webadmin'@'%';
    A user successfully connects to the database as webadmin and created a stored procedure named get_reports.
    The next day, the user logs in again as webadmin and wants to delete the stored procedure named get_reports, and therefore, issues the following statement:
    USE sales;
    DROP PROCEDURE IF EXISTS get_reports;
    What is the result of executing the statement?