Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to import a .sql file and its failing on creating tables.

Here's the query that fails:

CREATE TABLE `data` (
`id` int(10) unsigned NOT NULL,
`name` varchar(100) NOT NULL,
`value` varchar(15) NOT NULL,
UNIQUE KEY `id` (`id`,`name`),
CONSTRAINT `data_ibfk_1` FOREIGN KEY (`id`) REFERENCES `keywords` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=latin1;    

I exported the .sql from the the same database, I dropped all the tables and now im trying to import it, why is it failing?

MySQL: Can't create table './dbname/data.frm' (errno: 150)

share|improve this question
For essentially all the causes of this error, here is an exhaustive resource for what causes errno 150 (and errno 121/other foreign key errors) in MySQL. – John Smith Sep 29 '12 at 0:47
I've found that the columns must be identical (even the unsigned flag must match). – Justin Skiles Dec 19 '12 at 19:54

13 Answers

up vote 26 down vote accepted

From the MySQL - FOREIGN KEY Constraints Documentation:

If you re-create a table that was dropped, it must have a definition that conforms to the foreign key constraints referencing it. It must have the right column names and types, and it must have indexes on the referenced keys, as stated earlier. If these are not satisfied, MySQL returns error number 1005 and refers to error 150 in the error message.

share|improve this answer
Can two columns from one table reference one column from another table, where it is PK? – Eugene Nov 5 '11 at 0:16
@Eugene: Each of the two columns can have a foreign key relationship to the PK in another table -- not both columns as a single foreign key relationship. – OMG Ponies Nov 5 '11 at 1:04
Thank you. Got it right. – Eugene Nov 5 '11 at 9:29
@OMGPonies: Thanks for answering this Question!..I was looking for it...I also asked a question here stackoverflow.com/questions/13487010/… ....Although I have some good answers but I want to be conform Whether its possible to write Nested Query for my problem? ..I would request you to please answer me too! – Grijesh Chauhan Nov 21 '12 at 15:32
My error was master table had MyISAM and child table InnoDB engine. Current create.sql script was using InnoDB for all tables, but I had very very old installation where first script used MyISAM. – Whome Apr 8 at 9:50

Error 150 means you have a problem with your foreign key. Possibly the key on the foreign table isn't the exact same type?

share|improve this answer

Data types must match exactly. If you are dealing with varchar types, the tables must use the same collation.

share|improve this answer

Error no. 150 means a foreign key constraint failure. You are probably creating this table before the table the foreign key depends on (table keywords). Create that table first and it should work fine.

If it doesn't, remove the foreign key statement and add it after the table is created - you will get a more meaningful error message about the specific constraint failure.

share|improve this answer

150 is usually a foreign key error. Are you sure the keywords table exist?

share|improve this answer

In some cases, you may encounter this error message if there are different engines between the relating tables. For example, a table may be using InnoDB while the other uses MyISAM. Both need to be same

share|improve this answer

I think all these answers while correct are misleading to the question.

The actual answer is this before you start a restore, if you're restoring a dump file with foreign keys:

SET FOREIGN_KEY_CHECKS=0;

because naturally the restore will be creating some constraints before the foreign table even exists.

share|improve this answer

Change the engines of your tables, only innoDB supports foreign keys

share|improve this answer

Perhaps this will help? The definition of the primary key column should be exactly the same as the foreign key column.

share|improve this answer

If the PK table is created in one CHARSET and then you create FK table in another CHARSET..then also you might get this error...I too got this error but after changing the charset to PK charset then it got executed without errors

create table users
(
------------
-------------
)DEFAULT CHARSET=latin1;


create table Emp
(
---------
---------
---------
FOREIGN KEY (userid) REFERENCES users(id) on update cascade on delete cascade)ENGINE=InnoDB, DEFAULT CHARSET=latin1;
share|improve this answer

Make sure that the all tables can support foreign key - InnoDB engine

share|improve this answer

Try:

CREATE TABLE `data` (
  `id` int(10) unsigned NOT NULL,
  `name` varchar(100) NOT NULL,
  `value` varchar(15) NOT NULL,
UNIQUE KEY `id` (`id`,`name`),
CONSTRAINT `data_ibfk_1`,
FOREIGN KEY (`id`) REFERENCES `keywords` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=latin1;  

You need to put a "," between CONSTRAINT and FOREIGN.

share|improve this answer
Wrong! Please try it beforehand or be damn sure before posting answers here. Also note, that this question has an accepted answer and is over 1 year old. – tombom Sep 28 '12 at 11:49

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.