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
|