Re: setting max_allowed_packet dynamically problem

2011-11-03 Thread Claudio Nanni
2011 at 2:28 AM, Claudio Nanni wrote: > >> All the previous hints are correct. >> >> I would also add: the arithmetic is only good for command line settings, >> something like: >> >> max_allowed_packet = 16*1024*1024 >> is not valid in the my.cnf >>

Re: setting max_allowed_packet dynamically problem

2011-11-03 Thread 王科选
: All the previous hints are correct. I would also add: the arithmetic is only good for command line settings, something like: max_allowed_packet = 16*1024*1024 is not valid in the my.cnf max_allowed_packet = 16M is the way to go in the my.cnf Cheers Claudio 2011/11/3 Michael Dykman If you

Re: setting max_allowed_packet dynamically problem

2011-11-03 Thread Satendra
settings, > something like: > > max_allowed_packet = 16*1024*1024 > is not valid in the my.cnf > > max_allowed_packet = 16M > is the way to go in the my.cnf > > Cheers > > Claudio > > 2011/11/3 Michael Dykman > > > If you changed the value in the .cnf and

Re: setting max_allowed_packet dynamically problem

2011-11-03 Thread Claudio Nanni
All the previous hints are correct. I would also add: the arithmetic is only good for command line settings, something like: max_allowed_packet = 16*1024*1024 is not valid in the my.cnf max_allowed_packet = 16M is the way to go in the my.cnf Cheers Claudio 2011/11/3 Michael Dykman >

Re: setting max_allowed_packet dynamically problem

2011-11-03 Thread List Man
Thanks for the explanation. LS On Nov 3, 2011, at 4:41 PM, Dan Nelson wrote: > In the last episode (Nov 03), List Man said: >> I am running Server version: 5.1.45-log MySQL Community Server (GPL) and I >> attempted to change max packet with the following: SET GLOBAL >>

Re: setting max_allowed_packet dynamically problem

2011-11-03 Thread Michael Dykman
es to reflect manually changed values. On Thu, Nov 3, 2011 at 4:37 PM, List Man wrote: > I am running Server version: 5.1.45-log MySQL Community Server (GPL) and I > attempted to change max packet with the following: SET GLOBAL > max_allowed_packet=16*1024*1024; but it did not work

Re: setting max_allowed_packet dynamically problem

2011-11-03 Thread Dan Nelson
In the last episode (Nov 03), List Man said: > I am running Server version: 5.1.45-log MySQL Community Server (GPL) and I > attempted to change max packet with the following: SET GLOBAL > max_allowed_packet=16*1024*1024; but it did not work properly. The > configuration did not cha

setting max_allowed_packet dynamically problem

2011-11-03 Thread List Man
I am running Server version: 5.1.45-log MySQL Community Server (GPL) and I attempted to change max packet with the following: SET GLOBAL max_allowed_packet=16*1024*1024; but it did not work properly. The configuration did not change by using the show variables command. I changed the

log event entry exceeded max_allowed_packet; Increase max_allowed_packet on master

2011-09-28 Thread Jeff Pang
Hello, In last day I inserted a SQL which is about 5M to the master, the max_allowed_packet in both master and slave was 4M at that time. Then the replication crached, and the info is below: 110928 23:31:53 [Note] Slave SQL thread initialized, starting replication in log 'mysql-bin.00273

Re: set max_allowed_packet

2010-02-20 Thread Jesper Wisborg Krogh
2010, at 11:22 AM, Vikram A wrote: Hi experts, When I try to set the packet size to some other value, it is not getting updated. show variables; set max_allowed_packet = 2097152; set global max_allowed_packet = 2097152; it resulting, Query is ok, 0 rows afected (0.00 sec) That's okay.

Re: set max_allowed_packet

2010-02-20 Thread Paul DuBois
On Feb 20, 2010, at 11:22 AM, Vikram A wrote: > Hi experts, > > When I try to set the packet size to some other value, it is not getting > updated. > show variables; > > set max_allowed_packet = 2097152; > set global max_allowed_packet = 2097152; > > it re

set max_allowed_packet

2010-02-20 Thread Vikram A
Hi experts, When I try to set the packet size to some other value, it is not getting updated. show variables; set max_allowed_packet = 2097152; set global max_allowed_packet = 2097152; it resulting, Query is ok, 0 rows afected (0.00 sec) Can you suggest me how set this value to higher one. By

Re: changing 'max_allowed_packet'

2008-05-17 Thread Norbert Tretkowski
Am Freitag, den 16.05.2008, 14:55 -0700 schrieb Sigfrid: > Hello, I have a simple question: how can I change the value of > max_allowed_packet? http://dev.mysql.com/doc/refman/5.1/en/program-variables.html Norbert -- MySQL General Mailing List For list archives: http://lists.mys

Re: changing 'max_allowed_packet'

2008-05-16 Thread Juan Eduardo Moreno
Hi, In your my.cnf put this : [mysqldump] quick max_allowed_packet = 32M Regards, Juan On Fri, May 16, 2008 at 6:55 PM, Sigfrid <[EMAIL PROTECTED]> wrote: > > Hello, I have a simple question: how can I change the value of > max_allowed_packet ? (I use server version: 5.0.51a

changing 'max_allowed_packet'

2008-05-16 Thread Sigfrid
Hello, I have a simple question: how can I change the value of max_allowed_packet ? (I use server version: 5.0.51a MySQL Community Server on MacOS 10.5) In my application I upload file but sometime I get this error Mysql::Error: #08S01Got a packet bigger than 'max_allowed_packet&#

MySQL 4.0, max_allowed_packet and blob insert

2007-10-05 Thread Kilian
Hello all, I'm running MySQL 4.0.24 on Debian Linux and have a problem with a very large blob insert query - it always fails with "#2020: Got packet bigger than 'max_allowed_packet'". I searched the docs and found some references that this value can not be greater

Re: Got a packet bigger than 'max_allowed_packet' -> why is mysql so unkind?

2007-08-01 Thread Hartleigh Burton
Hi Gerald, I have set the max_allowed_packet to 1G on both servers. Any other ideas by any chance? Regards, Hartleigh Burton Resident Geek MRA Entertainment Pty Ltd 5 Dividend St | Mansfield | QLD 4122 | Australia Phone: (07) 3457 5041 Fax: (07) 3349 8806 Mobile: 0421 646 978

Got a packet bigger than 'max_allowed_packet' -> why is mysql so unkind?

2007-07-31 Thread Hartleigh Burton
, largest row at any time is ~100M. Here is what I have been doing... Creating the SQL backup # mysqldump --host=192.168.1.61 --user=hburton -p --opt -- single_transaction --verbose --max_allowed_packet=100M -- net_buffer_length=100M mraentertainment > mraentertainment.sql From

Re: max_allowed_packet in my.ini

2007-02-05 Thread colbey
L PROTECTED]> wrote: > > > > Hi friends, > > I am using mysql 5.0.23-nt on windows, i have to store large binary data > > in database, i have used setting like max_allowed_packet=16M in mysqld > > section of my.ini . > > Now i have a poblem that i want to create a

Re: max_allowed_packet in my.ini

2007-02-04 Thread Dan Nelson
In the last episode (Feb 05), abhishek jain said: > On 2/3/07, abhishek jain <[EMAIL PROTECTED]> wrote: > >I am using mysql 5.0.23-nt on windows, i have to store large binary data > >in database, i have used setting like max_allowed_packet=16M in mysqld > >section o

Re: max_allowed_packet in my.ini

2007-02-04 Thread ViSolve DB Team
mysql or mysqldump. shell> mysql --max_allowed_packet=32M or using mysql> set @@SESSION.max_allowed_packet=32M; mysql> show variables like "max%"; Thanks ViSolve DB Team. - Original Message - From: "abhishek jain" <[EMAIL PROTECTED]> To: Sent: Monday, Feb

Re: max_allowed_packet in my.ini

2007-02-04 Thread abhishek jain
On 2/3/07, abhishek jain <[EMAIL PROTECTED]> wrote: Hi friends, I am using mysql 5.0.23-nt on windows, i have to store large binary data in database, i have used setting like max_allowed_packet=16M in mysqld section of my.ini . Now i have a poblem that i want to create a setup so th

max_allowed_packet in my.ini

2007-02-02 Thread abhishek jain
Hi friends, I am using mysql 5.0.23-nt on windows, i have to store large binary data in database, i have used setting like max_allowed_packet=16M in mysqld section of my.ini . Now i have a poblem that i want to create a setup so that the entry gets added itself into the my,ini , reason being i

Re: How to get size of biggest blob (for max_allowed_packet)?

2006-09-14 Thread Gabriel PREDA
SELECT LENGTH(`CnText`), CHAR_LENGTH(`CnText`), BIT_LENGTH(`CnText`) FROM `Translations` Where: - LENGTH or OCTET_LENGTH - length in bytes - CHAR_LENGTH or CHARACTER_LENGTH - length of the string in characters - BIT_LENGTH - it's LENGTH * 8 You will see a difference betwen LENGTH and CHAR_LENG

How to get size of biggest blob (for max_allowed_packet)?

2006-09-14 Thread Dominik Klein
For adjusting "max allowed packet" value, I need to know the maximum size of my blob fields. How can I get that? Dominik -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]

Re: Got a packet bigger than 'max_allowed_packet' bytes

2006-05-18 Thread Kishore Jalleda
gt; about 7000 lines, on an 800M dump. I guess this tells me I have some > extremely long lines, which would be happy to take up more than > 'max_allowed_packet' bytes, which is set to 16M. > > The specific error I get is: > > ERROR 1153 (08S01) at line 3132: Got a pac

Re: Got a packet bigger than 'max_allowed_packet' bytes

2006-05-18 Thread Dan Trainor
s me I have some extremely long lines, which would be happy to take up more than 'max_allowed_packet' bytes, which is set to 16M. The specific error I get is: ERROR 1153 (08S01) at line 3132: Got a packet bigger than 'max_allowed_packet' bytes Using: mysql -uroot -p database

Re: Got a packet bigger than 'max_allowed_packet' bytes

2006-05-18 Thread Kishore Jalleda
ong lines, which would be happy to take up more than 'max_allowed_packet' bytes, which is set to 16M. The specific error I get is: ERROR 1153 (08S01) at line 3132: Got a packet bigger than 'max_allowed_packet' bytes Using: mysql -uroot -p database < /tmp/800MSQLFile.sql

Got a packet bigger than 'max_allowed_packet' bytes

2006-05-18 Thread Dan Trainor
more than 'max_allowed_packet' bytes, which is set to 16M. The specific error I get is: ERROR 1153 (08S01) at line 3132: Got a packet bigger than 'max_allowed_packet' bytes Using: mysql -uroot -p database < /tmp/800MSQLFile.sql under MySQL 5.0.21. I don't have much experi

Re: max_allowed_packet via SQL Statement

2006-05-17 Thread Dan Nelson
In the last episode (May 18), Jim said: > Is there any way of getting the max_allowed_packet setting via a SQL > statement? mysql> SHOW VARIABLES LIKE 'max_allowed_packet'; ++--+ | Variable_name | Value| ++--+ |

max_allowed_packet via SQL Statement

2006-05-17 Thread Jim
Hi All, Is there any way of getting the max_allowed_packet setting via a SQL statement? Eg. select version(); returns the version and need to do same for max_packet_size.

Re: 4.0.18 restore dump file 'max_allowed_packet' error

2006-03-23 Thread SGreen
times. > > I have this same database running on another machine running solaris, > with no problems, except speed/performance. > This other machine is the one that produces the dump file I'm trying to > import. > It does that with the following command: > > /usr/local/

Re: 4.0.18 restore dump file 'max_allowed_packet' error

2006-03-23 Thread Remo Tex
rformance. This other machine is the one that produces the dump file I'm trying to import. It does that with the following command: /usr/local/bin/mysqldump --opt --complete-insert --max_allowed_packet=32M rt3 | bzip2 -9 > rt3.out-`date +\%Y\%m\%d-\%H`.bz2 I'm trying to restore the

4.0.18 restore dump file 'max_allowed_packet' error

2006-03-22 Thread Luke Vanderfluit
hine is the one that produces the dump file I'm trying to import. It does that with the following command: /usr/local/bin/mysqldump --opt --complete-insert --max_allowed_packet=32M rt3 | bzip2 -9 > rt3.out-`date +\%Y\%m\%d-\%H`.bz2 I'm trying to restore the file on the n

max_allowed_packet

2006-03-16 Thread Jacek Becla
set the max_allowed_packet on the server side (through my.cnf and restarting the server): show variables like '%allowed%'; ++-+ | Variable_name | Value | ++-+ | max_allowed_packet | 1047552 | ++-+ 1 ro

Re: log event entry exceeded max_allowed_packet

2005-09-08 Thread Eric Bergen
t file name and position. MySQL will delete all the current relay logs, open new ones and redownload any unprocessed events from the master. Gleb Paharenko wrote: Hello. In my opinion (it is based on looking through the source code, but I can be wrong) - the max_allowed_packet should be at

Re: log event entry exceeded max_allowed_packet

2005-09-08 Thread Gleb Paharenko
Hello. In my opinion (it is based on looking through the source code, but I can be wrong) - the max_allowed_packet should be at least more than any event in the master's binary log. The tool for researching binary logs is mysqlbinlog utility. See: http://dev.mysql.com/doc/mys

log event entry exceeded max_allowed_packet

2005-09-08 Thread Jacob Friis
Is there any way I can find out how big I should set max_allowed_packet? I have changed it from the default 1M to 32M, but I still get that error. Or is it a bug? We use MySQL 4.0.12 on the slave and 4.0.15-max on the master. How big should I set max_allowed_packet? The servers are dual Pentium

Re: how to determine right value for max_allowed_packet?

2005-08-11 Thread Gleb Paharenko
Hello. Maybe. Use --skip-extended-insert in this case. Sid Lane <[EMAIL PROTECTED]> wrote: > I think I've foind the culprit: > > a problem (logical, not physical) had been discovered with a couple of > tables which were fixed by truncating them in the production > replication master and

Re: how to determine right value for max_allowed_packet?

2005-08-11 Thread Sid Lane
I think I've foind the culprit: a problem (logical, not physical) had been discovered with a couple of tables which were fixed by truncating them in the production replication master and reloading them from a mysqldump of the corrected tables from the qc/dev database. the dump was done w/the -e (

Re: how to determine right value for max_allowed_packet?

2005-08-05 Thread Gleb Paharenko
text value come through yesterday. > >so does the max_allowed_packet need to be big enough to accomodate a >row, a DML statement or a transaction (they're in innodb tables)? -- For technical support contracts, goto https://order.mysql.com/?ref=ensita Th

Re: how to determine right value for max_allowed_packet?

2005-08-05 Thread Gleb Paharenko
) > fire where replication failed with an: > > "Error reading packet from server: Packet too large - increase > max_allowed_packet on this server" > > in my error log. I bumped it up from 1M to 4M, restarted mysql (as > well as dependant web servers) and replication

how to determine right value for max_allowed_packet?

2005-08-04 Thread Sid Lane
all, I just finshed hosing down a minor (that could have been FAR worse) fire where replication failed with an: "Error reading packet from server: Packet too large - increase max_allowed_packet on this server" in my error log. I bumped it up from 1M to 4M, restarted mysql (as well as

Replication error: max_allowed_packet (UNCLASSIFIED)

2005-04-05 Thread Baumrucker, Christopher T Mr ITA-IC/Lockheed Martin
Classification: UNCLASSIFIED Caveats: NONE All, I'm getting the not-so-mysterious error in my slave log file as follows: [ERROR] Error reading packet from server: log event entry exceeded max_allowed_packet; Increase max_allowed_packet on master (server_errno=1236) [ERROR] Got fatal

Re: Circumventing the max_allowed_packet limit?

2005-01-28 Thread Gleb Paharenko
Hello. > Q2. I doodled around a little bit with the SET command and I was able to > change the session version of the max_allowed_packet server parameter. Both the client and the server have their own max_allowed_packet variable, so if you want to handle big packets, you must in

Circumventing the max_allowed_packet limit?

2005-01-28 Thread Martin Olsson
Hi MySQL ppl, I recently ran into some problems with uploading large files through a HTML form and then putting these files into a MySQL BLOB field. I read about the server parameter max_allowed_packet which turned out to be the problem. My script is going to be redistributed to it needs to

Re: Checking max_allowed_packet from PHP during runtime?

2005-01-26 Thread Keith Ivey
" and "Value". If you're just interested in max_allowed_packet, you can eliminate the part of the result set you won't be using by changing the query to SHOW VARIABLES LIKE 'max_allowed_packet'; and then looking at $row['Value'] for the one ro

Checking max_allowed_packet from PHP during runtime?

2005-01-26 Thread Martin Olsson
rrors because I upload to large files, ie the files are larger than the MySQL servers max_allowed_packet parameter. I would like to check this value during runtime and take proper action. So; How can I check the value of MySQLs max_allowed_packet parameter from a PHP script during runtime? I tr

Re: max_allowed_packet error (2020) in mysqldump 3.23.54

2004-08-17 Thread Paul DuBois
At 12:14 +1000 8/18/04, Jens Porup wrote: G'day, Trying to get a dump of a production database in mysql 3.23.54, mysqldump version 8.22. This is what I'm getting: rack002:~# mysqldump -u root -p rt2 > rt2.dump Enter password: mysqldump: Error 2020: Got packet bigger than '

max_allowed_packet error (2020) in mysqldump 3.23.54

2004-08-17 Thread Jens Porup
G'day, Trying to get a dump of a production database in mysql 3.23.54, mysqldump version 8.22. This is what I'm getting: rack002:~# mysqldump -u root -p rt2 > rt2.dump Enter password: mysqldump: Error 2020: Got packet bigger than 'max_allowed_pa

Re: Replication, max_allowed_packet and LOAD DATA INFILE

2004-06-29 Thread Guilhem Bichot
Hi, > Someone please clear things up for me a little! Here is a try :) > Seems the data exceeded the max_allowed_packet size which is 1M on master and > slaves so all slaves stopped replicating. > > Question is, why did this happen and how could this have been av

Replication, max_allowed_packet and LOAD DATA INFILE

2004-06-16 Thread Mikael Fridh
Hi, I experienced a problem when slaves stopped replicating today. A LOAD DATA INFILE was performed on the master DB. Seems the data exceeded the max_allowed_packet size which is 1M on master and slaves so all slaves stopped replicating. Question is, why did this happen and how could this have

Re: max_allowed_packet error

2003-07-02 Thread Tina Motaye
No, nothing of the sort in the my.cnf file. :( - Original Message - From: "Dathan Vance Pattishall" <[EMAIL PROTECTED]> To: "'Tina Motaye'" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Tuesday, July 01, 2003 8:33 PM Subject: RE: max_al

RE: max_allowed_packet error

2003-07-01 Thread Dathan Vance Pattishall
AM -->To: [EMAIL PROTECTED] -->Subject: max_allowed_packet error --> -->hello, --> -->I'm exporting a very big table from ACCESS to MySQL using ODBC. --> -->I was able to do it by increasing the value of the max_allowed_packet -->variable in mysql since otherwise ODBC

max_allowed_packet error

2003-07-01 Thread Tina Motaye
hello, I'm exporting a very big table from ACCESS to MySQL using ODBC. I was able to do it by increasing the value of the max_allowed_packet variable in mysql since otherwise ODBC lost the connection and I was getting an error. But the thing is I dropped the table for a test and now I&

RE: Can a big transaction cause the error in max_allowed_packet?

2002-11-29 Thread Chung Ha-nyung
mber 29, 2002 7:48 PM > To: [EMAIL PROTECTED] > Subject: Re: Can a big transaction cause the error in > max_allowed_packet? > > > Ha-nyung, > > - Original Message - > From: ""Chung Ha-nyung"" <[EMAIL PROTECTED]> > Newsgroups: mai

Re: Can a big transaction cause the error in max_allowed_packet?

2002-11-29 Thread Heikki Tuuri
Ha-nyung, - Original Message - From: ""Chung Ha-nyung"" <[EMAIL PROTECTED]> Newsgroups: mailing.database.mysql Sent: Friday, November 29, 2002 8:25 AM Subject: Can a big transaction cause the error in max_allowed_packet? > > My table structure is very si

Can a big transaction cause the error in max_allowed_packet?

2002-11-28 Thread Chung Ha-nyung
My table structure is very simple and does not use big column like text nor blub at all. But when I load several million rows into master server using mysqlimport, on slave I got the error like 021129 13:24:40 Error reading packet from server: log event entry exceeded max_allowed_packet

Re: max_allowed_packet size!

2002-08-26 Thread Karthik
2002-8-13' and plan.date<='2002-12-31' and user.userid in ('abhijitg','anand','anil_m','gopal','gouri','leena','maheshg','nitin','pras ad','ramesh','rohit','samir_more

Re: max_allowed_packet size!

2002-08-26 Thread Dicky Wahyu Purnomo
Pada Tue, 27 Aug 2002 10:03:59 +0530 "Karthik" <[EMAIL PROTECTED]> menulis : > Hi, > > Does the mysql max_allowed_packet restrict the amount of data that a query > can fetch ? > > I am facing a problem wherein my query specifies all the 13000 odd records >

max_allowed_packet size!

2002-08-26 Thread Karthik
Hi, Does the mysql max_allowed_packet restrict the amount of data that a query can fetch ? I am facing a problem wherein my query specifies all the 13000 odd records if i specify only a few columns. If i run the same join query with lots of columns, it only fetches 8000 odd records. What

Re: max_allowed_packet (was: Re: 4.0.x bug with LONGTEXT?)

2002-08-21 Thread Roger Baklund
* Victoria Reznichenko > RB> 3) How can the server know that the max_allowed_packet for > RB> _this_ connection > RB> (the UPDATE'ing connection) isn't smaller than the > RB> max_allowed_packet value > RB> for a future SELECT connection? (I could do t

Re: Re: max_allowed_packet (was: Re: 4.0.x bug with LONGTEXT?)

2002-08-21 Thread Victoria Reznichenko
Roger, Tuesday, August 20, 2002, 5:34:25 PM, you wrote: RB> Maybe... :) RB> On the other hand: RB> 1) The documentation on max_allowed_packet talks only about transferring RB> data, not storing. (This should be easy to fix.) Agreed.. RB> 2) The mere existence of LONGBL

Re: max_allowed_packet (was: Re: 4.0.x bug with LONGTEXT?)

2002-08-20 Thread Roger Baklund
> > > ++--+--+---+ > > > > | id | LENGTH(txt1) | LENGTH(txt2) | LENGTH(total) | > > > > ++--+--+---+ > > > > | 1 | 8390060 | 8390060 | 0 | > > > > ++--+--+

RE: max_allowed_packet (was: Re: 4.0.x bug with LONGTEXT?)

2002-08-20 Thread Luc Foisy
TH(total) | > > > ++--+--+---+ > > > | 1 | 8390060 | 8390060 | 0 | > > > ++--+--+---+ > > > > > The same result. > > > MySQL inserts NULL in the total, be

max_allowed_packet (was: Re: 4.0.x bug with LONGTEXT?)

2002-08-20 Thread Roger Baklund
++--+--+---+ > > > The same result. > > MySQL inserts NULL in the total, because you can't store data more > > than max_allowed_packet. > > Thanks for the clarification, Victoria. I'm sorry, but this is not very clear to m

Packet is larger than max_allowed_packet

2002-08-16 Thread Rahul Torvi
larger than max_allowed_packet from server configuration of 65536 bytes --- I m using Redhat 7.3, mysql-3.23.51-max with custom kernel. The same thing works on my other machine with the same OS and same mysql version but default RH 7.3 kernel. Is this

Re: Packet is Larger than max_allowed_packet from server configuration

2001-12-08 Thread Mark Matthews
> i!='AP' AND i != 'J3' AND...to 5000). > > > > > > When I try to execute the Query I get the error: > > > > > > "Packet is Larger than max_allowed_packet from server configuration of > 65536 > > > bytes" > >

Re: Packet is Larger than max_allowed_packet from server configuration of 65536 bytes

2001-12-07 Thread TAKAHASHI, Tomohiro
Hi, Max allowed packet size of a SQL statement is 16MB. Its limit is from structure of MySQL packet. So, please set environment as below. --set-variable=max_allowed_packet=16M Thanks. Chris Stark wrote: > > Hi, > > I am having a problem with the configuration of the mys

Packet is Larger than max_allowed_packet from server configuration of 65536 bytes

2001-12-06 Thread Chris Stark
I try to execute the Query I get the error: "Packet is Larger than max_allowed_packet from server configuration of 65536 bytes" I read the MySQL documentation and increased my max_allowed_packet to 24M on both the client and the Server in the my.cnf, but I still get the same errorIs

Too big for max_allowed_packet - service problem or JDBC driver problem?

2001-10-19 Thread Peter Bailey
ery: Unexpected Exception: java.lang.IllegalArgumentException message given: Packet is larger than max_allowed_packet from server configuration of 65536 bytes [java] at org.gjt.mm.mysql.Connection.execSQL(Connection.java:898) [java] at org.gjt.mm.mysql.Connection.execSQL(Connection.jav

Got a packet bigger than 'max_allowed_packet'

2001-08-23 Thread Martin MOKREJŠ
s, I have set max_allowed_packet=16M in my.conf). As far as I understand we can't set max_allowed_packet to higher value. Anyway, in this case the file has 1.6MB, so it should fit into 16MB. When I upgraded on this EtherExperssPro100 machine mysql to 3.23.41, the mysql client gives me again back the 200^ er

log event entry exceeded max_allowed_packet error: findings (again)

2001-06-18 Thread Jean-Luc Fontaine
Today on a slave I got (this actually has occured several times in the past months): Slave: connected to master '[EMAIL PROTECTED]:3306', replication started in log 'xxx-bin.040' at position 47694 010511 10:37:19 Error reading packet from server: log event entry exceeded

: log event entry exceeded max_allowed_packet

2001-06-14 Thread Steven Goodliff
Hello, I'm trying to set up replication, but I cant get any further than this message on the slave. Error reading packet from server: log event entry exceeded max_allowed_packet My max allowed packet size is 512M which I've gradually reached while trying to stop the above err

log event entry exceeded max_allowed_packet error: findings

2001-05-11 Thread Jean-Luc Fontaine
Today on a slave I got: Slave: connected to master '[EMAIL PROTECTED]:3306', replication started in log 'xxx-bin.040' at position 47694 010511 10:37:19 Error reading packet from server: log event entry exceeded max_allowed_packet - increase max_allowed_packet on m

Re: Max_allowed_packet variable ??

2001-02-25 Thread Miguel Angel Solórzano
handling large binary data, but without you have used all the recommendations about, we can not to put work time for this unusual case. Regards, Miguel >Hi, > >This is how I set the variables in the my.cnf file. > >[mysqld] >set-variable = key_buffer_size=16M >set-variable =

Max_allowed_packet variable ??

2001-02-25 Thread Li Sze
Hi, This is how I set the variables in the my.cnf file. [mysqld] set-variable = key_buffer_size=16M set-variable = max_allowed_packet=16M I can only insert 8M at any one time using SQLPutData. Even if I insert 1024K more, the SQLPutData will return a "Function sequence error&q