Mysql
 sql >> Base de Dados >  >> RDS >> Mysql

MySQL e bloquear uma tabela, ler e truncar


Você não pode truncar uma tabela que está bloqueada para gravação. Isso ocorre porque "truncar" significa "destruir a tabela e recriar uma nova com o mesmo esquema".

No entanto, você pode vazio a mesa. Em vez de TRUNCATE TABLE asin_one_time_only use DELETE FROM asin_one_time_only . Observe que isso não redefinirá a numeração de incremento automático. Se você quiser redefini-lo também, use ALTER TABLE asin_one_time_only auto_increment=1

Sugiro fazer isso:
LOCK TABLES asin_one_time_only READ;
SELECT asin FROM asin_one_time_only;
-- minimize the possibility of someone writing to the table in-between
-- an "UNLOCK TABLES" and a "LOCK TABLES" by just issuing a new LOCK TABLES
-- I am not 100% sure that MySQL will do this atomically, so there is a
-- possibility that you may delete a row that was not read.
-- If this is unacceptable, then use a "LOCK TABLES asin_one_time_only WRITE"
-- from the very beginning.
LOCK TABLES asin_one_time_only WRITE;
DELETE FROM asin_one_time_only;
ALTER TABLE asin_one_time_only auto_increment=1;
UNLOCK TABLES;