#1005 errno 121
Posted by: Hendre Louw
Date: April 28, 2008 04:41AM

Hi

I am trying to create the following table, but get an error message:

CREATE TABLE IF NOT EXISTS `easyquote`.`manufacturer_make` (

`manufacturer_id` INT NOT NULL ,
`make_id` INT NOT NULL ,
PRIMARY KEY ( `manufacturer_id` , `make_id` ) ,
INDEX manufacturer_fk( `manufacturer_id` ASC ) ,
INDEX make_fk( `make_id` ASC ) ,
CONSTRAINT `manufacturer_fk` FOREIGN KEY ( `manufacturer_id` ) REFERENCES `easyquote`.`manufacturer` (
`id`
) ON DELETE NO ACTION ON UPDATE NO ACTION ,
CONSTRAINT `make_fk` FOREIGN KEY ( `make_id` ) REFERENCES `easyquote`.`make` (
`id`
) ON DELETE NO ACTION ON UPDATE NO ACTION
) ENGINE = InnoDB

MySQL said:

#1005 - Can't create table '.\easyquote\manufacturer_make.frm' (errno: 121)

What does errno 121 mean?

Thnaks

Options: ReplyQuote


Subject
Written By
Posted
#1005 errno 121
April 28, 2008 04:41AM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.