So, say you want to dump the character data in a database called eq.
mysqldump eq character_ > character.sql
mysqldump eq account > account.sql
mysqldump eq faction_values > faction_values.sql
That will create the source files for those 3 tables. Then to put them back in
mysql eq < filename
will reload them...
Sure, it wont ex/import import 1 character, it will ex/import all characters currently saved in the database.
|