Re: win32 batch scripts

2002-10-08 Thread gerald_clark
mysqldump Todd Williamsen wrote: >i would like to know how to write batch script for dumping schema and >data into a sql file. This script should dump the whole database and >data > > >- >Before posting, please check: > http:

Re: win32 batch scripts

2002-10-08 Thread Peter Brawley
Todd, > i would like to know how to write batch script for dumping schema and > data into a sql file. This script should dump the whole database and > data Write this in a batch file: mysqldump [options] dbname >somename.sql where is the name of the db. See the manual for mysqldump optio

RE: win32 batch scripts

2002-10-08 Thread Randy Witt
> i would like to know how to write batch script for dumping schema and > data into a sql file. This script should dump the whole database and > data Here is what I use which is pretty straightforward unless I am missing something. d:\mysql\bin\mysqldump -u root --password=password --opt -A > d