Hi,
I solved this problem. Im using MAMP so it was problem of my MAMP.Its happening if you wanna import large database to your localhost server (MAMP). What you need to do is change this file" ...\MAMP\bin\startMysql.sh" with the code bellow:
# /bin/sh
/Applications/MAMP/Library/bin/mysqld_safe --port=3306 --max_allowed_packet=268435456 --socket=/Applications/MAMP/tmp/mysql/mysql.sock --lower_case_table_names=0 --pid-file=/Applications/MAMP/tmp/mysql/mysql.pid --log-error=/Applications/MAMP/logs/mysql_error_log &
Martin