Question 101

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?
  • Question 102

    An existing master-slave setup is currently using a delayed replication of one hour. The master has crashed and the slave must be "rolled forward" to provide all the latest data.
    The SHOW SLAVE STATUSindicates these values:
    RELAY_LOG_FILE=hostname-relay-bin.00004

    RELAY_LOG_POS=1383

    Which command set would make the slave current?
  • Question 103

    Which three allocate memory per thread in MySQL?
  • Question 104

    You inherited a busy InnoDB OLTP Instance with 100 schemas and 100 active users per schema.
    * Total dataset size is 200G with an average schema size of 2G.
    * The data is transient and is not backed up and can be repopulated easily.
    * Performance and responsiveness of the DB is paramount.
    * The query pattern for the DB instance is split 90/10 read/write.
    * DB host is dedicated server with 256G RAM and 64 cores.
    One of your colleagues made some recent changes to the system and users are now complaining of performance impacts.
    Which four configuration file edits might your colleague have performed to cause the negative DB performance? (Choose four.)
  • Question 105

    Which statement is correct about how InnoDB storage engine uses disk space?