I have a MySQL database with 21M records and I'm trying to do an update on about 1M records but the query fails with ERROR 1206 (HY000): The total number of locks exceeds the lock table size.

Is it possible to update the table without acquiring locks?

I don't have access to change MySQL configuration parameters like innodb_buffer_pool_size. Is there a different way to achieve the same?

Thanks

EDIT:

  1. I've tried it in batches of 5000, it works a few times, but I get the same error
  2. I've tried LOCK TABLES to lock the entire table and still it doesn't work.
link|improve this question

64% accept rate
only do it in chunks like faisal said – Haim Evgi Feb 2 '11 at 15:22
What a stupid limitation. Anyone know of a work around? I guess use MyISAM? – chmullig Mar 5 '11 at 15:44
feedback

2 Answers

I think you can use the limit clause to do the updates in batches.

link|improve this answer
I've tried it in batches of 5000, it works a few times, but I get the same error – rampr Feb 2 '11 at 15:29
Then perhaps try tinier chunks? :) – gnur Feb 7 '11 at 11:59
feedback

Try locking at table level rather than row level. Use LOCK TABLES MyTable WRITE. This might solve the problem. No guarantees though! Don't forget to unlock the tables either!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.