sql_dump_splitter: Split SQL dump produced by mysqldump with following options: --single-transaction --no-autocommit --opt options are -w for working directory, where created folders and splitted file will be located -m max insertion per file This script will produce at least per table found in the dump file, - One table structure. - As much as needed files which contains (-m parameter value) max insert lines. as example for table `foo`: ./foo/foo_table_strcuture.sql /foo_0000.sql /foo_0001.sql /... sql_dump_importer: Utility to import into mysql directory strcuture produced by sql_dump_splitter. options are -H host -u user -P port -p password -b mysql binary path mandatory paramters are: database_id and working_directory