This is a tool created to dump and restore MySql and MariaDb.
- Download release
-
Dump.ps1
does two simple things.- Dump all the structure database
- Dump all the content of database
$user = '' $password = '' $address = ''
$ignoredDataTables = @( 'table1', 'table2' )
dumpDatabase "data_base" $ignoredDataTables
-
restore.ps1
restores the.sql
created bydump.ps1
$user = '' $password = '' $address = ''
.\restore.ps1 "data_base.sql"