strange error 1109

2006-12-21 Thread Emily Weil
I'm getting "Error 1109 : Unknown table 'questions' in where clause" when I do the simplest query. This is the query: SELECT * FROM questions; My database has the following two tables: CREATE TABLE subscribers( subscriber_id INT UNSIGNED AUTO_INCREMENT NOT NULL PRIMARY KEY, email varchar(50),

strange error 1109

2006-12-21 Thread Emily Weil
I'm getting "Error 1109 : Unknown table 'questions' in where clause" when I do the simplest query. This is the query: SELECT * FROM questions; My database has the following two tables: CREATE TABLE subscribers( subscriber_id INT UNSIGNED AUTO_INCREMENT NOT NULL PRIMARY KEY, email varchar(50),

Re: Strange error in query with joins and subquery

2005-10-18 Thread SGreen
(response interspersed) Jasper Bryant-Greene <[EMAIL PROTECTED]> wrote on 10/17/2005 07:49:36 PM: > Just recently (possibly since upgrading to MySQL 5.0.13 RC), I've been > getting the following error with queries like the one below. > > Unknown column 'photos.id' in 'on clause' (1054) > > SEL

Strange error in query with joins and subquery

2005-10-17 Thread Jasper Bryant-Greene
Just recently (possibly since upgrading to MySQL 5.0.13 RC), I've been getting the following error with queries like the one below. Unknown column 'photos.id' in 'on clause' (1054) SELECT photos.* FROM photos LEFT JOIN tags_photos ON tags_photos.photo = photos.id WHERE 1 AND tags_photos.tag IN

RE: Strange Error in MySQL

2005-05-10 Thread Jay Blanchard
[snip] Hello. Yes, there are. In fact, other records have more data for this field in them and inserts for those records never threw an error. [/snip] Is the data for the other fields larger than usual? This field may be smaller, but the cumulative row length (the combined size of every field) is

RE: Strange Error in MySQL

2005-05-10 Thread Asad Habib
Hello. Yes, there are. In fact, other records have more data for this field in them and inserts for those records never threw an error. - Asad On Tue, 10 May 2005, Jay Blanchard wrote: > [snip] > Hello. I am receiving the following error when trying to insert into a > field of type text: > > #1

Re: Strange Error in MySQL

2005-05-10 Thread Jigal van Hemert
> #1030 - Got error 139 from storage engine > > The data to be inserted should fit easily into a text field. In fact, this > error only occurs for a particular record and other records with much > larger data sets are not throwing the same error. Has anyone experienced > something similar? I checke

RE: Strange Error in MySQL

2005-05-10 Thread Jay Blanchard
[snip] Hello. I am receiving the following error when trying to insert into a field of type text: #1030 - Got error 139 from storage engine The data to be inserted should fit easily into a text field. In fact, this error only occurs for a particular record and other records with much larger data

Strange Error in MySQL

2005-05-10 Thread Asad Habib
Hello. I am receiving the following error when trying to insert into a field of type text: #1030 - Got error 139 from storage engine The data to be inserted should fit easily into a text field. In fact, this error only occurs for a particular record and other records with much larger data sets ar

Fw: Strange error in DELETE query

2004-11-11 Thread Ronan Lucio
Hi, I think I found out what was wrong. ColfFusion has a tag that prevents SQL Injection. Probably was removing anything after comma. Without using the code works perfectly. So, I had to create a UDF to remove everything except digits and commas. Thanks in advance, Ronan -- MySQL Ge

Re: Strange error in DELETE query

2004-11-11 Thread Michael Stassen
Ronan Lucio wrote: The problem is that if I use OR in the where clause, MySQL won't use the indexes in the row_id column. Yes, it will, as long as the OR conditions are on the *same* column. WHERE row_id IN (2,5,7) and WHERE (row_id = 2 OR row_id = 5 OR row_id = 7) are equivalent. I prefer IN

RE: Strange error in DELETE query

2004-11-11 Thread Paul DuBois
At 8:18 -0600 11/11/04, Jay Blanchard wrote: [snip] When I run the follow query: DELETE FROM table WHERE client_id = 1 AND row_id IN (2,5,7) only the first record is deleted. Am I doing something wrong or is it a MySQL bug? [/snip] It is not a bug, just say it out loud "AND row_id is 2 OR 5 OR

Re: Strange error in DELETE query

2004-11-11 Thread Ronan Lucio
Michael, > What are you talikng about? Queries don't halt on the first row matched. > For example: It´s my thought, too. But it isn´t happen in my MySQL Server. Now, doing the same tests you did I got the same results of you. Well, I´ll inspect my code again looking for some error that I didn´t

Re: Strange error in DELETE query

2004-11-11 Thread Ronan Lucio
Jay, > It is not a bug, just say it out loud > "AND row_id is 2 OR 5 OR 7" > > Once the OR condition is satisfied once, the query will halt. The problem is that if I use OR in the where clause, MySQL wont use the indexes in the row_id column. One important thing that I forgot to say is I ru

Re: Strange error in DELETE query

2004-11-11 Thread Michael Stassen
Jay Blanchard wrote: [snip] When I run the follow query: DELETE FROM table WHERE client_id = 1 AND row_id IN (2,5,7) only the first record is deleted. Am I doing something wrong or is it a MySQL bug? [/snip] It is not a bug, just say it out loud "AND row_id is 2 OR 5 OR 7" Once the OR conditio

RE: Strange error in DELETE query

2004-11-11 Thread Jay Blanchard
[snip] When I run the follow query: DELETE FROM table WHERE client_id = 1 AND row_id IN (2,5,7) only the first record is deleted. Am I doing something wrong or is it a MySQL bug? [/snip] It is not a bug, just say it out loud "AND row_id is 2 OR 5 OR 7" Once the OR condition is satisfied onc

Strange error in DELETE query

2004-11-11 Thread Ronan Lucio
Hi, I have a MySQL-4.0.18 installed on a FreeBSD system. When I run the follow query: DELETE FROM table WHERE client_id = 1 AND row_id IN (2,5,7) only the first record is deleted. Am I doing something wrong or is it a MySQL bug? Thanks Ronan -- MySQL General Mailing List For list archives:

Strange error on one table using phpMyAdmin

2004-03-30 Thread Dave G
MySQL users, I have one table in a database which will not allow me to edit it in phpMyAdmin. Every time I try to select the row for editing, I get an error which says "tbl_row_delete.php: Missing sql_query". I have 42 other tables in this database, all of which work fine. I have at

Strange Error

2003-10-07 Thread Dan Cumpian
I’ve recently started getting an error: file '.\newsman\messages.MYD' not found (Errcode: 22) but when I check the database, the file is there and it is OK. I’ve repaired and optimized it, but no change. What is the root cause of this error and what should I do to fix it? Thanks, Dan C

re: Re: Strange Error with MySQL 4.0.4 under Win2K

2002-11-21 Thread Egor Egorov
Listen, Wednesday, November 20, 2002, 7:31:27 PM, you wrote: LH> thanks for your great advice, finally pointing out the reason for the LH> problem. >> SH> mysql> ALTER TABLE auftrag CHANGE Nummer Nummer INT UNSIGNED NOT NULL >> SH> PRIMARY KEY; >> SH> ERROR 7: Error on rename of '.\trainee\auftra

Re: Strange Error with MySQL 4.0.4 under Win2K

2002-11-20 Thread Listen Hinz
lt;http://iConnect.de> Heesestr. 6, 12169 Berlin (Germany) Telefon: +49 30 7970948-0 Fax: +49 30 7970948-3 - Original Message - From: "Egor Egorov" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, November 19, 2002 7:52 PM Subject: re: Strange Error w

re: Strange Error with MySQL 4.0.4 under Win2K

2002-11-19 Thread Egor Egorov
Stefan, Sunday, November 17, 2002, 5:12:52 PM, you wrote: SH> yesterday I imported some tables from MS Access via ODBC into my brand SH> new MySQL 4.0.4 server. Everything went fine, but the tables did not SH> have a primary key, so I did the following: SH> mysql> ALTER TABLE auftrag CHANGE Numme

Strange Error with MySQL 4.0.4 under Win2K

2002-11-18 Thread Stefan Hinz
Dear list, yesterday I imported some tables from MS Access via ODBC into my brand new MySQL 4.0.4 server. Everything went fine, but the tables did not have a primary key, so I did the following: mysql> ALTER TABLE auftrag CHANGE Nummer Nummer INT UNSIGNED NOT NULL PRIMARY KEY; ERROR 7: Error on r

Re: strange error in InnoDB on raw disk

2002-08-20 Thread Heikki Tuuri
nobase Oy --- InnoDB - transactions, hot backup, and foreign key support for MySQL See http://www.innodb.com, download MySQL-Max from http://www.mysql.com - Original Message - From: "Yuri" <[EMAIL PROTECTED]> Newsgroups: mailing.database.mysql Sent: Tuesday, August 20, 2002 7

Re: strange error in InnoDB on raw disk

2002-08-20 Thread Yuri
> is a begin statement the same as set autocommitt = 0?? Nope, I didn't change autocommit. Yuri. FOR FILTER: sql, connect - Before posting, please check: http://www.mysql.com/manual.php (the manual) http://lists.mysql.c

Re: strange error in InnoDB on raw disk

2002-08-20 Thread Randy Johnson
in a innodb table type using mysql max is a begin statement the same as set autocommitt = 0?? Randy - Before posting, please check: http://www.mysql.com/manual.php (the manual) http://lists.mysql.com/ (the

strange error in InnoDB on raw disk

2002-08-20 Thread Yuri
I created 4096M raw InnoDB space -- all was fine. Right after this I tried to create some type=InnoDB table. It fails with the message "can't create table './db/tbl.frm' (errno=133)". After I change newraw to raw in my.cnf and restart MySQL it works fine. Not a big problem for me but maybe it in

Strange error message

2001-12-14 Thread James Cox
Hey, We're getting a weird error message on 4.0 alpha: Database error in vBulletin: Link-ID == false, connect failed mysql error: Can't connect to MySQL server on '' (11) mysql error number: 2003 Date: Friday 14th of December 2001 08:36:02 PM Has anyone else experienced this? Thanks, James Co

Re: MySQL strange error: lost connection during query

2001-11-28 Thread Sinisa Milivojevic
Zeus Gómez Marmolejo writes: > SEND-PR: -*- send-pr -*- > SEND-PR: Lines starting with `SEND-PR' will be removed automatically, as > SEND-PR: will all comments (text enclosed in `<' and `>'). > SEND-PR: > From: [EMAIL PROTECTED] > To: [EMAIL PROTECTE

MySQL strange error: lost connection during query

2001-11-28 Thread Zeus Gómez Marmolejo
SEND-PR: -*- send-pr -*- SEND-PR: Lines starting with `SEND-PR' will be removed automatically, as SEND-PR: will all comments (text enclosed in `<' and `>'). SEND-PR: From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: MySQL strange error: lost connection during query &g

MySQL strange error: lost connection during query

2001-11-28 Thread zeus
>Description: When 2 concurrent processes access the database 'sometimes' MySQL reports this error to both processes at the same time. It happens very rarely and about 10 seconds later they continue with its normal work. When we increase the number of processes accessing the database th

MySQL strange error: lost connection during query

2001-11-28 Thread zeus
>Description: When 2 concurrent processes access the database 'sometimes' MySQL reports this error to both processes at the same time. It happens very rarely and about 10 seconds later they continue with its normal work. When we increase the number of processes accessing the database th

innodb producing strange error on a heavy-load system

2001-11-27 Thread Attila Beno
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 hi, any ideas what could be causing this? this happens when apache has reached its max_client limit. using 3.23.45 011127 18:16:30 InnoDB: Started /home/attila/mysql-max-3.23.45-pc-linux-gnu-i686/bin/mysqld: ready for connecti 011127 18:35:45 re

Re: strange error message

2001-09-30 Thread Colin Faber
run the perror app provided with your distrobution perror 13 Casey Tourangeau wrote: > > Hi, > > I'm using MySQL v3.23.42 with Mac OS 10.1, and whenever I try to > create a database (logged in as root), i get the error "create database > 'name'. (errno: 13)". > > Does anyone h

strange error message

2001-09-29 Thread Casey Tourangeau
Hi, I'm using MySQL v3.23.42 with Mac OS 10.1, and whenever I try to create a database (logged in as root), i get the error "create database 'name'. (errno: 13)". Does anyone have any idea what that might mean? I tried manually instering data into the mysql.* tables, but with

RE: DSN-Less connection Strange error!

2001-09-05 Thread Venu
)-Original Message- )From: Sinisa Milivojevic [mailto:[EMAIL PROTECTED]] )Sent: Wednesday, September 05, 2001 5:35 AM )To: [EMAIL PROTECTED] )Cc: [EMAIL PROTECTED] )Subject: Re: DSN-Less connection Strange error! ) ) )[EMAIL PROTECTED] writes: )> Hi People, )> )> I'm try

Re: DSN-Less connection Strange error!

2001-09-05 Thread Sinisa Milivojevic
[EMAIL PROTECTED] writes: > Hi People, > > I'm trying to connect to Mysql server using Access2k, VBA and DSN less > connection, and mysql v3.23.36. > > All queries sent to the server exceute or returns records just fine except > one simple query. > > > "show datbases ..." is OK > "describ

DSN-Less connection Strange error!

2001-09-04 Thread randy
Hi People, I'm trying to connect to Mysql server using Access2k, VBA and DSN less connection, and mysql v3.23.36. All queries sent to the server exceute or returns records just fine except one simple query. "DESCRIBE Employees" Employees is a table in my database. the server responds by : "D

DSN-Less connection Strange error!

2001-09-01 Thread randy
Hi People, I'm trying to connect to Mysql server using Access2k, VBA and DSN less connection, and mysql v3.23.36. All queries sent to the server exceute or returns records just fine except one simple query. "DESCRIBE Employees" Employees is a table in my database. the server responds by : "D

strange error

2001-08-23 Thread Nicolas Grehalle
when i'm connecting to the base with the prompt => no problem in a file test toto.c : mysql_connect(&MSQL_IDENBASE,localhost,root,mysql); ==> no problem But in a big application, when i try to connect by mysql_connect(&MSQL_IDENBASE,localhost,root,mysql); ==> error 2004 Somebody know something

Re: Strange error message

2001-06-10 Thread Benjamin Pflugmann
Hello. On Sun, Jun 10, 2001 at 02:56:45PM +0200, [EMAIL PROTECTED] wrote: > I've got this php script which has three times now halted with this error > message: > > SELECT * FROM eZSession_Session WHERE Hash='' > Table 'eZSession_Session' was not locked with LOCK TABLES Usually, one gets this

Strange error message

2001-06-10 Thread Bård Farstad
Hi All, I've got this php script which has three times now halted with this error message: SELECT * FROM eZSession_Session WHERE Hash='' Table 'eZSession_Session' was not locked with LOCK TABLES After this Apache or MySQL has to be restarted to get contact with the database. I do not underst

Re: Strange error message for create-select query

2001-05-24 Thread Sinisa Milivojevic
brainheap writes: > Hi Sinisa! > > Sinisa Milivojevic wrote: > > > Yes it was. > I used myisamchk -o first > and myisamchk -r next - it repaired indexes as well > > but the result was the same :0( > It was corrupted ?? Can you try again CREATE from SELECT ?? Check out disk space too. Next

re: re: Strange error message for create-select query

2001-05-24 Thread brainheap
Hi Sinisa! Sinisa Milivojevic wrote: > > Then it is very much possible that a table from which you have done > SELECT is corrupted. Check it out. > Yes it was. I used myisamchk -o first and myisamchk -r next - it repaired indexes as well but the result was the same :0( Any other idea? Maybe

Re: Strange error message for create-select query

2001-05-23 Thread Sinisa Milivojevic
alex writes: > Hi ppl! > > I've a strange problem - I'm creating HEAP-type table and filling it > with the result of select query from a relatively big table > (containing ~2187000 records). > > The resulting error message is the following "Got error code 127 from > table handler" > And that's a

Re: Strange error message for create-select query

2001-05-23 Thread alex
Hi ppl! I've a strange problem - I'm creating HEAP-type table and filling it with the result of select query from a relatively big table (containing ~2187000 records). The resulting error message is the following "Got error code 127 from table handler" And that's all :0) I'm just wondering what

[PHP-DB] Re: help - strange error message`

2001-05-03 Thread Peter Pentchev
On Thu, May 03, 2001 at 08:01:11AM -0400, Marc Bragg wrote: > Hi: > > Installed redhat 7.0 and had multiple mysql problems, but php4 from the > disc seemed fine. Updated mysql to 3.23.37, now it works fine, but "php" > gives me: > > PHP Warning: Unable to load dynamic library '/usr/lib/php4/mysq

AW: [PHP-DB] help - strange error message`

2001-05-03 Thread Stefan Siefert
.. stefan Siefert -Ursprungliche Nachricht- Von: Marc Bragg [mailto:[EMAIL PROTECTED]] Gesendet: Donnerstag, 3. Mai 2001 14:01 An: [EMAIL PROTECTED]; [EMAIL PROTECTED] Betreff: [PHP-DB] help - strange error message` Hi: Installed redhat 7.0 and had multiple mysql problems, but php4 from

[PHP-DB] help - strange error message`

2001-05-03 Thread Marc Bragg
Hi: Installed redhat 7.0 and had multiple mysql problems, but php4 from the disc seemed fine. Updated mysql to 3.23.37, now it works fine, but "php" gives me: PHP Warning: Unable to load dynamic library '/usr/lib/php4/mysql.so' - libmysqlclient.so.9: cannot open shared object file: No such file

Re: Strange Error Message, I need explaination.

2001-04-02 Thread Lindsay Adams
You are logged in as root, but what user is mysqld running as? If you stop the database, you can manually remove the test dir from the datadir. Or fix the permissions on your directories in the datadir, so that mysqld can add/remove directories and files. Look in your my.cnf file to find out wha

Strange Error Message, I need explaination.

2001-04-02 Thread Mike Mike
Hello, When I try to drop a database as follows: mysql> drop database test; I get an error message of ERROR 1010: Error dropping database (can't rmdir './test', errno: 39) How do I fix this problem or even how do I delete the database. I'm using RedHat 6.2 and MySQL version: 3.22.32 and i'm lo

Re: Strange error messages

2001-03-10 Thread ryc
ing communication packets) > > What does it mean? Everything seems to work ok, except this strange > error message. The selects and updates works fine. > > MySql: 3.23.32 > I am connecting from a Java with the mm driver. (ver 2.0.2) > > Is it a MySql or a JDBC problem? > Would

Strange error messages

2001-03-10 Thread Tobias Tobiasen
Hello I get a lot of these in my hostname.err file. When the load is high i get around 10 every minute. 010310 13:01:51 Aborted connection 215 to db: 'XXX' user: 'XXX' host: `XXX' (Got an error reading communication packets) What does it mean? Everything seems to wor