problems with mysqldump

wxdqz

New Member
I have to move a database from one server to another..
to dump the file i did this

*******
mysqldump -u user -p DATABASE > database.sql
*******

and the database.sql file was created...

then i went to the new server and did the inverse dump

********
mysqldump -u user -p database < database.sql
********

and recieved this info:

**************
# MySQL dump 6.8
#
# Host: localhost Database: poketienda
#--------------------------------------------------------
# Server version 3.22.30

*******

No data was copied to the existing poketienda database.

Can someone help !?
 
Back
Top