Re: Backup database with MyISAM and InnoDB tables together

2005-06-19 Thread Gleb Paharenko
Hello. Among other suggestions think about such way. If you MyISAM and InnoDB tables are used by different applications or consistent state between them doesn't play big value, and the size of MyISAM tables is low enough, you could perform the dump in two steps listing the tables of the s

RE: Backup database with MyISAM and InnoDB tables together

2005-06-17 Thread Gordon Bruce
ucture. Our table defintitions are relatively stable so we don't do it every night. You could put it in the cron job to do it with the backup. -Original Message- From: Scott Plumlee [mailto:[EMAIL PROTECTED] Sent: Friday, June 17, 2005 12:36 PM To: mysql@lists.mysql.com Subject: Re: Ba

Re: Backup database with MyISAM and InnoDB tables together

2005-06-17 Thread Scott Plumlee
> > -Original Message- > From: Scott Plumlee [mailto:[EMAIL PROTECTED] > Sent: Friday, June 17, 2005 10:21 AM > To: mysql@lists.mysql.com > Subject: Backup database with MyISAM and InnoDB tables together > > I'm not clear on best practice to use on a database containing both > MyISAM and I

RE: Backup database with MyISAM and InnoDB tables together

2005-06-17 Thread Gordon Bruce
If you are runing binary log and do a FLUSH LOGS mysqldump --opt --skip-lock-tables MyISAM table names FLUSH LOGS mysqldump --opt --single-transaction INNODB table names You have a recoverable state with the combination of the mysqldump file and the binary log file that was started by the 1st