MySQL Forums
Forum List  »  InnoDB

Re: ERROR 1005: Can't create table (errno: 150) - Please help
Posted by: Anil Karamchandani
Date: March 14, 2010 12:41AM

Hi, I have tried to read all the possible solutions to this problem but I am still facing problems in finding the answer. All I have read is that making the fk type as unsigned the problem gets resolved. I am not a mysql expert, infact a newbie.
below is the code which I generated from workbench mysql

please could any one help me with this.

DROP TABLE IF EXISTS `mydb`.`employee` ;

SHOW WARNINGS;
CREATE TABLE IF NOT EXISTS `mydb`.`employee` (
`empID` INT NOT NULL ,
`firstname` VARCHAR(400) NOT NULL ,
`lastname` VARCHAR(400) NOT NULL ,
`company` VARCHAR(400) NOT NULL ,
`username` VARCHAR(400) NOT NULL ,
`password` VARCHAR(400) NOT NULL ,
`location` VARCHAR(400) NOT NULL ,
`managerID` INT NOT NULL ,
`address1` VARCHAR(400) NULL ,
`address2` VARCHAR(400) NULL ,
`city` VARCHAR(45) NOT NULL ,
`state` VARCHAR(45) NOT NULL ,
`zipcode` VARCHAR(45) NOT NULL ,
`country` VARCHAR(45) NOT NULL ,
`datecreated` DATETIME NOT NULL ,
`datemodified` DATETIME NOT NULL ,
PRIMARY KEY (`empID`) )
ENGINE = InnoDB;

SHOW WARNINGS;
CREATE UNIQUE INDEX `username_UNIQUE` ON `mydb`.`employee` (`username` ASC) ;

SHOW WARNINGS;

-- -----------------------------------------------------
-- Table `mydb`.`frmBasic`
-- -----------------------------------------------------
DROP TABLE IF EXISTS `mydb`.`frmBasic` ;

SHOW WARNINGS;
CREATE TABLE IF NOT EXISTS `mydb`.`frmBasic` (
`empname` VARCHAR(400) NOT NULL ,
`reportsto` VARCHAR(400) NOT NULL ,
`location` VARCHAR(200) NOT NULL ,
`performancebegin` VARCHAR(200) NOT NULL ,
`performanceend` VARCHAR(200) NOT NULL ,
`lengthcurrentposition` VARCHAR(200) NOT NULL ,
`lengthwithcompany` VARCHAR(200) NOT NULL ,
`otherinformation` VARCHAR(400) NOT NULL ,
`empID` INT NOT NULL ,
`managerID` INT NOT NULL ,
`datecreated` DATETIME NOT NULL ,
`datemodified` DATETIME NOT NULL ,
CONSTRAINT `frmBasic_employee_empID`
FOREIGN KEY (`empID` )
REFERENCES `mydb`.`employee` (`empID` )
ON DELETE CASCADE
ON UPDATE CASCADE,
CONSTRAINT `frmBasic_employee_managerID`
FOREIGN KEY (`managerID` )
REFERENCES `mydb`.`employee` (`managerID` )
ON DELETE CASCADE
ON UPDATE CASCADE)
ENGINE = InnoDB;

SHOW WARNINGS;
CREATE INDEX `frmBasic_employee_empID` ON `mydb`.`frmBasic` (`empID` ASC) ;

SHOW WARNINGS;
CREATE INDEX `frmBasic_employee_managerID` ON `mydb`.`frmBasic` (`managerID` ASC) ;


while adding frmBasic I get the error "Can't create table (errno: 150) "

Options: ReplyQuote


Subject
Views
Written By
Posted
652771
March 24, 2005 01:20PM
5971
October 09, 2012 09:48PM
4136
December 19, 2011 10:13PM
9708
May 09, 2006 06:01PM
12937
November 15, 2006 02:05PM
7839
T D
February 01, 2008 06:47AM
9830
August 27, 2008 08:08AM
10142
December 03, 2008 10:15AM
6589
May 01, 2009 07:39AM
3875
August 29, 2011 04:46PM
5524
s l
December 15, 2009 01:48PM
5393
December 22, 2009 02:54AM
3638
February 18, 2011 08:55AM
Re: ERROR 1005: Can't create table (errno: 150) - Please help
5955
March 14, 2010 12:41AM
4422
May 24, 2011 10:11AM


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.