View Single Post
  #4  
Old 03-23-2003, 08:21 AM
devlor's Avatar
devlor
Sarnak
 
Join Date: Mar 2003
Location: Georgia, USA
Posts: 38
Default

Great work Drawde! I'll check this out ASAP.

BTW, you got your slashes mixed up in the links you gave above. The corrected (clickable) links are:

http://www.edwardpinniger.bctalk.net...ta1.1beta5.zip
http://www.edwardpinniger.bctalk.net/eq/44dr1.zip

dangerdan30: To back up/restore your old database, do the following:

Code:
Go to the mysql\bin directory from a command prompt window. 

Type mysqldump <put your database name here> > somefilenameyoulike.SQL 

Example. If my database was named eq and the file I wanted it put in was eqbackup.sql - I would type: 

mysqldump eq > eqbackup.sql 

(note:check the file and make sure the contents are there and not some error text). 

To restore it, you would go into a mysql prompt. 
Drop your existing database with: drop database <yourdatabasename>; 

Create the database again: create database <yourdatabasename>; 

and then source the database with your file... 
use <yourdatabasename>; 
source <path to somenameyoulike.sql>somenameyoulike.sql
__________________
EQEmu In-Game Help modification
Si fractum non sit, noli id reficere.
Reply With Quote