Im on a not so great shared hosting plan. I cant get file privileges for mysql so i cant do SELECT INTO outfile, and i dont have command line access so I cant use mysqldump. What can I do to get a decent table backup?
views:
31answers:
2
+2
A:
You say you can't access command line, I think you mean "on the server". But what about the client side ?
From the client, you could still call mysqldump with the '-h' switch to dump locally a table from your server, couldn't you ?
mysqldump -ufoo -pbar -hyourserver schema table
That should work if your server is not bound to localhost and you have defined accounts correctly.
Xavier Maillard
2010-06-15 21:47:25
A:
Can you install phpMyadmin? If you can, you can try to export through it.
ozruiz
2010-06-15 21:48:33