12 messages in com.mysql.lists.javaRe: Dumping DB data to a file; What's...
FromSent OnAttachments
Tim Endres03 Jan 2001 20:18 
Satish plakote04 Jan 2001 07:42 
Michael Besteck-Resulta04 Jan 2001 08:25 
Mari...@amsinc.com08 Jan 2001 00:47 
Gary Bentley08 Jan 2001 01:53 
Tim Endres08 Jan 2001 11:02 
jalal ud din08 Jan 2001 23:01 
Christopher Abney11 Jan 2001 15:40 
sch...@amgt.com11 Jan 2001 16:04 
Christopher Abney11 Jan 2001 18:15 
Carlos Garcia Jurado Suarez11 Jan 2001 18:25 
Igor Fedulov11 Jan 2001 18:28 
Subject:Re: Dumping DB data to a file; What's the cmd?
From:Christopher Abney (chri@gtri.gatech.edu)
Date:01/11/2001 06:15:54 PM
List:com.mysql.lists.java

Thanks for the help everyone.

I quickly got to the point where I then needed to know another command.

I dumped the data to a text file using: mysqldump -h <host_name> -u <user_name> -p <database_name> <table_name> I needed to transfer the data from the text file that the previous command created to another database on a different remote machine.

So I used the following command: mysql -h <host_name> -u <user_name> -p <database_name> < <text_file_name>

Chris