we are running MySQL workbench database migration, we are trying to migrate MS SQL server to MySQL. we have 16GB memory on a 64-bit Linux machine and we are using InnoDB.
I got the following error:
Not enough memory to allocate insert buffer of size 1073741824
the error comes from the last step - data migration. I didn't see any error on the server site.
I tried to increase the bulk_insert_buffer_size
set global bulk_insert_buffer_size=1073741824;
but it doesn't work.
Please advise what I should do?
I got the following error:
Not enough memory to allocate insert buffer of size 1073741824
the error comes from the last step - data migration. I didn't see any error on the server site.
I tried to increase the bulk_insert_buffer_size
set global bulk_insert_buffer_size=1073741824;
but it doesn't work.
Please advise what I should do?