Thread: Characters
View Single Post
  #5  
Old 06-02-2003, 09:03 AM
IADestavator
Sarnak
 
Join Date: May 2003
Posts: 48
Default

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.