mysqlsh dump and load full schema
P粉662802882
P粉662802882 2024-03-26 15:02:15
0
1
470

I want to use mysqlsh to perform the following operations:

  1. Dumps the complete schema of a given database (not just tables, but functions, triggers and everything related to this database schema, same as mysqldump -R DATABASE > DATABASE.sql )
  2. Load this complete schema into the brand new database I just created (something like mysql --database=NEWDATABASE < DATABASE.sql
P粉662802882
P粉662802882

reply all(1)
P粉764785924

I think you can just use a text editor to edit the .sql file before trying to load it.

This tool actually dumps the schema and imports it to a different MySQL instance, but keeps the schema name the same.

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template