1. 상황
create table 테이블명1 select 칼럼 from 테이블명2
2. 에러발생
Error Code: 1206. The total number of locks exceeds the lock table size
3. 해결방법
- innodb_buffer_pool_size 수정
예)
mysql> SET global innodb_buffer_pool_size=4294967296;
(크기 단위 : Byte)
끝.