| List: | General Discussion | « Previous MessageNext Message » | |
| From: | Pete Harlan | Date: | May 20 1999 4:56am |
| Subject: | Re: a problem (The table 'SQL134597_0' is full) | ||
| View as plain text | |||
> i have sql clause like this: > insert into stat_tmp1 (v) select HTTP_REFERER from log_sessions,log_hits where > log_sessions.time>'19990518' and log_sessions.time<='19990518 23:59:59' and > log_sessions.ID=log_hits.session_ID group by session_ID > > and getting this error: > ERROR 1114 at line 1: The table 'SQL134595_0' is full > Try #1... From the manual: 16.1.6 The table is full error This error occurs when an in-memory temporary table becomes larger than tmp_table_size bytes. To avoid this problem, you can use the -O tmp_table_size=# option to mysqld to increase the temporary table size, or use the SQL option SQL_BIG_TABLES before you issue the problematic query. See section 7.24 SET OPTION syntax. You can also start mysqld with the --big-tables option. This is exactly the same as using SQL_BIG_TABLES for all queries. My /etc/my.cnf includes: [mysqld] set-variable = tmp_table_size=8M which solves this problem for me. HTH, -- Pete Harlan harlan@stripped
| Thread | ||
|---|---|---|
| • DISTINCT and COUNT() SQL Query | Mike Machado | 1 May |
| • Re: DISTINCT and COUNT() SQL Query | jkraai | 1 May |
| • Re: DISTINCT and COUNT() SQL Query | Paul DuBois | 1 May |
| • RE: DISTINCT and COUNT() SQL Query | Don Read | 1 May |
| • Re: DISTINCT and COUNT() SQL Query | Mike Machado | 1 May |
| • Re: DISTINCT and COUNT() SQL Query | Thimble Smith | 1 May |
| • Re: DISTINCT and COUNT() SQL Query | Jim Faucette | 1 May |
| • 3.22.21 RAM Usage | jkraai | 2 May |
| • 3.22.21 RAM Usage | Michael Widenius | 2 May |
| • Re: 3.22.21 RAM Usage | jkraai | 2 May |
| • a problem | glen | 19 May |
| • Re: a problem (The table 'SQL134597_0' is full) | Pete Harlan | 20 May |
| • Re: a problem (The table 'SQL134597_0' is full) | glen | 20 May |
| • Re: a problem (The table 'SQL134597_0' is full) | Benjamin Pflugmann | 21 May |
| • Re: a problem (The table 'SQL134597_0' is full) | Michael Widenius | 24 May |
