To move mysql database from one server to another i have used mysqldump.
QUOTE
1) dump your database from the old server by mysqldump :
mysqldump -h host -u user -p database > dump_file
2) import the sql and data to the database via :
mysql -h host -u user -p database < dump_file
than transfered database successfully.
mysqldump -h host -u user -p database > dump_file
2) import the sql and data to the database via :
mysql -h host -u user -p database < dump_file
than transfered database successfully.
But my question is if i want to transfer/copy records/data of a single table then how should i do ?
Thanks in Advance...