Alright, so I'm moving servers and my old server does not offer SSH/Telnet Access. I've checked their knowledgebase and everything. Says I can't. Is it possible to dump the SQL another way so I can transfer it?
I do a base copy by a command file. @echo off c:\webserver\mysql\bin\mysqldump.exe --all-databases -uroot -proot > full_dump.sql arj m full_dump full_dump.sql Code (markup):
If the DB is bigger then 50MB then you won't be able to do it from PhpMyAdmin so better go for this tool - http://www.mysqldumper.net/
if you have an access on the Cpanel, just configure to let your IP address to connect to your database. The use HeidiSQL to dump your data.
The first: mysqldump -u YourDB -p YourPassword > YourDB.sql After, you will enter your password DB. Hope can help you