How to Export All Tables?

A

Anonymous

Guest
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
 
egami said:
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

what do you mean shell account?
 
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 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..
 
Back
Top