View Single Post
  #4  
Old 12-15-2004, 06:38 AM
Muuss
Dragon
 
Join Date: May 2003
Posts: 539
Default

Code:
mysql -u root mysql
When you sourced tributes.sql, you created the tributes table into the mysql database, not in the eq database, that's why you get the error message saying tributes table doesn't exist.

log in with that command instead :

Code:
mysql -u root eq
ps : don't forget to drop the tributes table from your mysql database.

Code:
use mysql;
drop tributes;
__________________
Muuss - [PEQGC] Dobl, the ogre that counts for 2 !
http://www.vilvert.fr/page.php?id=10
Reply With Quote