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

Popular posts from this blog

c# - How to set Z index when using WPF DrawingContext? -

razor - Is this a bug in WebMatrix PageData? -

visual c++ - Using relative values in array sorting ( asm ) -