How to Export All Tables?
I have 352 tables how can i export all these tables and import it? It seems that it doesn't export all tables.
I'm not sure about PHPmyAdmin, but you can do the whole thing in one smooth swoop through your shell account.
mysql -pPassword {databasename} > filename.ext
mysql -pPassword {databasename} > filename.ext
what do you mean shell account?egami wrote:I'm not sure about PHPmyAdmin, but you can do the whole thing in one smooth swoop through your shell account.
mysql -pPassword {databasename} > filename.ext
He means that you have to log into your server command line (via SSH) and enter the command.
You could also use PHPMyAdmin. Just select the database then click export and choose ALL of the tables.
You could also use PHPMyAdmin. Just select the database then click export and choose ALL of the tables.
you will click on database name then click on export it wil export full database and import database it will import all the tables in one time..