View Single Post
  #3  
Old 03-14-2010, 02:55 PM
Congdar
Developer
 
Join Date: Jul 2007
Location: my own little world
Posts: 751
Default

Your mysqldump command needs the -R switch to pick up the methods.
I think that method is no longer used anyway.
Get the latest sql files as some have been updated.

load_bots.sql should be:
Code:
source player_tables/botguildmembers.sql; 
source player_tables/bots.sql; 
source player_tables/botpetstatepersists.sql; 
source player_tables/botinventory.sql; 
source player_tables/botbuffs.sql; 
source player_tables/botadventuring.sql; 
source player_tables/botgroups.sql;
use this:
Code:
DROP DATABASE IF EXISTS eqtest;
CREATE DATABASE eqtest;
USE eqtest;
source peqdb_rev1265.sql;
source load_player.sql;
source load_bots.sql;
Then try your test using the -R switch with mysqldump.

Last edited by Congdar; 03-14-2010 at 03:04 PM..
Reply With Quote