Does anyone know how to find the DELAY_KEY_WRITE value for a specific table? It's a table option for the Create Table syntax. The table was created a while ago by someone else and i need to know if it has DELAY_KEY_WRITE enabled. Thanks
+1
A:
SHOW CREATE TABLE mytable
It will show DELAY_KEY_WRITE = 1
if it's enabled, won't show anything if it's not.
Quassnoi
2009-07-08 18:08:26
thanks, so if this value isn't there it means its off
N355A
2009-07-08 18:15:43