The validate_password plugin is loaded and displays the following settings in global variables:
Mysql> SHOW VARIABLES LIKE ‘validate_password%’;
When attempting to set your password, you get the following error:
Mysql> SET PASSWORD = PASSWORD (‘Hoverl@%’);
ERROR 1819 (HY000): Your password does not satisfy the current policy requirements
What is the cause of the error?
Consider the events_% tables in performance Schema.
Which two methods will clear or reset the collected events in the tables?
Consider the query:
Mysql> SET @run = 15;
Mysql> EXPLAIN SELECT objective, stage, COUNT (stage)
FROM iteminformation
WHERE run=@run AND objective=’7.1’
GROUP BY objective,stage
ORDER BY stage;
The iteminformation table has the following indexes;
Mysql> SHOW INDEXES FROM iteminformation:
This query is run several times in an application with different values in the WHERE clause in a growing data set.
What is the primary improvement that can be made for this scenario?