PDA

View Full Version : Saving Character Info for an Upgrade


joshkincheloe
03-17-2003, 03:51 AM
Is there a way to export character information if I want to upgrade to the latest version of EQEmu?

Trumpcard
03-17-2003, 04:07 AM
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)

joshkincheloe
03-17-2003, 06:32 AM
Thank you,
I'll give that a try.

Bardboy
03-17-2003, 06:46 AM
I've been looking for a way to make mysqldump use REPLACE INTO instead of INSERT INTO, does anyone know if this is possible?