Tuesday, December 16, 2008

mysql how tell if using innoDB

select TABLE_SCHEMA, TABLE_NAME, ENGINE from information_schema.TABLES where ENGINE NOT IN ('MyISAM','MEMORY');

ALTER TABLE foo ENGINE='INNODB'; [alters a table ]

No comments: