Mysql – Export massive MySQL database, from a shared level hosting account

databaseexportMySQL

I need to export a huge database, with thousands of tables and millions of rows. I'm on shared hosting so I can't use command line exports, and I really have no easy way to get to this data other than through phpMyAdmin or php. cPanel's default "export database" tool doesn't work, it exports a blank database. phpMyAdmin's export as gzip or zip also gives a blank database.

I've been downloading this one SQL file for a few hours now, and it's only at 114 mb of approximately 2 gb of actual data.

What's the best way for me to (safely) export all my data? This is really a huge pain and no data can be lost, but it must be exported out. Are there any scripts or programs I can use?

Best Answer

Can you access the database directly? MySqlDump.exe will work remotely in a pinch.

Related Topic