View Single Post
  #2  
Old 04-01-2002, 03:39 AM
Trumpcard
Demi-God
 
Join Date: Jan 2002
Location: Charlotte, NC
Posts: 2,614
Default

Sure...

Load the data into your database, then you can dump it back out with this command

mysqldump eq [tablename] > filename.sql

That will dump all your data in that table out though, not just your updated ones. That could then be sourced into anyone elses database to load your spawns in using this line

source filename.sql inside of mysql.
Reply With Quote