Need to increase tranfer size to mySQL
I want to temporally increase the amount transferred to a mySQL DB on one of my servers to allow a customer to upload a large 200 meg DB with out timing out. Here are my present settings. Basically wondering what in the config would have to be altered.# The MySQL server
[mysqld]
port = 3306
socket = /var/lib/mysql/mysql.sock
skip-locking
key_buffer = 384M
max_allowed_packet = 32M
table_cache = 512
sort_buffer_size = 2M
read_buffer_size = 2M
myisam_sort_buffer_size = 64M
thread_cache = 8
query_cache_size = 32M
# Try number of CPU's*2 for thread_concurrency
thread_concurrency = 8
Thanks in advance.