mysql - Is "FLUSH TABLES, PRIVILEGES;" the same as "FLUSH TABLES; FLUSH PRIVILEGES;"? -
in mysql, executing flush tables, privileges; have same effect executing flush tables; , executing flush privileges;? also, hold true of flush options (flush logs; etc.)?
taken http://dev.mysql.com/doc/refman/5.1/en/flush.html
syntax
flush [no_write_to_binlog | local] flush_option [, flush_option] ... which means upon executing command flush tables, privileges; flush tables followed privileges.
yes should same as
flush tables; flush privileges;
Comments
Post a Comment