How about piping the output to a file? As in:
mysqldump [OPTIONS] database [tables] >outfile
Or using the --tab option?
-- John
Jeffrey N Dyke wrote:
http://www.mysql.com/doc/en/mysqldump.html
On Wednesday, Sep 10, 2003, at 16:23 US/Eastern, John Ryan wrote:
Is there any way *from the command line* to get a dump of a mysql
table and
have it saved to a local file, instead of standard output
Have a look at "man mysqldump", particularly the "examples" section.
If you're already dumping th
> Is there any way *from the command line* to get a dump of a mysql
> table and
> have it saved to a local file, instead of standard output
from running mysqldump --help
-r, --result-file=... Direct output to a given file. This option should be
used in MSDOS, because it p
http://www.mysql.com/doc/en/mysqldump.html
"John Ryan"