Comments - Copying Tables Between Different MariaDB Databases and MariaDB Servers

6 years, 4 months ago Vasiliy Zverev

FLUSH TABLES table_name FOR EXPORT
sets internal flag to check table integrity on first access to copied table (which may take some time) while
FLUSH TABLES table_name WITH READ LOCK
doesn't. I tested it on MyISAM tables.

 
Content reproduced on this site is the property of its respective owners, and this content is not reviewed in advance by MariaDB. The views, information and opinions expressed by this content do not necessarily represent those of MariaDB or any other party.