Possible Duplicate:
MySQL Error 1153 - Got a packet bigger than ‘max_allowed_packet’ bytes
I have the .sql file which size is 26.3 MB and containing large data.
I am trying to import it via command line by using this command :
mysql -uroot -p dbname < /path/to/file.sql
But it's showing following error while importing
ERROR 1153 (08S01) at line 1: Got a packet bigger than 'max_allowed_packet' bytes
Is it the problem of size or if not then what is the problem?
Thanks