In MySQL, does executing FLUSH TABLES, PRIVILEGES; have the same effect as executing FLUSH TABLES; and then executing FLUSH PRIVILEGES;? Also, would this hold true of any flush options (FLUSH LOGS; etc.)?
In MySQL, does executing FLUSH TABLES, PRIVILEGES; have the same effect as executing FLUSH
Share
Taken from http://dev.mysql.com/doc/refman/5.1/en/flush.html
Syntax is
Which means upon executing the command
FLUSH TABLES, PRIVILEGES;it will flush all tables followed by privileges.Yes should be same as