| Re:Next question: How do I backup my database? Yes. Go to the export tab and select "Structure and data", "Select All", "Save As" and optionally a compression scheme.
All it really does is create CREATE TABLE statements and INSERT statement for all the rows. So technically you can use the script to export to any other SQL database as well.
To restore go to the SQL tab and browse the file you created.
I've successfully transferred entire databases between providers using this simple tool. |