Hello, I'm migrating my Postgres database to MySQL and need transactional support. So, I tried creating two InnoDB tables like:
CREATE TABLE IF NOT EXISTS a (
id int(11) NOT NULL auto_increment,
PRIMARY KEY (id)
) TYPE = InnoDB;
CREATE TABLE IF NOT EXISTS b (
id int(11) NOT NULL auto_increment,
PRIMARY KEY (id)
) TYPE = InnoDB;
The first gets created fine but second gives me an error:
#1005 - Can't create table './routols4_navigo/b.frm' (errno: 135)
Any ideas on what I'm doing wrong?
-- This message may have been cut off and the rest will only be shown to members. To become a member, click here --