RE: MySQL On ipv6

2009-11-30 Thread Neil Aggarwal
Pramod: I want to know whether MySQL Server runs on ipv6 machine. Apparently, IPv6 is going to be a version 6 feature: http://bugs.mysql.com/bug.php?id=8836 Neil -- Neil Aggarwal, (281)846-8957, http://UnmeteredVPS.net Host your MySQL driven app on a CentOS VPS for $25/mo Unmetered

Re: Is LOAD INDEX INTO CACHE replicated?

2009-11-30 Thread Tom Worster
Thank you for the answer. This makes sense. As such, the questions of preloading the key buffer in a replication system are probably resolved. I think I can safely put CACHE INDEX and LOAD INDEX INTO CACHE statements in the --init-file of both masters and slaves. tom On 11/29/09 8:39 AM, Johan

error creating table

2009-11-30 Thread Sharique uddin Ahmed Farooqui
Hi, I'm developing a CMS, in which I have 3 tables user, roles and userRoles. Here is the code for userRoles table. on this I'm getting error creating table (error code 1005), both userid and roleid are pkey (int, auto increment) CREATE TABLE IF NOT EXISTS `mydb`.`UserRole` ( `roleid` INT(10)

Re: error creating table

2009-11-30 Thread Jim Lyons
I created dummy tables for Roles and Users specifying the primary keys as 'serial' and then tried the below syntax. It failed. Then I redefined the primary keys in the parent tables to be the exact same type as the foreign keys in UserRole and it worked. So, check the datatype of all your keys

MySQL shutting down because of Operating system error 1784

2009-11-30 Thread Cagdas CUBUKCU
Hi, We are getting InnoDB: Operating system error number 1784 error on MySQL and it just shuts down after getting the error. This happens once every 2 days or so. We are using MySQL 5.0.51b-community-nt. I was wondering if anyone had this problem before? Here's the full error output: InnoDB:

RE: MySQL shutting down because of Operating system error 1784

2009-11-30 Thread Rolando Edwards
If you have a lot of InnoDB transactions, maybe your ib_logfile0 and ib_logfile1 are too small. Transactional data are written in these files in a circular fashion. You may have run out of space in these. If you want to make these files bigger, simply do the following: 1) Use the setting

Re: MySQL shutting down because of Operating system error 1784

2009-11-30 Thread Raj Shekhar
Cagdas CUBUKCU cagdascubukcu at gmail.com writes: Hi, We are getting InnoDB: Operating system error number 1784 error on MySQL and it just shuts down after getting the error. http://msdn.microsoft.com/en-us/library/cc500408.aspx # ERROR_INVALID_USER_BUFFER or ERROR_NOT_ENOUGH_MEMORY Each

RE: Innodb buffer pool size filling up

2009-11-30 Thread Neil Aggarwal
Machiel: We have a MySQL database where the INNODB_BUFFER_POOL_SIZE keeps on filling up. Are you getting any errors or just noticing the buffer pool is full? I saw some error messages about the buffer pool size becoming a problem if the fscync is slow. Do you see any more

RE: Innodb buffer pool size filling up

2009-11-30 Thread machiel.richards
There are no errors in the logs at all. We have a script to calculate the percentages used and free in order to do daily,weekly and monthly reporting trend analyses and thus we notice the growth but no errors. -Original Message- From: Neil Aggarwal