table full when using file_per_table

2006-07-13 Thread Rick Taft
I'm using innodb_file_per_table on a version 4.1.12 server on RH linux. At one point I got error 1114 The table 'X' is full. Aren't these tables autoextending? I don't think I reached a linux file size limit. A call to ulimit shows the file size is unlimited. The file was a couple of Gig.

Re: Client still reports table full

2006-06-30 Thread Brent Baisley
Wow, I'm really sorry about that. Left out a zero. I should stop answering questions before the holiday weekend. I was suggesting a minor change to 500 to see if that would work. Everything I've read about adjusting for table full errors always specifies both. Since only one was changed, MySQL

Solved: Client still reports table full

2006-06-30 Thread Jacob, Raymond A Jr
Baisley [mailto:[EMAIL PROTECTED] Sent: Friday, June 30, 2006 8:49 To: Jacob, Raymond A Jr; mysql@lists.mysql.com Subject: Re: Client still reports table full Wow, I'm really sorry about that. Left out a zero. I should stop answering questions before the holiday weekend. I was suggesting a minor

Client still reports table full

2006-06-29 Thread Jacob, Raymond A Jr
Yesterday: I ran the following command: ALTER TABLE data max_rows=1100 Today: The client still reported table is full. I rebooted the client and stopped and started the mysql server. I still get the table is full error on the data table. I ran the command: \ echo SHOW TABLE STATUS LIKE

Re: Client still reports table full

2006-06-29 Thread Dan Buettner
Hmmm ... several references online make it sound like that's all you should need to do (the alter table statement, that is). My next step would be to try a 'CHECK TABLE data QUICK' to see if it reports anything unusual. If it does, issue a 'REPAIR TABLE data' command. If check table quick

Re: Client still reports table full

2006-06-29 Thread Brent Baisley
] To: mysql@lists.mysql.com Sent: Thursday, June 29, 2006 1:37 PM Subject: Client still reports table full Yesterday: I ran the following command: ALTER TABLE data max_rows=1100 Today: The client still reported table is full. I rebooted the client and stopped and started the mysql server. I

RE: Client still reports table full

2006-06-29 Thread Jacob, Raymond A Jr
, 2006 15:53 To: Jacob, Raymond A Jr; mysql@lists.mysql.com Subject: Re: Client still reports table full Oops, left out an important part. You should change the Avg_row_length also. ALTER TABLE AVG_ROW_LENGTH = 50 You need to specify an average row length if you have dynamic length fields

Re: Client still reports table full

2006-06-29 Thread Dan Buettner
Effect. I would assume I should increase it? Thank you/Raymond -Original Message- From: Brent Baisley [mailto:[EMAIL PROTECTED] Sent: Thursday, June 29, 2006 15:53 To: Jacob, Raymond A Jr; mysql@lists.mysql.com Subject: Re: Client still reports table full Oops, left out an important part. You

RE: Client still reports table full

2006-06-29 Thread Jacob, Raymond A Jr
] Sent: Thursday, June 29, 2006 17:55 To: Jacob, Raymond A Jr Cc: mysql@lists.mysql.com Subject: Re: Client still reports table full I'm not sure that avg_row_length has a bearing on your problem right now ... the output of show table status you posted earlier shows that you have: current data

Temp table full (I think) -- how do I fix this?

2005-10-11 Thread Walt Weaver
Hi, I have a job runnning that's modifying a column on a 15-million-row table and is throwing out the following error: Output: Replication Error 1114, slave: replicatenj07, error: Error 'The table '#sql-5303_3c' is full' on query. Default database 'customer__upgrade'. Query: ALTER TABLE

Re: Temp table full (I think) -- how do I fix this?

2005-10-11 Thread walt
Walt Weaver wrote: Hi, I have a job runnning that's modifying a column on a 15-million-row table and is throwing out the following error: Output: Replication Error 1114, slave: replicatenj07, error: Error 'The table '#sql-5303_3c' is full' on query. Default database 'customer__upgrade'.

Re: Temp table full (I think) -- how do I fix this?

2005-10-11 Thread Walt Weaver
Thanks, as it turns out the solution to the problem was a bit more mundane: we ran out of disk space on the partition the tables are on. :) --Walt On 10/11/05, walt [EMAIL PROTECTED] wrote: Walt Weaver wrote: Hi, I have a job runnning that's modifying a column on a 15-million-row table

Re: Temp table full (I think) -- how do I fix this?

2005-10-11 Thread Gleb Paharenko
Hello. Have a look here: http://dev.mysql.com/doc/mysql/en/full-table.html Walt Weaver wrote: Hi, I have a job runnning that's modifying a column on a 15-million-row table and is throwing out the following error: Output: Replication Error 1114, slave: replicatenj07, error: Error

Re: Table full

2005-06-16 Thread mfatene
You have also 3000 * 7 millions columns to left joins to x,y,.. others tables. And you use myisam. this will certainly be a big update problem. I suggest you to transform your query into : 1. select using the left joins to see first the number of rows to be updated 2. according to this number

Re: Table full

2005-06-15 Thread mfatene
hi, seems to be a temp table (sybase notation). see max_temp_table_size Mathias Selon Emmett Bishop [EMAIL PROTECTED]: Howdy all, I have a question about a SQL statement that I'm trying to execute. When I execute the statement I get the following error: The table '#sql_bd6_3' is full. What

Re: Table full

2005-06-15 Thread Emmett Bishop
Mathias, Thanks for the reply. I couldn't find a server variable named max_temp_table_size but I did find one named max_heap_table_size. Is that what you meant? BTW, I forgot to mention that I'm using MySQL 4.0.20. Could it be that this variable that you mention is only in later versions?

Re: Table full

2005-06-15 Thread mfatene
sorri it's tmp_table_size. mysql show variables like '%table%'; ++--+ | Variable_name | Value| ++--+ | innodb_file_per_table | OFF | | innodb_table_locks | ON | | lower_case_table_names | 1| |

Re: Table full

2005-06-15 Thread Emmett Bishop
Mathias, Here's the query: UPDATE customer_indicator INNER JOIN customer_listing_pref ON customer_listing_pref.customer_id = customer_indicator.customer_id AND customer_listing_pref.store_id = customer_indicator.store_id AND customer_listing_pref.store_id = @OLD_STORE_ID LEFT JOIN contact_log ON

Re: Table full

2005-06-15 Thread mos
At 04:35 PM 6/15/2005, you wrote: Mathias, Here's the query: UPDATE customer_indicator INNER JOIN customer_listing_pref ON customer_listing_pref.customer_id = customer_indicator.customer_id AND customer_listing_pref.store_id = customer_indicator.store_id AND customer_listing_pref.store_id =

Re: Table full

2005-06-15 Thread Emmett Bishop
Mike, Thanks for the insight. The sent table has about 7 million records. The other tables involved have tens of thousands of records or there abouts. Not your 100 million size but certainly worth exploring. Thanks again, Tripp --- mos [EMAIL PROTECTED] wrote: Tripp, This problem

Table full

2005-06-14 Thread Emmett Bishop
Howdy all, I have a question about a SQL statement that I'm trying to execute. When I execute the statement I get the following error: The table '#sql_bd6_3' is full. What does this mean exactly? Thanks, Tripp __ Yahoo! Mail Mobile Take

Re: table full on mysql-cluster

2005-06-02 Thread Gleb Paharenko
Hello. There are some tips at: http://dev.mysql.com/doc/mysql/en/mysql-cluster-faq.html See also: http://dev.mysql.com/doc/mysql/en/mysql-cluster-db-definition.html We have the following problem. Cluster means table 'TABLENAME' is full We have 11076890 rows in this table.

table full on mysql-cluster

2005-06-01 Thread Tilmann Grossmann
We have the following problem. Cluster means table 'TABLENAME' is full We have 11076890 rows in this table. Where is the limit defined ? Disk are Not full. RAM not full too. Table engine is NDBCLUSTER. Can anybody help ? --- Powered by: T-Systems Multimedia Solutions

Re: Problem on InnoDB - Tablespace enough but engine said table full

2004-09-04 Thread Ady Wicaksono
but engine said table full I try to detect using MC (Midnight Commander) and found that after ;/data4/ibdata25:1802M it won't write anymore... I remove these data file and add /ibdata1/ibdata10:1500M and /data1/ibdata11:1500M I believe, All data below is empty but corrupt :( data

Re: Problem on InnoDB - Tablespace enough but engine said table full

2004-09-03 Thread Ady Wicaksono
I try to detect using MC (Midnight Commander) and found that after ;/data4/ibdata25:1802M it won't write anymore... I remove these data file and add /ibdata1/ibdata10:1500M and /data1/ibdata11:1500M I believe, All data below is empty but corrupt :( data file defintion --

Re: Problem on InnoDB - Tablespace enough but engine said table full

2004-09-03 Thread Heikki Tuuri
table full I try to detect using MC (Midnight Commander) and found that after ;/data4/ibdata25:1802M it won't write anymore... I remove these data file and add /ibdata1/ibdata10:1500M and /data1/ibdata11:1500M I believe, All data below is empty but corrupt :( data file defintion

Re: Problem on InnoDB - Tablespace enough but engine said table full

2004-09-02 Thread Heikki Tuuri
Ady, InnoDB thinks that the tablespace size is 10 706 MB. You have specified 36 782 MB of data files in the my.cnf line :(. Now you should figure out what are the data files that InnoDB is using, and remove the end of the innodb_data_file_path line, as well as the unused ibdata files. Remember

Re: Problem on InnoDB - Tablespace enough but engine said table full

2004-09-02 Thread Ady Wicaksono
May i know, how could i know which of the data files that InnoDB MySQL engine is not used ? Did i i made a mistake when adding table space ? Heikki Tuuri [EMAIL PROTECTED] wrote: Ady, InnoDB thinks that the tablespace size is 10 706 MB. You have specified 36 782 MB of data files in the

Problem on InnoDB - Tablespace enough but engine said table full

2004-09-01 Thread Ady Wicaksono
I have MySQL for heavy duty job . here is my InnoDB table space definition innodb_data_file_path = /data0/ibdata1:10M;/data0/ibdata2:10M;/data0/ibdata3:1082M;/data0/ibdata4:1500M;/data0/ibdata5:1500M;/

Re: Innodb table full

2003-07-09 Thread mixo
The size is already set to 2000M, and I may be wrong, but the autoextend feature is not support in mysql version earlier that 4. Nils Valentin wrote: Hi Mixo, Do you have the autoextend feature enabled for the innodb table ? It can be set f.e in my.cnf. Best regards Nils Valentin Tokyo/Japan

Re: Innodb table full

2003-07-09 Thread Nils Valentin
Hi Mixo, How about adding a second innodb file and set the first one to a fixed size ? ...If the disk becomes full you may want to add another data file to another disk, for example. Then you have to look the size of `ibdata1', round the size downward to the closest multiple of 1024 * 1024

Re: Innodb table full

2003-07-09 Thread Paul DuBois
At 8:19 +0200 7/9/03, mixo wrote: The size is already set to 2000M, and I may be wrong, but the autoextend feature is not support in mysql version earlier that 4. 3.23.50, actually. Nils Valentin wrote: Hi Mixo, Do you have the autoextend feature enabled for the innodb table ? It can be set

Innodb table full

2003-07-08 Thread mixo
How can I avoid this: DBD::mysql::st execute failed: The table 'Transactions' is full at /usr/lib/perl5/site_perl/5.8.0/DBIx/SearchBuilder/Handle.pm The table type is InnoDB. -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe:

Re: Innodb table full

2003-07-08 Thread Nils Valentin
Hi Mixo, Do you have the autoextend feature enabled for the innodb table ? It can be set f.e in my.cnf. Best regards Nils Valentin Tokyo/Japan 2003 7 8 22:45mixo : How can I avoid this: DBD::mysql::st execute failed: The table 'Transactions' is full at

Re: Table full with InnoDB

2002-04-18 Thread moka
Well, it will NOT let me add more ibdata files: Any ideas?? Thanks, Spiros Here is hostname.err (On a 2GB RAM, 2x1000 CPU, ) InnoDB: Database was not shut down normally. InnoDB: Starting recovery from log files... InnoDB: Starting log scan based on checkpoint at InnoDB: log sequence number 3

Re: Error 1114 table full with 14000 error??

2002-01-18 Thread Heikki Tuuri
Hi! You have hit the problem of easy installation of MySQL-4.0 :) From the manual at http://www.innodb.com/ibman.html : . 2 InnoDB startup options To use InnoDB tables in MySQL-Max-3.23 you MUST specify configuration parameters in the [mysqld] section of the configuration file my.cnf, or

Error 1114 table full with 14000 error??

2002-01-17 Thread moka
I am running Mysql 4.0 with InnoDB on a linux 2.4.0 machine I am doing a mass import of a file with some 40 inserts and I get a strange unknown error 1114 Interestingly enough , this is not exactly reproducible, i.e. the error occurs in slightly different import positions. I have been

table full on innodb-tables?

2001-12-28 Thread riga . riga
(200-300 queries/second) and InnoDB supports row level locking... But after everything having worked fine for 2 days i suddenly got table full errors on every simple INSERT or UPDATE on these Tables. There was no diskspace- or RAM-Problem. I had to switch the tables back to MyISAM to be able

RE: JOIN and Table Full error

2001-12-13 Thread Almar van Pel
- Van: Mayo, Chuck [mailto:[EMAIL PROTECTED]] Verzonden: donderdag, december 13, 2001 04.11 Aan: '[EMAIL PROTECTED]' Onderwerp: JOIN and Table Full error Hi all, I'm pretty new with MySQL and am trying to implement my first join. All works as expected until I try to order the output with an order

RE: JOIN and Table Full error

2001-12-13 Thread Mayo, Chuck
| | +---+--+--+-++-- --+ 48 rows in set (0.00 sec) -Original Message- From: Almar van Pel [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 13, 2001 9:33 AM To: Mayo, Chuck Cc: [EMAIL PROTECTED] Subject: RE: JOIN and Table Full error Hi, Your setting tmp_table_size is probably

JOIN and Table Full error

2001-12-12 Thread Mayo, Chuck
Hi all, I'm pretty new with MySQL and am trying to implement my first join. All works as expected until I try to order the output with an order by clause; select * from Players,Roster where Roster.playerId=Players.id order by Players.plast limit 1,10 and I receive an error from the MySQL

table full

2001-11-30 Thread Richard Clarke
DBD::mysql::st execute failed: The table 'ip_src' is full at /usr/local/lib/perl5/site_perl/5.005/i386-freebsd/Mysql.pm line 172. I get this error when running a query on my database. According to the documentation, in later versions of mysql this problem should be bypassed due to the automatic

table full error

2001-09-05 Thread ian
Hello, I keep getting this: insert into tmp select * from ascend_log_2001_08_25; ERROR 1114: The table 'tmp' is full tmp is a heap table I've looked through the docs and mailing list archives and can't find anything that matches my problem. I'm using 3.23.41 so it should switch to disk if it

Re: table full error

2001-09-05 Thread Adams, Bill TQO
[EMAIL PROTECTED] wrote: Hello, I keep getting this: insert into tmp select * from ascend_log_2001_08_25; ERROR 1114: The table 'tmp' is full tmp is a heap table There is a size limit to temp tables. See: http://www.mysql.com/doc/F/u/Full_table.html about increasing the allowed size for

Re: table full error

2001-09-05 Thread Ian Moore
That's what I thought at first as well. But my tmp_table_size is set to 64MB and I used the --big-tables option just to be sure. Also, show table status says the size is well below 64MB: Name | Type | Row_format | Rows| Avg_row_length | Data_length | Max_data_length tmp| HEAP |

Table Full Error

2001-03-16 Thread Cho Bum Rae
I tried to query below, "select src_ip, byte, packet from table group by src_ip order by bytes desc limit 10" Then DB said, "ERROR 1114: The table 'SQL2997368_0' is full." What is problem?

Re: Table Full Error

2001-03-16 Thread Fred van Engen
On Fri, Mar 16, 2001 at 10:48:59PM +0900, Cho Bum Rae wrote: I tried to query below, "select src_ip, byte, packet from table group by src_ip order by bytes desc limit 10" Then DB said, "ERROR 1114: The table 'SQL2997368_0' is full." What is problem? It really helps to search the list

AW: Table Full Error

2001-03-16 Thread Jens Vonderheide
I tried to query below, "select src_ip, byte, packet from table group by src_ip order by bytes desc limit 10" Then DB said, "ERROR 1114: The table 'SQL2997368_0' is full." MySQL tries to create a temporary table to handle your "order by" command. These tables are usually created in /tmp

Table full error ( I Know its in the manual.. I just don't get it)

2001-01-12 Thread Ralf R. Kotowski
Ok I get a table is full error... So how/where do I set the tmp_table_size ? or the BIG_TABLES option so that its started that way at system start-up? from what I gather the Big_Tables option writes ALL tmp tables to disk, is that correct? so I should use tmp_table_size instead (got 512 MB