1.
What will be the effect of executing the following statement? REVOKE ALL PRIVILEGES FROM 'web'@'localhost'
2.
The account 'ulf'@'localhost' has previously been created with the statement GRANT ALL PRIVILEGES ON *.* TO 'ulf'@'localhost' IDENTIFIED BY 'w01f' This account should no longer be used, so you issue the following command: REVOKE ALL PRIVILEGES ON *.* FROM 'ulf'@'localhost' After executing this statement, you inspect the server and find that no clients are connected using that account. However, the next day you notice that the account 'ulf'@'localhost' is indeed connected to the server. Why is it still possible for the account 'ulf'@'localhost' to connect to the server?
3.
Which of the following best describes how the relay log works?
4.
With replication, what on the master is used to send commands to the slave?
5.
To prevent users from seeing the password used for FEDERATED tables, you should...
6.
Given the following MyISAM table structure: mysql> desc city; +-------------+----------+------+-----+---------+---------------+ | Field | Type | Null | Key | Default | Extra | +-------------+----------+------+-----+---------+---------------+ | ID | int(11) | | PRI | NULL | auto_increment| | Name | char(35) | | | | | | CountryCode | char(3) | | | | | | District | char(20) | | | | | | Population | int(11) | | MUL | 0 | | +-------------+----------+------+-----+---------+---------------+ and the following SQL statement: SELECT Population FROM city WHERE Population = 10000 ORDER BY Population LIMIT 5; Which of the following statements best describes how MySQL optimizer executes the query?
7.
Which of the following best describe how access control occurs in MySQL?
8.
The password for the existing user 'kofi'@'agric.comp1.com' must be changed to "Sakila". Which of the following will do that?
9.
As an administrator, you attempt to create the account 'joe'@'example.com' with the following statement: GRANT SELECT, UPDATE, DELETE ON world.* TO 'joe'@'example.com' Which of the following best describe the effects of issuing this statement?
10.
Which of the following steps are used to create database symbolic links on Windows?