Re: How can I drop a table that is named “logs/#sql-ib203” and appeared after MySQL crash?

2013-06-25 Thread Reindl Harald
t;> Subject: Re: How can I drop a table that is named “logs/#sql-ib203” and >> appeared after MySQL crash? >> >> i know what happened but how get rid of these two bullshit files after >> *three years* not touched and used by mysqld >> >> Am 20.06.2013 21:28,

RE: How can I drop a table that is named “logs/#sql-ib203” and appeared after MySQL crash?

2013-06-25 Thread Rick James
amed “logs/#sql-ib203” and > appeared after MySQL crash? > > i know what happened but how get rid of these two bullshit files after > *three years* not touched and used by mysqld > > Am 20.06.2013 21:28, schrieb Rick James: > > #sql files are temp tables that vanish when the

Re: How can I drop a table that is named “logs/#sql-ib203” and appeared after MySQL crash?

2013-06-21 Thread Jesper Wisborg Krogh
Hi Frank, On 20/06/2013 05:00, Franck Dernoncourt wrote: Hi all, A table `logs/#sql-ib203` appeared after a MySQL crash due to disk space shortage while deleting some attributes in a table in the `logs` database and adding an index. `USE logs; SHOW TABLES;` does not list the table `logs/#sql

RE: How can I drop a table that is named “logs/#sql-ib203” and appeared after MySQL crash?

2013-06-20 Thread Rick James
12:19 PM > To: mysql@lists.mysql.com > Subject: Re: How can I drop a table that is named “logs/#sql-ib203” and > appeared after MySQL crash? > > > > Am 19.06.2013 21:00, schrieb Franck Dernoncourt: > > `USE logs; SHOW TABLES;` does not list the table `logs/#sql-ib203`

Re: How can I drop a table that is named “logs/#sql-ib203” and appeared after MySQL crash?

2013-06-20 Thread Reindl Harald
crash happened in the > middle of the ALTER. > >> -Original Message- >> From: Reindl Harald [mailto:h.rei...@thelounge.net] >> Sent: Wednesday, June 19, 2013 12:19 PM >> To: mysql@lists.mysql.com >> Subject: Re: How can I drop a table that is named “lo

Re: How can I drop a table that is named “logs/#sql-ib203” and appeared after MySQL crash?

2013-06-20 Thread Franck Dernoncourt
sql-ib203` appeared after a MySQL crash due to disk space shortage while executing the following query: ALTER TABLE `logs`.`srv_logs` DROP COLUMN `filenum` , DROP COLUMN `agent` , DROP COLUMN `ip` , DROP COLUMN `event_source` , ADD INDEX `username_event_type_idx` (`username` ASC, `event_

Re: How can I drop a table that is named “logs/#sql-ib203” and appeared after MySQL crash?

2013-06-20 Thread Franck Dernoncourt
On Thu, Jun 20, 2013 at 7:13 AM, Denis Jedig wrote: > > If you already tried enclosing the table name in backticks (DROP TABLE > `#sql-ib203`) and using the DROP TEMPORARY TABLE syntax without success, Yep, no success with: DROP TEMPORARY TABLE `logs/#sql-ib203`; DROP TEMPORARY TABLE `/#sql-ib20

Re: How can I drop a table that is named “logs/#sql-ib203” and appeared after MySQL crash?

2013-06-20 Thread Carsten Pedersen
This may be a naive question, but I'm not sure I can see you've covered this: Have you tried "USE logs" before DROP TABLE `#sql-ib203` (without the "logs/" bit)? / Carsten On 19-06-2013 21:00, Franck Dernoncourt wrote: Hi all, A table `logs/#sql-ib203` appea

Re: How can I drop a table that is named “logs/#sql-ib203” and appeared after MySQL crash?

2013-06-20 Thread Denis Jedig
Franck, Am 19.06.2013 21:00, schrieb Franck Dernoncourt: A table `logs/#sql-ib203` appeared after a MySQL crash the #sql-ib tables are temporarily created during an ALTER TABLE operation for recovery purposes. Apparently these temporary tables might stay in certain circumstances even after

Re: How can I drop a table that is named “logs/#sql-ib203” and appeared after MySQL crash?

2013-06-19 Thread Reindl Harald
Am 19.06.2013 21:00, schrieb Franck Dernoncourt: > `USE logs; SHOW TABLES;` does not list the table `logs/#sql-ib203`, but > when trying to `ALTER` the table that was being changed during the crash > MySQL complains about the existence of the table `logs/#sql-ib203`: > >> ERROR 1050: Table 'logs

How can I drop a table that is named “logs/#sql-ib203” and appeared after MySQL crash?

2013-06-19 Thread Franck Dernoncourt
Hi all, A table `logs/#sql-ib203` appeared after a MySQL crash due to disk space shortage while deleting some attributes in a table in the `logs` database and adding an index. `USE logs; SHOW TABLES;` does not list the table `logs/#sql-ib203`, but when trying to `ALTER` the table that was being

Re: MySQL Crash when Open_files reach 128

2012-05-02 Thread Todd Lyons
On Wed, May 2, 2012 at 4:58 AM, vishesh kumar wrote: > I am getting following in error log > > > 120502 07:52:05  mysqld started > 120502

RE: MySQL Crash when Open_files reach 128

2012-05-02 Thread Rick James
> Cc: mysql@lists.mysql.com > Subject: Re: MySQL Crash when Open_files reach 128 > > I am getting following in error log > > --- > --- >

Re: MySQL Crash when Open_files reach 128

2012-05-02 Thread vishesh kumar
e . > >> > >> I didn't set any open_files limit in my.cnf . > >> > >> For testing i set open_files_limit to 300 but still MySQL crashing after > >> 128. > >> > >> ~Vishesh > >> > >> On Wed, May 2, 2012 at 4:28 PM

Re: MySQL Crash when Open_files reach 128

2012-05-02 Thread LinuxInfo
idn't set any open_files limit in my.cnf . >> >> For testing i set open_files_limit to 300 but still MySQL crashing after >> 128. >> >> ~Vishesh >> >> On Wed, May 2, 2012 at 4:28 PM, Reindl Harald wrote: >> >>> >>> >>>

Re: MySQL Crash when Open_files reach 128

2012-05-02 Thread vishesh kumar
in my.cnf . > > For testing i set open_files_limit to 300 but still MySQL crashing after > 128. > > ~Vishesh > > On Wed, May 2, 2012 at 4:28 PM, Reindl Harald wrote: > >> >> >> Am 02.05.2012 12:52, schrieb vishesh kumar: >> > Hi Members, >> > >&g

Re: MySQL Crash when Open_files reach 128

2012-05-02 Thread vishesh kumar
, > > > > I am using MySQL 5.0.67 . I am facing the problem of MySQL crashing > > problem . MySQL Crash after every a few minutes . On investigation i > > noticed that when the Open_files status variable reach 128 MySQL C

Re: MySQL Crash when Open_files reach 128

2012-05-02 Thread Reindl Harald
Am 02.05.2012 12:52, schrieb vishesh kumar: > Hi Members, > > I am using MySQL 5.0.67 . I am facing the problem of MySQL crashing > problem . MySQL Crash after every a few minutes . On investigation i > noticed that when the Open_files status variable reach 128 MySQL Cr

Re: MySQL crash (negative mmapped regions)

2008-09-04 Thread L'argent
mysqldump. There are other users, but the behavior recurs even if the database is only being used by mysqldump. Thanks, LA Michael Dykman wrote: How are you performing the backup? What tools are involved? Are there any ther users of the database while you are doing this? - michael dykm

Re: MySQL crash (negative mmapped regions)

2008-09-03 Thread Michael Dykman
How are you performing the backup? What tools are involved? Are there any ther users of the database while you are doing this? - michael dykman On Wed, Sep 3, 2008 at 4:43 PM, L'argent <[EMAIL PROTECTED]> wrote: > > I've been trying to backdown a production database for some time and can't >

MySQL crash (negative mmapped regions)

2008-09-03 Thread L'argent
I've been trying to backdown a production database for some time and can't seem to get around MySQL crashing at about 1GB of backup data. (the database is about 400GB). I have a page corruption, but it isn't found when I do a CHECK TABLE on *any* of the tables. InnoDB is running in super-saf

MySQL crash on FreeBSD 7

2008-07-10 Thread Stut
Hi all, I woke up this morning to find that our main database had stopped responding so I jumped on to see what was going on. MySQL was no longer running and the error log contained lots of... <--- InnoDB: Warning: a long semaphore wait: --Thread 39439068816 has waited at trx0trx.c line 715

Re: MySQL crash on Debian Etch system

2007-11-23 Thread Norbert Tretkowski
Am Donnerstag, den 22.11.2007, 09:31 -0800 schrieb Frank Niedermann: > Nov 22 15:32:16 localhost mysqld[12720]: InnoDB: Last MySQL binlog file > position 0 1991372, file name /var/log/mysql/mysql-bin.000580 > > Is there a way to find out why MySQL crashed? You have the binlog and the position wher

MySQL crash on Debian Etch system

2007-11-22 Thread Frank Niedermann
s there a way to find out why MySQL crashed? Regards, Frank -- View this message in context: http://www.nabble.com/MySQL-crash-on-Debian-Etch-system-tf4857583.html#a13900443 Sent from the MySQL - General mailing list archive at Nabble.com. -- MySQL General Mailing List For list archives: htt

Seeking assistance with recurring MySQL crash during nightly dumps

2007-11-14 Thread Dave Hunt
A message in the MySQL log file asserts that someone at this e-mail address may be able to assist in troubleshooting/diagnosing a chronic error we encounter during our nightly database dumps. Here is an excerpt of the log file (near the reference to your e-mail address): InnoDB: Error: semaphore

Re: innodb mysql crash

2007-11-08 Thread Richard Edward Horner
Marten, Yeah, my experience has been that InnoDB is great when it's working but a complete nightmare when it stops working. I have scripts to deal with this which I'm actually hoping to release to the public in the near future. Essentially, what you need to do is edit your my.cnf to bring MySQL up

innodb mysql crash

2007-11-07 Thread Marten Lehmann
Hello, today I got this in my logs and mysql stopped working. InnoDB: http://dev.mysql.com/doc/mysql/en/InnoDB_troubleshooting_datadict.html InnoDB: how to resolve the issue. 071107 8:46:26 InnoDB: Flushing modified pages from the buffer pool... 071107 8:46:26 InnoDB: Started; log sequence nu

RE: Surviving MySQL crash

2006-02-10 Thread Logan, David (SST - Adelaide)
; Heikki Tuuri; mysql@lists.mysql.com; Logan, David (SST - Adelaide) Subject: Re: Surviving MySQL crash >>15 * * * * /usr/local/mysql/bin/mysql -u root -pxx -e 'FLUSH TABLES' >> >>This would run a FLUSH TABLES once every hour at 15 minutes past. If you >>are

Re: Surviving MySQL crash

2006-02-10 Thread Foo Ji-Haw
15 * * * * /usr/local/mysql/bin/mysql -u root -pxx -e 'FLUSH TABLES' This would run a FLUSH TABLES once every hour at 15 minutes past. If you are using Windows, sorry I'm not sure how to do it there. Easier to just set flush_time=900 in my.cnf :) Thanks guys. Will give it a shot

Re: Surviving MySQL crash

2006-02-10 Thread Dan Nelson
In the last episode (Feb 10), David Logan said: > Foo Ji-Haw wrote: > >Heikki Tuuri wrote: > >>if the OS crashes do not corrupt files, then InnoDB tables would > >>survive an OS crash without a problem. > > > >Thanks for the reply Heikki. Let me rephrase my problem: the data > >remains intact, but

Re: Surviving MySQL crash

2006-02-09 Thread David Logan
Foo Ji-Haw wrote: Heikki Tuuri wrote: Ji-Haw, if the OS crashes do not corrupt files, then InnoDB tables would survive an OS crash without a problem. Thanks for the reply Heikki. Let me rephrase my problem: the data remains intact, but I suspect the indexes are corrupted. Basically I h

Re: Surviving MySQL crash

2006-02-09 Thread Foo Ji-Haw
Heikki Tuuri wrote: Ji-Haw, if the OS crashes do not corrupt files, then InnoDB tables would survive an OS crash without a problem. Thanks for the reply Heikki. Let me rephrase my problem: the data remains intact, but I suspect the indexes are corrupted. Basically I have to run myisamchec

Re: Surviving MySQL crash

2006-02-09 Thread Heikki Tuuri
backs up MyISAM tables http://www.innodb.com/order.php - Original Message - From: "Foo Ji-Haw" <[EMAIL PROTECTED]> Newsgroups: mailing.database.myodbc Sent: Friday, February 10, 2006 7:05 AM Subject: Surviving MySQL crash Hi all, I have a MySQL server servng low-l

RE: Surviving MySQL crash

2006-02-09 Thread Logan, David (SST - Adelaide)
--- -Original Message- From: Foo Ji-Haw [mailto:[EMAIL PROTECTED] Sent: Friday, 10 February 2006 3:45 PM To: mysql@lists.mysql.com Subject: Surviving MySQL crash Hi all, I have a MySQL server servng low-load applications. Problem is, the environment is sometimes unstable, leading the entire OS to

Surviving MySQL crash

2006-02-09 Thread Foo Ji-Haw
Hi all, I have a MySQL server servng low-load applications. Problem is, the environment is sometimes unstable, leading the entire OS to crash. I notice that even in low-load situations the MySQL tables can be corrupted during crashes. My question is: is there a way for MySQL to flush when id

Re: Mysql crash due to page corruptions

2005-07-13 Thread Eric Bergen
Please upgrade to the newest 4.0 mysql binaries. Anil wrote: Hi, We are using mysql 4.0.20 on RHEL3.0 with circular replication setup A ->B ->C ->A . A is the master and all operations will be happening on A. We are facing frequent mysql crash on Master with page corruption error

Mysql crash due to page corruptions

2005-07-13 Thread Anil
Hi, We are using mysql 4.0.20 on RHEL3.0 with circular replication setup A ->B ->C ->A . A is the master and all operations will be happening on A. We are facing frequent mysql crash on Master with page corruption errors. How to identify which process is causing this page corrupti

Re: MySQL Crash Diagnosis

2005-04-15 Thread Gleb Paharenko
Hello. Really, there is not enough information. I suggest you to upgrade to the latest release (4.1.11 now). If the problem remains, our next step will be finding a possible query which crashes the server. Jason Johnson <[EMAIL PROTECTED]> wrote: > [-- text/plain, encoding 7bit, chars

Re: MySQL Crash Diagnosis

2005-04-15 Thread Jason Johnson
Doesn't seem like this is going to be much help, but this is what I could pull together. The highlighted lines seem to be the only indication as to something going wrong. No real error. Any thoughts? 050414 8:30:24 InnoDB: Started; log sequence number 0 996013795 D:\MySQL Server 4.1\bin\mysqld

Re: MySQL Crash Diagnosis

2005-04-14 Thread Gleb Paharenko
Hello. What is in error log? See: http://dev.mysql.com/doc/mysql/en/error-log.html http://dev.mysql.com/doc/mysql/en/windows-troubleshooting.html Jason Johnson <[EMAIL PROTECTED]> wrote: > I am running MySQL 4.1.8 on Windows 2000. Sporadically, the service > will stop. It does no

MySQL Crash Diagnosis

2005-04-13 Thread Jason Johnson
I am running MySQL 4.1.8 on Windows 2000. Sporadically, the service will stop. It does not seem to be in relationship with load on the service itself, or the box. At seemingly random intervals, the service will go kaput for no readily apparent reason. My question to you isn't "hey, what's wrong

Re: mysql crash - innodb not starting

2005-03-04 Thread Heikki Tuuri
Mel, - Alkuperäinen viesti - Lähettäjä: "mel list_php" <[EMAIL PROTECTED]> Vastaanottaja: <[EMAIL PROTECTED]>; Lähetetty: Friday, March 04, 2005 4:13 PM Aihe: Re: mysql crash - innodb not starting Hi Heikki, Still only one process with ps -fA. And mysql doesn

Re: mysql crash - innodb not starting

2005-03-04 Thread mel list_php
From: "Heikki Tuuri" <[EMAIL PROTECTED]> To: "mel list_php" <[EMAIL PROTECTED]>, Subject: Re: mysql crash - innodb not starting Date: Fri, 4 Mar 2005 15:50:26 +0200 Mel, do ps -fA Do you see more mysqld processes? If the ibdata1 file stays locked even though there is

Re: mysql crash - innodb not starting

2005-03-04 Thread Heikki Tuuri
anottaja: Kopio: <[EMAIL PROTECTED]> Lähetetty: Friday, March 04, 2005 12:00 PM Aihe: Re: mysql crash - innodb not starting I did ps -aux I see one mysqld running (mine, launched with --skip-innodb). I shut it down. ps -aux: nothing I tried to start it again, doesn't work. As it is running

Re: mysql crash - innodb not starting

2005-03-04 Thread mel list_php
your time. From: "Heikki Tuuri" <[EMAIL PROTECTED]> To: Subject: Re: mysql crash - innodb not starting Date: Thu, 3 Mar 2005 23:20:56 +0200 Hi! Error 11 means that you already have a mysqld process running on the same files. Best regards, Heikki Tuuri Innobase Oy Foreign keys, t

Re: mysql crash - innodb not starting

2005-03-03 Thread Heikki Tuuri
base.myodbc Sent: Thursday, March 03, 2005 2:25 PM Subject: mysql crash - innodb not starting Hi, I just have a crash of my mysql 4.1.5 .(the machine where it was running just shutdown) Tried to restart it, and problem with innodb: 050303 11:58:46 [WARNING] Asked for 196608 thread stack, but go

mysql crash - innodb not starting

2005-03-03 Thread mel list_php
Hi, I just have a crash of my mysql 4.1.5 .(the machine where it was running just shutdown) Tried to restart it, and problem with innodb: 050303 11:58:46 [WARNING] Asked for 196608 thread stack, but got 126976 InnoDB: Unable to lock ./ibdata1, error: 11InnoDB: Error in opening ./ibdata1 050303

Re: MySQL crash on adding foreign key constraint

2004-07-09 Thread Heikki Tuuri
affected (0.00 sec) mysql> mysql> mysql> insert into Leads(LeadNo) values (1); Query OK, 1 row affected (0.00 sec) mysql> insert into Leads(LeadNo) values (2); Query OK, 1 row affected (0.00 sec) mysql> insert into Leads(LeadNo) values (3); Query OK, 1 row affected (0.00 sec

MySQL crash on adding foreign key constraint

2004-07-08 Thread Daniel Kasak
Hi all. I just tried adding a foreign key constraint, and crashed MySQL ( 4.0.18 ). I tried it again and crashed it again :( The SQL I'm using is: --- alter table Leads add foreign key fk_LeadNo ( LeadNo ) references Prospects ( LeadNo ); --- The tables involved: `Prospects` ( `LeadNo` mediumint(8

mysql crash when opening a connection

2004-06-22 Thread D D
Hi, I have installed mysql 4.0.18 on my debian box. I am quite new to linux. mysql works fine with the command line (mysql) and with apache/phpmyadmin too. But when i try to connect from Windows or if i telnet from Debian, i got: Number of processes running now: 0 040622 21:27:33 mysqld restarte

Re: ADDING INDEXES TO A TABLE LEADS TO MYSQL CRASH, BUG!!

2003-12-29 Thread Sergei Golubchik
Hi! On Dec 29, Derek J wrote: > Hello, >First, Yes I can create repeatable test case, I still have live > server with the same problem. and another Dual opteron server, which i > created the same database there as a test to make sure there are no > hardware faliures casuing this probles, but i

Re: ADDING INDEXES TO A TABLE LEADS TO MYSQL CRASH, BUG!!

2003-12-29 Thread Derek J
Hello, First, Yes I can create repeatable test case, I still have live server with the same problem. and another Dual opteron server, which i created the same database there as a test to make sure there are no hardware faliures casuing this probles, but i still had the same problem there too. I

Re: ADDING INDEXES TO A TABLE LEADS TO MYSQL CRASH, BUG!!

2003-12-29 Thread Sergei Golubchik
Hi! On Dec 28, Derek J wrote: > Hello Every Body , > I have been facing a strange problem, that i assume its a mysql bug of > some sort. > > In my datadabase there are 2 tables, if i tried to add any index to them > ,any INSERT INTO request status will be - in show processlist- update > and will

Re: ADDING INDEXES TO A TABLE LEADS TO MYSQL CRASH, BUG!!

2003-12-28 Thread Derek J
I have enough disk space for indexes, the problem doesn't happen during adding an index. it happens after the index is added. On Sun, 2003-12-28 at 21:33, mos wrote: > At 06:28 PM 12/28/2003, you wrote: > >Hello Every Body , > >I have been facing a strange problem, that i assume its a mysql bug of

Re: ADDING INDEXES TO A TABLE LEADS TO MYSQL CRASH, BUG!!

2003-12-28 Thread mos
At 06:28 PM 12/28/2003, you wrote: Hello Every Body , I have been facing a strange problem, that i assume its a mysql bug of some sort. In my datadabase there are 2 tables, if i tried to add any index to them ,any INSERT INTO request status will be - in show processlist- update and will freeze like

ADDING INDEXES TO A TABLE LEADS TO MYSQL CRASH, BUG!!

2003-12-28 Thread Derek J
Hello Every Body , I have been facing a strange problem, that i assume its a mysql bug of some sort. In my datadabase there are 2 tables, if i tried to add any index to them ,any INSERT INTO request status will be - in show processlist- update and will freeze like this forever , and consequently

Re: mySQL crash

2003-10-30 Thread Heikki Tuuri
ursday, October 30, 2003 5:25 AM Subject: mySQL crash > --=_NextPart_000_007E_01C39ECE.F3C28910 > Content-Type: text/plain; > charset="us-ascii" > Content-Transfer-Encoding: 7bit > > Dear, > > We encountered mysql (innodb) crash, and we can't rec

mySQL crash

2003-10-29 Thread ts.wong
Dear, We encountered mysql (innodb) crash, and we can't recover the database after the crash. Could you please help use to investigate the problem. Thanks in advance for your help. The following is copied from the mysql error log: 031027 17:16:12 mysqld started 031027 17:16:12 Warning: se

MySQL crash (replication?)

2003-10-02 Thread Partap Davis
Hi folks, I just set up a slave server and it seemed to be working alright, catching up with the new data, and then the server suddenly went away. Looking at the slave's data directory, there are approximately 2 relay-bin files. I can't even restart the server now, because it gets a sig

Re: MySQL Crash

2003-09-28 Thread Heikki Tuuri
AIL PROTECTED]> Newsgroups: mailing.database.mysql Sent: Sunday, September 28, 2003 12:00 PM Subject: MySQL Crash > OK I had a big MySQL crash last night on a very busy system I can't > understand the InnoDB errors can anybody help before I post a bug report? > > resolve_stack_dum

If the mysql crash,how can I trace the log

2003-08-27 Thread MaFai
Hello, mysql, Yesterday,mysql process disappear sliently. After I check the err-log,no clues found. But the PID file still exising.I think the mysql terminate by some reason.But I still not found why. The error-log mysqld.log wouldn't provide any valueable msg.It j

MySQL Crash when using default-character-set tis620 (Thai sort order)

2003-08-09 Thread apples
>Description: When i using default-character-set tis620 (Thai sort order) mysql server has been crash and then I test to use latin1 can work fine but can't sort order in thai language. >How-To-Repeat: >Fix: >Submitter-Id: >Originator:apples >Organization: >MySQL

Re: FreeBSD: MySQL crash when importing 148 MB dumpfile

2003-01-18 Thread Ken Menzel
CTED]> Sent: Friday, January 17, 2003 6:28 PM Subject: FreeBSD: MySQL crash when importing 148 MB dumpfile > Problem: I am migrating servers, from a dual PIII-866 Mhz with 384 MB of > RAM running Linux to the following server configuration: > > Dual Athlon 1.5 Ghz > 1 GB RAM &g

FreeBSD: MySQL crash when importing 148 MB dumpfile

2003-01-17 Thread Maximo Migliari
Problem: I am migrating servers, from a dual PIII-866 Mhz with 384 MB of RAM running Linux to the following server configuration: Dual Athlon 1.5 Ghz 1 GB RAM 2 x 18 GIG SCSI drives. FreeBSD 4.7-Stable MySQL-Max-3.23.54a (ELF) i.e. without linuxthreads - runs on only 1 process. I am trying to i

MySQL crash and burn...

2002-12-10 Thread David Petersen
I'm developing a site using MySQL and JSP (with Resin). Everything seems to be jolly the first few times I load a page, but then MySQL just crashes. My system is: - Hardware: Celeron 500, 128MB RAM - Mandrake 9.0 vanilla - Resin 2.1.5 (installed as per resin documentation, configured with Apach

Strange MySQL Crash

2002-09-17 Thread Valery Dachev
Hello, I've just had a MySQL crash on a very simple operation. I have the following table: *** +---+---+--+-+-++ | Field | Type | Null | Key | Default |

Re: MySQL Crash with varchar(40)

2002-06-27 Thread Victoria Reznichenko
apples, Wednesday, June 26, 2002, 2:39:25 PM, you wrote: a> I got problem on my machine running with mysql 3.23.51, some field use a> varchar a> (40) if query from this field mysql got hanging a> Trying to get some variables. a> Some pointers may be invalid and cause the dump to abort... a

MySQL Crash with varchar(40)

2002-06-26 Thread apples
I got problem on my machine running with mysql 3.23.51, some field use varchar (40) if query from this field mysql got hanging Trying to get some variables. Some pointers may be invalid and cause the dump to abort... thd-query at 0x82c3318 = SELECT * FROM `COURSE` ORDER BY `SUBJNAME` ASC

MySQL crash on ALTER TABLE command

2002-06-03 Thread Archbold, David W.
Hi all, I have a problem with MySQL under Windows NT/2000 where it crashes every time I issue an ALTER TABLE command while the table is being written to under high load. I've tried several versions of MySQL on a few different machines/OS and still the problem remains. I'm hoping someone might

MySQL Crash in my machine

2002-05-19 Thread apples
below is a resolve stack . I use tis620 charset (thai) all query of my program with php is normaly command such as 'select' 'select count(*)' 'insert' 'update' 'delete' I didn't know why mysqld crash help meplease root@academic:/tmp# resolve_stack_dump -s /tmp/mysqld.sym -n mysqld.stack 0x80

Re: mysql crash during large insert from MYIASM to INNODB table.

2002-02-04 Thread Johannes B. Ullrich
> which version of MySQL you are running? 3.23.39 :-(... sorry for not including this earlier. I will try and move to .47 Thanks! > > >From http://www.innodb.com/bugfixes.html : > > November 17, 2001: > The insert buffer tree can get into an inconsistent state, causing a cr

Re: mysql crash during large insert from MYIASM to INNODB table.

2002-02-04 Thread Heikki Tuuri
Johannes, which version of MySQL you are running? >From http://www.innodb.com/bugfixes.html : November 17, 2001: The insert buffer tree can get into an inconsistent state, causing a crash, and also crashing the recovery. This bug may appear especially in large table imports or a

mysql crash during large insert from MYIASM to INNODB table.

2002-02-03 Thread Johannes B. Ullrich
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 I just started using innodb tables to help with some locking problems. The table I am trying to convert is large (100 Million rows, 23 GigByte). I setup 20 2Gig ibdata files. (I choose a size of 2 Gig as this is the maximum size I can easily trans

Re: MySQL Crash with "show logs" queries

2001-07-14 Thread Gustavo Vieira Goncalves Coelho Rios
Thanks Mr. Sinisa, but Mr. Miguel Angel could reproduce it, maybe you may ask him about details, since he is a mysql developer he can tell you about the problem. I am sure there are more mysql (3.23.39) bugs specially related to the wrapper support. Any away i am really curious about the facts

Re: MySQL Crash with "show logs" queries

2001-07-14 Thread Miguel Angel Solórzano
e > user comunity too) > > >Submitter-Id: > >Originator:Gustavo Vieira Gonçalves Coelho Rios > >Organization: > Ifour Sistemas. > >MySQL support: none > >Synopsis: MySQL Crash with "show logs" queries > >Severity: crit

Re: MySQL Crash with "show logs" queries

2001-07-14 Thread Sinisa Milivojevic
Gustavo Vieira Gonçalves Coelho Rios writes: > >Description: > MySQL Daemon crashes when a user with the necessary privileges issue a query >"show logs" > >How-To-Repeat: > Start your daemon with the option --skip-bdb: > your-shell> safe_mysqld --skip-bdb > > Then, issue

MySQL Crash with "show logs" queries

2001-07-13 Thread Gustavo Vieira Gonçalves Coelho Rios
feedback (Not only developer but the user comunity too) >Submitter-Id: >Originator:Gustavo Vieira Gonçalves Coelho Rios >Organization: Ifour Sistemas. >MySQL support: none >Synopsis: MySQL Crash with "show logs" queries >Severity: critical >

Re: mysql crash continued

2001-05-21 Thread Sommai Fongnamthip
Hello, I am running MySQL (3.23.xx) on Linux RedHat 6.2 and plan to increase volume of data in the near future. So, I would like to know some db schema , total row and your SQL you used to protect my database. Sommai Fongnamthip At 20:56 21/5/2001 +0300, Sinisa Milivojevic wrote: >Ru

Re: mysql crash continued

2001-05-21 Thread Sinisa Milivojevic
Rui Barreiros writes: > > hi, > > i've upgraded mysql server with 3.23.38 from mysql, and i have the same > behaviour sinisa if you have some time i could give you access to one of the > machines. :/ > > -- > WEBSOLUT - Soluções Internet > Emailto: [EMAIL PROTECTED] > Personal Info: http://

mysql crash continued

2001-05-21 Thread Rui Barreiros
hi, i've upgraded mysql server with 3.23.38 from mysql, and i have the same behaviour sinisa if you have some time i could give you access to one of the machines. :/ -- WEBSOLUT - Soluções Internet Emailto: [EMAIL PROTECTED] Personal Info: http://websolut.net/people/rui.html As informações

Re: Mysql crash

2001-05-21 Thread Sinisa Milivojevic
Rui Barreiros writes: > > hi there, from one day to another, my mysql in 2 machines with 2 different > mysql version crashed after a quite long query, > > i've run mysql server with the log option, here are the details: > > in hostname.err: > > mysqld got signal 11; > it's quite strange, i'm

Mysql crash

2001-05-21 Thread Rui Barreiros
hi there, from one day to another, my mysql in 2 machines with 2 different mysql version crashed after a quite long query, i've run mysql server with the log option, here are the details: in hostname.err: mysqld got signal 11; The manual section 'Debugging a MySQL server' tells you how to use

Re: MySQL Crash on ALTER TABLE

2001-03-07 Thread Sinisa Milivojevic
Meyer, Patrick writes: > Running 3.23.33 on Windows 2000 Server. > > I have noticed that executing an ALTER TABLE works... but the next query on > the alter table crashes MySQL and corrupts the table. > > If I FLUSH TABLES after an ALTER TABLE, it seems to reduce the occurance, > but sh

MySQL Crash on ALTER TABLE

2001-03-07 Thread Meyer, Patrick
Running 3.23.33 on Windows 2000 Server. I have noticed that executing an ALTER TABLE works... but the next query on the alter table crashes MySQL and corrupts the table. If I FLUSH TABLES after an ALTER TABLE, it seems to reduce the occurance, but should this be required? [EMAIL PROTECTED] Na