View Single Post
  #4  
Old 06-11-2003, 06:04 AM
Muuss
Dragon
 
Join Date: May 2003
Posts: 539
Default

You may have to add the database name before the table_name statement :

mysqldump database_name table_name > file.sql

ex:

mysqldump eq character_ > mychars.sql

if u want to compile several tables in the same file, replace > by >>, ie :

mysqldump eq items >> mychars.sql

will add the items after the characters...

Muuss