MySQL Workbench: How to keep the connection alive

Error Code: 2013. Lost connection to MySQL server during query I am using MySQL Workbench. Also, I am running a batch of inserts, about 1000 lines total (Ex. INSERT INTO mytable SELECT * FROM mysource1; INSERT INTO mytable SELECT * FROM mysource2;…mysource3…mysource4 multiplied 1000 times) Each batch takes a considerable amount of time, some of … Read more

MySQL error code: 1175 during UPDATE in MySQL Workbench

I’m trying to update the column visited to give it the value 1. I use MySQL workbench, and I’m writing the statement in the SQL editor from inside the workbench. I’m writing the following command: UPDATE tablename SET columnname=1; It gives me the following error: You are using safe update mode and you tried to … Read more