Re: ERROR 1030: Got error 124 from table handler

2002-11-07 Thread David Herring
same ;) Regards, Jocelyn - Original Message - From: "Dicky Wahyu Purnomo" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, November 08, 2002 2:11 AM Subject: Re: ERROR 1030: Got error 124 from table handler Pada Fri, 08 Nov 2002 01:59:20 + David Herring

Re: ERROR 1030: Got error 124 from table handler

2002-11-07 Thread Dicky Wahyu Purnomo
Pada Fri, 8 Nov 2002 02:20:56 - "Jocelyn Fournier" <[EMAIL PROTECTED]> menulis: > Hi, > > In fact, it's : > > joce@forum:~$ perror 124 > Error code 124: Wrong medium type > 124 = Wrong index given to function > > but the solution to resolve the problem remains the same ;) ups ... sorry ..

Re: ERROR 1030: Got error 124 from table handler

2002-11-07 Thread Jocelyn Fournier
PROTECTED]> Sent: Friday, November 08, 2002 2:29 AM Subject: Re: ERROR 1030: Got error 124 from table handler > > > Dicky, > > Thank you for the quick response - but it appears tables created as > unions do not support these repair commands:- > > # bin/mysqlcheck -r -p test

Re: ERROR 1030: Got error 124 from table handler

2002-11-07 Thread Dicky Wahyu Purnomo
Pada Fri, 08 Nov 2002 02:29:49 + David Herring <[EMAIL PROTECTED]> menulis: > > > Dicky, > > Thank you for the quick response - but it appears tables created as > unions do not support these repair commands:- > > # bin/mysqlcheck -r -p test Collaborate > Enter password: > test.Collaborat

Re: ERROR 1030: Got error 124 from table handler

2002-11-07 Thread David Herring
odafone_Collaborate' at line 1 mysql> Any other ideas ? Would trying an older version of MySQL be useful ? thx dave Dicky Wahyu Purnomo wrote: Pada Fri, 08 Nov 2002 01:59:20 + David Herring <[EMAIL PROTECTED]> menulis: What does "ERROR 1030: Got error 124 from ta

Re: ERROR 1030: Got error 124 from table handler

2002-11-07 Thread Jocelyn Fournier
To: <[EMAIL PROTECTED]> Sent: Friday, November 08, 2002 2:11 AM Subject: Re: ERROR 1030: Got error 124 from table handler > Pada Fri, 08 Nov 2002 01:59:20 + > David Herring <[EMAIL PROTECTED]> menulis: > > > > What does "ERROR 1030: Got error 124 from tabl

Re: ERROR 1030: Got error 124 from table handler

2002-11-07 Thread Dicky Wahyu Purnomo
Pada Fri, 08 Nov 2002 01:59:20 + David Herring <[EMAIL PROTECTED]> menulis: > What does "ERROR 1030: Got error 124 from table handler" mean when > trying to select a single value from a table created as a UNIOn of > another table ? root@slimmer:~# perror 127 Error

ERROR 1030: Got error 124 from table handler

2002-11-07 Thread David Herring
Hi, What does "ERROR 1030: Got error 124 from table handler" mean when trying to select a single value from a table created as a UNIOn of another table ? When selecting just the primary key from a UNION table, with MySQL 3.23.53 I get the following error - however if I select t

Re: Got error 124 from table handler.

2002-02-22 Thread Fournier Jocelyn [Presence-PC]
Sent: Friday, February 22, 2002 11:49 AM Subject: Got error 124 from table handler. > Hi list - > > Is there a list off MySQL error-codes avalible? > Something like Oracle's oerr. program? > > We are having trouble with one of our MySQL databases. The error is: > &g

Re: Got error 124 from table handler.

2002-02-22 Thread Chris Bolt
> Is there a list off MySQL error-codes avalible? > Something like Oracle's oerr. program? perror > We are having trouble with one of our MySQL databases. The error is: > > "Got error 124 from table handler." chris@entropy:~$ perror 124 Error code 124: Wrong

Got error 124 from table handler.

2002-02-22 Thread Christian M. Stamgren
Hi list - Is there a list off MySQL error-codes avalible? Something like Oracle's oerr. program? We are having trouble with one of our MySQL databases. The error is: "Got error 124 from table handler." We get this error randomly on some of our MyISAM tables. "Optimize

Re: Error 1030: Got error 124 from table handler

2002-01-12 Thread Sinisa Milivojevic
[EMAIL PROTECTED] writes: > >Description: > When I query using > "SELECT d1.document_id as document_id_1, d2.document_id as document_id_2, >sum(d1.weight * d2.weight) as similarity FROM dw_merge as d1 INNER JOIN dw_merge as >d2 ON d1.word_id=d2.word_id WHERE d1.document_id=5 AND d1.weight >

Error 1030: Got error 124 from table handler

2002-01-12 Thread herb
>Description: When I query using "SELECT d1.document_id as document_id_1, d2.document_id as document_id_2, sum(d1.weight * d2.weight) as similarity FROM dw_merge as d1 INNER JOIN dw_merge as d2 ON d1.word_id=d2.word_id WHERE d1.document_id=5 AND d1.weight > 0.05 AND d2.weight > 0.05 GROUP