Re: [PHP-DB] MYSQL Table Dump

2003-09-10 Thread John Almberg
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

Re: [PHP-DB] MYSQL Table Dump

2003-09-10 Thread Parker Morse
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

RE: [PHP-DB] MYSQL Table Dump

2003-09-10 Thread Jennifer Goodie
> 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

Re: [PHP-DB] MYSQL Table Dump

2003-09-10 Thread jeffrey_n_Dyke
http://www.mysql.com/doc/en/mysqldump.html "John Ryan"