1Z0-908 Exam Question 41

Examine this command, which executes successfully:
mysqlpump --user=root --password > full_backup.sql
Which two databases will be excluded from this dump? (Choose two.)
  • 1Z0-908 Exam Question 42

    You must configure the MySQL command-line client to provide the highest level of trust and security when connecting to a remote MySQL Server.
    Which value of --ssl-mode will do this?
  • 1Z0-908 Exam Question 43

    Examine these statements, which execute successfully:
    CREATE ROLE r_world_rd;
    GRANT SELECT ON world.* TO r_world_rd;
    CREATE USER john IDENTIFIED BY 'P@ssw0rd';
    GRANT r_world_rd TO john;
    Examine these statements issued by user John:

    What is the reason for the error?