1Z0-888 Exam Question 36

A MySQL database uses all InnoDB tables and is configured as follows;

You will be setting up a replication slave by using mysqldump. You will need a consistent backup taken from your running production server. The process should have minimal impact to active database connections.
Which two arguments will you pass to mysqldump to achieve this? (Choose two.)
  • 1Z0-888 Exam Question 37

    Which three options are most likely to be changed for production form their default values?
  • 1Z0-888 Exam Question 38

    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.)
  • 1Z0-888 Exam Question 39

    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 webadminand created a stored procedure named get_reports.The next day, the user logs in again as webadminand 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?
  • 1Z0-888 Exam Question 40

    Is it true that binary backups always take less space than text backups?