tags:

views:

127

answers:

1

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
thanks, so if this value isn't there it means its off
N355A