U kunt een tabel die is vergrendeld om te schrijven niet afkappen. Dit komt omdat "afkappen" betekent "de tabel vernietigen en een nieuwe maken met hetzelfde schema."
U kunt echter leeg de tafel. In plaats van TRUNCATE TABLE asin_one_time_only
gebruik DELETE FROM asin_one_time_only
. Houd er rekening mee dat hierdoor de autoincrement-nummering niet wordt gereset. Als je het ook wilt resetten, gebruik dan ALTER TABLE asin_one_time_only auto_increment=1
Ik stel voor om dit te doen:
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;