Re: [PHP] OT - php/mysql/cron

2002-06-03 Thread Tobyn Baugher
On Mon, 2002-06-03 at 13:18, Kelly Meeks wrote: Any way to use cron to automate the mysqldumping of databases on a nighly basis? Any examples would be greatly appreciated. This line's gonna wrap, but it all goes on the same line :P 0 0 * * * /usr/local/bin/mysqldump -u username

RE: [PHP] OT - php/mysql/cron

2002-06-03 Thread James E. Hicks III
DATABASETOBACKUP | gzip /backup_path/backup.sql.gz -Original Message- From: Tobyn Baugher [mailto:[EMAIL PROTECTED]] Sent: Monday, June 03, 2002 1:29 PM To: [EMAIL PROTECTED] Subject: Re: [PHP] OT - php/mysql/cron On Mon, 2002-06-03 at 13:18, Kelly Meeks wrote: Any way to use cron

Re: [PHP] OT - php/mysql/cron

2002-06-03 Thread Steve Werby
Tobyn Baugher [EMAIL PROTECTED] wrote: This line's gonna wrap, but it all goes on the same line :P 0 0 * * * /usr/local/bin/mysqldump -u username --password=password database outputfile Obviously replace username, password, database, and outputfile with the values you want to use for