New answers tagged lock
2
Many experts share many ways on how to overcome this problem. These are my suggestions to play a safe game.
Try to set the below command in a seperate session.
SET SESSION TRANSACTION ISOLATION LEVEL READ UNCOMMITTED ;
use db;
SELECT COLA, COLB into outfile '/tmp/data.csv' from TABLE_NAME;
COMMIT;
exit;
Doing by this way the SELECT statements are ...
Top 50 recent answers are included
