Skip navigation links

MySQL Forums :: InnoDB :: ERROR 1005: Can't create table (errno: 150)


Advanced Search

Re: ERROR 1005: Can't create table (errno: 150)
Posted by: C Fischer ()
Date: May 30, 2008 07:43AM

Hello all,

I found out problems with Integer as PK,FK.

If you change the columns DEC(10) to INT(11) you will get an 1005-150.

Have anybody an idea why? I is this a bug?

MySQL 5.124

-- phpMyAdmin SQL Dump
-- version 2.11.6
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Erstellungszeit: 30. Mai 2008 um 14:13
-- Server Version: 5.1.24
-- PHP-Version: 5.2.6

SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";

-- --------------------------------------------------------

show engine innodb status;
DROP database if exists skeleton;
show warnings;
CREATE DATABASE `skeleton`;
show warnings;
use skeleton;


DROP TABLE IF EXISTS `skeleton_dim1`;
CREATE TABLE IF NOT EXISTS `skeleton_dim1` (
`id` DEC(10) NOT NULL ,
`objID` int(11) NOT NULL DEFAULT '-1' ,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

DROP TABLE IF EXISTS `skeleton_dim2`;
CREATE TABLE IF NOT EXISTS `skeleton_dim2` (
`id` DEC(10) NOT NULL,
`objID` int(11) NOT NULL DEFAULT '-1' ,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;


-- --------------------------------------------------------


DROP TABLE IF EXISTS skeleton_fakt;
CREATE TABLE IF NOT EXISTS skeleton_fakt (
`id` int(11) NOT NULL AUTO_INCREMENT,
`objID` int(11) NOT NULL DEFAULT '-1' COMMENT 'DWH-ID',
`fk_skeleton_dim1` DEC(10) NOT NULL DEFAULT '-2' COMMENT 'Zeigt auf Dimension',
`fk_skeleton_dim2` DEC(10) NOT NULL DEFAULT '-2' COMMENT 'Zeigt auf Dimension',
PRIMARY KEY (`id`),
KEY `fk_skeleton_fakt_skeleton_dim2` (`fk_skeleton_dim2`),
KEY `fk_skeleton_fakt_skeleton_dim2_obj` (`objID`),
KEY `fk_skeleton_fakt_skeleton_dim1` (`fk_skeleton_dim1`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

alter table skeleton_fakt add constraint fk_dim1 foreign key (fk_skeleton_dim1) references skeleton_dim1(id);
show warnings;
-- show engine innodb status;
alter table skeleton_fakt add constraint fk_dim2 foreign key (fk_skeleton_dim2) references skeleton_dim2(id);
show warnings;
-- show engine innodb status;

Options: ReplyQuote


Subject Views Written By Posted
ERROR 1005: Can't create table (errno: 150) 583782 elmpie 03/24/2005 01:20PM
Re: ERROR 1005: Can't create table (errno: 150) 282730 Martin Lukasiewycz 03/28/2005 02:15PM
Re: ERROR 1005: Can't create table (errno: 150) 203194 KimSeong Loh 03/29/2005 08:42PM
Re: ERROR 1005: Can't create table (errno: 150) 147351 Michael Buell 05/30/2005 10:29AM
Re: ERROR 1005: Can't create table (errno: 150) 141823 Chris Yuan 10/27/2005 11:01PM
Re: ERROR 1005: Can't create table (errno: 150) 87588 Deepak Kumar 03/14/2008 11:45PM
ERROR 1005: Can't create table (errno: 150) 68404 Pradeep Max 07/07/2008 09:00AM
Re: ERROR 1005: Can't create table (errno: 150) 46804 karthik sakthi 03/12/2009 07:38AM
Re: ERROR 1005: Can't create table (errno: 150) Global solution 46214 Mayur P Vegad 06/23/2010 08:13AM
Re: ERROR 1005: Can't create table (errno: 150) Global solution 17119 B S 08/13/2011 09:04PM
unfortunately not 2596 Gavin Stokes 10/09/2012 09:48PM
Re: ERROR 1005: Can't create table (errno: 150) 34707 Agyeya Gupta 04/26/2009 06:23AM
Re: ERROR 1005: Can't create table (errno: 150) 23860 Chris Walker 06/28/2009 12:40PM
Re: ERROR 1005: Can't create table (errno: 150) [SOLVED] 45157 Chris Walker 06/28/2009 12:41PM
Re: ERROR 1005: Can't create table (errno: 150) [SOLVED] 27046 Jitendra Gupta 09/04/2009 02:30AM
Re: ERROR 1005: Can't create table (errno: 150) [ANOTHER SOLUTION] 26222 Jim Smith 01/11/2010 10:23AM
Re: ERROR 1005: Can't create table (errno: 150) [ANOTHER SOLUTION] 9293 Esen Sagynov 04/17/2011 05:39AM
Re: ERROR 1005: Can't create table (errno: 150) [SOLVED] 10976 noor afies prasetyo 11/03/2010 10:10PM
Re: ERROR 1005: Can't create table (errno: 150) [SOLVED] 839 marius m 12/17/2012 07:52AM
Re: ERROR 1005: Can't create table (errno: 150) [SOLUTION] 16070 Stefan Catalin 01/29/2010 05:15AM
Re: ERROR 1005: Can't create table (errno: 150) [SOLUTION] 11693 Mahesh Raju 05/11/2010 03:36AM
Re: ERROR 1005: Can't create table (errno: 150) 6510 Petrica Martinescu 04/09/2010 02:05AM
Re: ERROR 1005: Can't create table (errno: 150) 2302 Prasad Kothe 12/19/2011 01:49AM
Do not reply to this thread! 2084 Rick James 12/19/2011 10:13PM
Re: ERROR 1005: Can't create table (errno: 150) 2477 Jayesh Tejwani 08/12/2011 12:19PM
Re: ERROR 1005: Can't create table (errno: 150) 3867 Dan Beavon 10/20/2010 03:59AM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 41975 chaotical_impulse 06/09/2005 04:01AM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 40295 chaotical_impulse 06/09/2005 04:22AM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 32999 Vishal Mody 07/20/2005 03:02PM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 146380 Maria Modeste 08/03/2005 08:08PM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 26223 KimSeong Loh 08/04/2005 02:57AM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 28882 Maria Modeste 08/06/2005 08:38PM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 23946 KimSeong Loh 08/06/2005 11:07PM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 21848 KimSeong Loh 08/07/2005 06:52PM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 18422 jacob wood 08/09/2005 09:43AM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 19258 Maria Modeste 08/10/2005 06:23PM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 2669 Dave Kelly 12/30/2010 06:06AM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 3617 Mahder Gebremedhin 01/01/2011 04:45PM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 2418 Mile Stojanov 01/08/2011 01:56PM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 2216 Mile Stojanov 01/08/2011 01:59PM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 13964 mySQL newbie 11/30/2005 01:11AM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 9988 Halil Özgür 06/24/2008 02:43PM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 7223 Todd S 02/03/2009 02:26PM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 8526 Pradeep Max 07/07/2008 07:37AM
ERROR 1005: Can't create table (errno: 150) :: InnoDB 13874 Thomas Rasoarahona 07/10/2008 08:29AM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 3210 marat beiner 05/11/2010 06:02AM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 5912 Bill Monk 05/19/2009 02:43PM
Solution to Bill Monk's problem creating table structures. 6469 Mohamed Infiyaz Zaffer Khalid 05/19/2009 10:17PM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 4836 David Chell 07/19/2009 11:28PM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 4849 Mohamed Infiyaz Zaffer Khalid 07/20/2009 06:34AM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 35840 Maria Modeste 08/07/2005 10:06AM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 25163 Edwin Dando 09/10/2005 04:31PM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 9267 KimSeong Loh 09/11/2005 04:40AM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 13247 max ac 04/20/2007 04:54AM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 9133 KimSeong Loh 04/29/2007 10:05PM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 8287 Brian Couchman 10/20/2005 09:52AM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 7470 Sean Jones 10/30/2005 10:51PM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 7224 Sean Jones 10/30/2005 10:52PM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 41925 iker landajuela 11/10/2005 04:24AM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 8604 dammika priyakumara 11/14/2006 05:42AM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 710 Abdul Ismail 09/17/2012 03:27AM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 7839 Anadi Misra 08/08/2007 07:06AM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 7797 James Day 08/08/2007 05:24PM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 7324 Sean Jones 10/30/2005 10:37PM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 6937 sheryl tesoro 12/19/2005 05:24AM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 7064 Felix Geerinckx 12/19/2005 06:19AM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 7135 Jim Campbell 02/08/2008 10:19PM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 8020 Jim Campbell 02/08/2008 10:34PM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 3862 Gary machol 04/21/2010 04:55AM
my script 7487 dan bilauca 05/09/2006 06:01PM
Re: my script 6918 kevin martin 11/15/2006 02:05PM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 2269 Guillermo Gutiérrez 10/23/2010 05:23PM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 5457 Steve Cavanagh 12/02/2008 09:05PM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 4509 Marc Binder 05/08/2009 01:56AM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 1373 andrea manconi 10/11/2011 02:30AM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 5243 Jaco Imthorn 11/24/2008 07:20AM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 6965 Kola Yusuf 01/05/2009 04:58AM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 1340 ken wang 08/11/2011 02:04AM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 970 Chris Moreland 02/15/2012 02:10PM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 802 Bellfalasch - 05/07/2012 08:08AM
DO NOT add to this thread! Start a new one! 784 Rick James 05/08/2012 09:19AM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 2060 Aniruddha Manakeshwar 02/21/2012 11:05AM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 7457 Maxim Shumov 10/23/2007 02:34PM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 6289 Ian Channing 12/07/2007 11:41AM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 5832 Suman Kirti 04/21/2008 03:38PM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB ---- [Solved] 7864 Manimaran Ramaraj 08/21/2009 06:18AM
The Answer 4 FK Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB ---- [Solved] 8396 yvonne kire 08/21/2009 05:00PM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 6377 elango elango 12/07/2005 12:51AM
Can't create table (errno: 150) :: InnoDB 10338 Vikram Tambe 05/13/2008 09:38AM
Solved! Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 6300 T D 06/25/2009 03:30AM
Re: Solved! Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 5196 Roland Booth 06/26/2009 10:23AM
Re: Solved! Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 1547 Colleen Boye 12/13/2011 12:43PM
[Solved] Re: Solved! Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 2296 Anand H 02/10/2011 07:24AM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 2226 Arturs Pelniks 08/04/2010 03:04AM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 5204 krishnakumar M 10/14/2008 04:36AM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 5027 Mikhail Shalai 12/02/2008 09:05AM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 4796 Ankit Garg 02/17/2009 01:46AM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 3139 perez kakaire 06/22/2010 06:42AM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB: Solved 3514 perez kakaire 06/22/2010 06:44AM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB: Solved 3063 David Brown 06/29/2010 07:48AM
Re: ERROR 1005: Can't create table (errno: 150) 7296 José Martínez Benavides 12/06/2005 06:22AM
Re: ERROR 1005: Can't create table (errno: 150) 6671 Łukasz Grzenkowicz 03/18/2009 11:56AM
Re: ERROR 1005: Can't create table (errno: 150) 4638 Lisa DeSouza 04/23/2009 07:03AM
Re: ERROR 1005: Can't create table (errno: 150) 6752 satya pal 12/16/2005 12:53AM
Re: ERROR 1005: Can't create table (errno: 150) 6332 emir mahmut bahsi 05/18/2006 12:01PM
Re: ERROR 1005: Can't create table (errno: 150) Possible solution 9838 FREDERIC BEGIN 01/03/2006 11:53AM
Re: ERROR 1005: Can't create table (errno: 150) Possible solution 7456 DnlCY 05/03/2006 06:23AM
Re: ERROR 1005: Can't create table (errno: 150) 6259 Gilles GUEDIKIAN 06/15/2006 07:56AM
Re: ERROR 1005: Can't create table (errno: 150) 7478 Paul Carey 02/27/2007 10:58AM
Re: ERROR 1005: Can't create table (errno: 150) 7759 amol.viit 04/03/2007 07:40PM
Re: ERROR 1005: Can't create table (errno: 150) 5961 KimSeong Loh 04/05/2007 08:57PM
Re: ERROR 1005: Can't create table (errno: 150) 6232 Filippo Monti 10/25/2006 02:14AM
Re: ERROR 1005: Can't create table (errno: 150) 5918 Brendan Abbott 10/25/2006 09:11PM
Re: ERROR 1005: Can't create table (errno: 150) 6411 Albert Arul prakash Rajendran 04/25/2007 03:23AM
Re: ERROR 1005: Can't create table (errno: 150) 6231 Anadi Misra 08/08/2007 07:09AM
Re: ERROR 1005: Can't create table (errno: 150) 6370 Felix Geerinckx 08/08/2007 07:13AM
Re: ERROR 1005: Can't create table (errno: 150) 6944 Alexei Guevara 08/22/2007 09:34AM
Re: ERROR 1005: Can't create table (errno: 150) 5916 Wagner Bianchi 12/17/2007 04:31PM
Re: ERROR 1005: Can't create table (errno: 150) 9323 Andrey Svitlow 01/12/2008 06:00AM
Re: ERROR 1005: Can't create table (errno: 150) 6388 Victor Cherkassky 01/18/2008 06:34AM
Re: ERROR 1005: Can't create table (errno: 150) 6090 T D 02/01/2008 06:47AM
Re: ERROR 1005: Can't create table (errno: 150) 5964 Bug Me Not 02/12/2008 04:46AM
Re: ERROR 1005: Can't create table (errno: 150) [Probable Solution] 9116 Kishore Bulusu 02/16/2008 01:29PM
Re: ERROR 1005: Can't create table (errno: 150) [Probable Solution] 8491 JOBY JOB 03/05/2008 02:59AM
Re: ERROR 1005: Can't create table (errno: 150) [Probable Solution] 7191 Willem P 03/17/2008 07:00AM
Re: ERROR 1005: Can't create table (errno: 150) [Probable Solution] 2758 karthik bhaskaran 06/11/2010 02:55AM
Re: ERROR 1005: Can't create table (errno: 150) [Probable Solution] 6384 Roberto Linares 04/09/2008 11:25AM
Re: ERROR 1005: Can't create table (errno: 150) [Probable Solution] 7706 Adam Franco 04/16/2008 01:37PM
Re: ERROR 1005: Can't create table (errno: 150) 6807 Håkan Askengren 02/26/2008 11:46PM
Re: ERROR 1005: Can't create table (errno: 150) 8435 C Fischer 05/30/2008 07:43AM
Re: ERROR 1005: Can't create table (errno: 150) [Oracle Conversion Potential Solution] 7642 Kevin Clark 06/03/2008 06:52AM
Re: ERROR 1005: Can't create table (errno: 150) 6381 Eduardo Chico 06/17/2008 09:39PM
This worked for me 7575 Kyle Stevens 08/27/2008 08:08AM
A solution to: ERROR 1005: Can't create table (errno: 150) 11612 Andrew Pitonyak 09/10/2008 12:37PM
Re: A solution to: ERROR 1005: Can't create table (errno: 150) 4568 Bhanu Nadendla 06/10/2009 02:29PM
Re: A solution to: ERROR 1005: Can't create table (errno: 150) 4311 ka sanoob 06/29/2009 07:17AM
Considerations: Re: ERROR 1005: Can't create table (errno: 150) 6027 Albert Lombarte 10/22/2008 05:31AM
Unsigned was the problem!! 8171 Franck Mercado 12/03/2008 10:15AM
He's right 4774 Liron Homapour 05/01/2009 07:39AM
Re: ERROR 1005: Can't create table (errno: 150) 3265 elliot Justice 01/26/2010 12:34PM
Re: ERROR 1005: Can't create table (errno: 150) 11952 Stefan Wallin 11/12/2008 01:20PM
Re: ERROR 1005: Can't create table (errno: 150) 6644 Erin W 12/05/2008 11:05AM
Re: ERROR 1005: Can't create table (errno: 150) 5362 banaz kaki 05/05/2009 02:52PM
SOLVED AGAIN: More info - Error 1005 is connected to Error 1452 6160 Mohamed Infiyaz Zaffer Khalid 05/07/2009 10:12PM
Re: ERROR 1005: Can't create table (errno: 150) 4656 Juan Carlos Rubiano 05/25/2009 10:50AM
Re: ERROR 1005: Can't create table (errno: 150) 4698 kashif murtaa 06/02/2009 08:22PM
PLEASE STATE YOUR PROBLEM Re: ERROR 1005 (errno: 150) 4930 Mohamed Infiyaz Zaffer Khalid 06/02/2009 10:04PM
Re: PLEASE STATE YOUR PROBLEM Re: ERROR 1005 (errno: 150) 4799 Felix Glez 06/08/2009 01:28AM
Re: PLEASE STATE YOUR PROBLEM Re: ERROR 1005 (errno: 150) 4883 Felix Glez 06/08/2009 02:04AM
Re: PLEASE STATE YOUR PROBLEM Re: ERROR 1005 (errno: 150) 5075 Andrew Pitonyak 06/28/2009 03:41PM
Re: ERROR 1005 (errno: 150) 1910 Glenn Strickland 08/29/2011 04:46PM
Re: ERROR 1005: Can't create table (errno: 150) 5040 Jeremy Hatcher 08/12/2009 09:29AM
Re: ERROR 1005: Can't create table (errno: 150) 3664 s l 12/15/2009 01:48PM
Re: ERROR 1005: Can't create table (errno: 150) 4889 Aftab Haider 10/19/2009 03:09AM
my problem were different data types 3588 Sebastian Kahl 12/22/2009 02:54AM
Re: ERROR 1005: Can't create table (errno: 150) 3246 Max Mir 02/01/2010 01:49PM
Re: ERROR 1005: Can't create table (errno: 150) 3280 Tuan Nguyen 02/20/2010 09:56PM
Re: ERROR 1005: Can't create table (errno: 150) (Potential solution) 4868 Niranjan Hoskote 03/02/2010 02:06PM
Re: PARENT HAS GOOD SOLUTIONS! 1927 raachachacha 02/18/2011 08:55AM
Re: ERROR 1005: Can't create table (errno: 150) - Please help 3726 Anil Karamchandani 03/14/2010 12:41AM
Re: ERROR 1005: Can't create table (errno: 150) - Please help 3184 Vishwanath Savakar 04/15/2010 07:10AM
Re: ERROR 1005: Can't create table (errno: 150) 3107 Nick Blackwood 04/24/2010 04:47PM
Re: ERROR 1005: Can't create table (errno: 150) 3389 Jacques Meyer 04/28/2010 01:51PM
Re: ERROR 1005: Can't create table (errno: 150) [SOLVED] 3747 Ivan Gromov 07/06/2010 07:36AM
Re: ERROR 1005: Can't create table (errno: 150) 2309 Bill Cogan 07/09/2010 12:21PM
Re: ERROR 1005: Can't create table (errno: 150). [SOLVED] An other solution 3876 Adrian Meyer 07/12/2010 12:49PM
Re: ERROR 1005: Can't create table (errno: 150) 2699 Arturs Pelniks 08/04/2010 05:43AM
Re: ERROR 1005: Can't create table (errno: 150) - my SOLUTION 3059 David Cardoso 09/21/2010 03:31PM
Re: ERROR 1005: Can't create table (errno: 150) - my SOLUTION 2646 Luca Porro 09/27/2010 02:23AM
Re: ERROR 1005: Can't create table (errno: 150) - my SOLUTION 2356 David Cardoso 10/06/2010 03:23PM
Re: ERROR 1005: Can't create table (errno: 150) DEFINITE SOLUTION!!! 4000 Emin Ogur 10/07/2010 10:25PM
Re: ERROR 1005: Can't create table (errno: 150) DEFINITE SOLUTION!!! 4121 Mahder Gebremedhin 10/08/2010 06:54PM
Re: ERROR 1005: Can't create table (errno: 150) [SOLVED] 3119 Nacho Pas 01/26/2011 12:32PM
Re: ERROR 1005: Can't create table (errno: 150) 3733 Kann Vearasilp 11/05/2010 09:08AM
Re: Known Causes PLUS ONE 2418 asd asd 05/24/2011 10:11AM
Re: ERROR 1005: Can't create table (errno: 150) 2471 acoolme.com hulu 08/17/2011 11:24PM
Re: ERROR 1005: Can't create table (errno: 150) 21007 Chetan Dhumale 11/18/2011 12:31AM
Various reasons and solutions for Error 150 (and other foreign key errors) 2054 Philip Flammer 06/07/2012 01:22AM
Re: ERROR 1005: Can't create table (errno: 150) 947 Fredrik k 07/25/2012 08:38AM
ERROR 1005: Can't create table (errno: 150) (New solution) 2605 Yomna Mahmoud 07/30/2012 06:05AM
Re: ERROR 1005: Can't create table (errno: 150) (New solution) 1794 Babak Bandpey 09/25/2012 07:19AM
Yet another mismatch (yet another solution) 1112 Gavin Stokes 10/09/2012 10:24PM
Re: ERROR 1005: Can't create table (errno: 150) 967 Marko Mäkelä 01/13/2013 04:39AM


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.