Re: [Dbmail] MyISAM to InnoDB

2006-10-06 Thread Adam Kosmin
Hello all, Does anyone know if this procedure has been documented anywhere? Best, Adam jurgen wrote: One thing to watch out for is the innodb_data_file_path sting. That controls how big individual innodb files are allowed to get, and if they're allowed to grow. The default on my system

Re: Re: [Dbmail] MyISAM to InnoDB

2006-07-17 Thread jurgen
One thing to watch out for is the innodb_data_file_path sting. That controls how big individual innodb files are allowed to get, and if they're allowed to grow. The default on my system (Gentoo 2006.0) was an unreasonably small number, and importing my initial load of messages would always fail

[Dbmail] MyISAM to InnoDB

2006-07-10 Thread Simon
Hi There, I am running MyISAM tables in mysql 4.1 with dbmail 2.0.9-1 on debian sarge. I am reaching a 4GB limit on the messageblks table and am going to move from MyISAM to innodb tables. As instructed i should do the following: set unique_checks=0; alter table dbmail_users type=innodb; alter

Re: [Dbmail] MyISAM to InnoDB

2006-07-10 Thread Paul J Stevens
Simon, Simon wrote: set unique_checks=0; alter table dbmail_users type=innodb; ... etc ... set unique_checks=1; This seems to have worked fine on my dev server, shutting down dbmail before doing so... My question is: Is there any small tweaks needed within mysql before doing this?

Re: [Dbmail] MyISAM to InnoDB

2006-07-10 Thread Simon
On 7/10/06, Paul J Stevens [EMAIL PROTECTED] wrote: Simon, Simon wrote: set unique_checks=0; alter table dbmail_users type=innodb; ... etc ... set unique_checks=1; This seems to have worked fine on my dev server, shutting down dbmail before doing so... My question is: Is there any

[Dbmail] MyISAM to InnoDB

2006-03-20 Thread Jorge Bastos
DecimalHi, There's no problem to set dbmail tables from MyISAM to InnoDB directly? Jorge Bastos

Re: [Dbmail] MyISAM to InnoDB

2006-03-20 Thread Matthew Sayler
On Mon, Mar 20, 2006 at 07:27:03PM -, Jorge Bastos wrote: I see, i'll just stop postfix and dbmail when i'll do it Just one more question to make sure i do the right thing, how do you advise to do it? This is the normal procedure right? ALTER TABLE table_name ENGINE = InnoDB; As far