Question 81

You have a MySQL replication setup and you intentionally stop the SQL thread on the slave.

What are two reasons that you may stop the SQL thread on the slave while keeping the I/O thread running? (Choose two.)
  • Question 82

    After rebooting the host, you attempt to start the mysqld service. You get the following error:
    Can't start the server: Bind on TCP/IP port: Address already in use
    What is the most likely cause of this error?
  • Question 83

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

    Suppose you are adding rows to a MyISAM table and the --datadirlocation runs out of disk space.
    What will happen when this occurs?
  • Question 85

    old_alter_table is disabled as shown.
    mysql> SELECT @@old_alter_table;

    Consider this statement on a RANGE-partitioned table:
    mysql> ALTER TABLE orders DROP PARTITION p1, p3;
    What is the outcome of executing this statement?