| 
 I always do this before updating my database
 mysqldump is a binary program like mysql..
 The general format of it is  mysqldump <database name> <tablename>
 
 so, this should do it for you..
 mysqldump eq character_  >  character.sql
 mysqldump eq account > account.sql
 
 Then , after the new database is is place (new db.sql, or updated one)
 
 mysql eq < character.sql
 mysql eq < account.sql
 
 (assuming your database name is eq)
 
				__________________Quitters never win, and winners never quit, but those who never win and never quit are idiots.
 |