Skip navigation links

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


Advanced Search

A solution to: ERROR 1005: Can't create table (errno: 150)
Posted by: Andrew Pitonyak ()
Date: September 10, 2008 12:37PM

I tried a command such as:

ALTER TABLE TABLE1 ADD ( FOREIGN KEY (FIELD1) REFERENCES TABLE2(FIELD2) ) ;

The generated error is of the form:

ERROR 1005 (HY000): Can't create table '.\schema_name\#sql-97c_c.frm' (errno: 150)

The error lead me to believe that it could not create the modified table specified by the alter command. First, I inspected FIELD1 in TABLE1.

SHOW CREATE TABLE TABLE1;

This shows the details required to create TABLE1, including very specific details related to the individual fields. Pay attention to the exact definition for FIELD1 and the character set for the field or table. Now, repeat for FIELD2 in TABLE2.

If the fields are not declared exactly alike, then use the alter command to make them the same. For example, I had something like:

FIELD2 varchar(20) DEFAULT NULL
FIELD1 varchar(20) NOT NULL DEFAULT ''

The fields are very similar, but they are not exactly the same. Now, I do not know for certain that they really must be exactly the same, but it is something that I did.

ALTER TABLE TABLE2 CHANGE FIELD2 FIELD2 VARCHAR(20) NOT NULL DEFAULT '';

If required, do the same for both tables and fields. I still received the error. Next, I created an index on FIELD2.

ALTER TABLE TABLE2 ADD INDEX (FIELD2);

Finally, creating the foreign key works.

Options: ReplyQuote


Subject Views Written By Posted
ERROR 1005: Can't create table (errno: 150) 579215 elmpie 03/24/2005 01:20PM
Re: ERROR 1005: Can't create table (errno: 150) 280873 Martin Lukasiewycz 03/28/2005 02:15PM
Re: ERROR 1005: Can't create table (errno: 150) 202107 KimSeong Loh 03/29/2005 08:42PM
Re: ERROR 1005: Can't create table (errno: 150) 146645 Michael Buell 05/30/2005 10:29AM
Re: ERROR 1005: Can't create table (errno: 150) 141121 Chris Yuan 10/27/2005 11:01PM
Re: ERROR 1005: Can't create table (errno: 150) 87188 Deepak Kumar 03/14/2008 11:45PM
ERROR 1005: Can't create table (errno: 150) 68078 Pradeep Max 07/07/2008 09:00AM
Re: ERROR 1005: Can't create table (errno: 150) 46574 karthik sakthi 03/12/2009 07:38AM
Re: ERROR 1005: Can't create table (errno: 150) Global solution 45817 Mayur P Vegad 06/23/2010 08:13AM
Re: ERROR 1005: Can't create table (errno: 150) Global solution 16841 B S 08/13/2011 09:04PM
unfortunately not 2444 Gavin Stokes 10/09/2012 09:48PM
Re: ERROR 1005: Can't create table (errno: 150) 34535 Agyeya Gupta 04/26/2009 06:23AM
Re: ERROR 1005: Can't create table (errno: 150) 23757 Chris Walker 06/28/2009 12:40PM
Re: ERROR 1005: Can't create table (errno: 150) [SOLVED] 44899 Chris Walker 06/28/2009 12:41PM
Re: ERROR 1005: Can't create table (errno: 150) [SOLVED] 26929 Jitendra Gupta 09/04/2009 02:30AM
Re: ERROR 1005: Can't create table (errno: 150) [ANOTHER SOLUTION] 26015 Jim Smith 01/11/2010 10:23AM
Re: ERROR 1005: Can't create table (errno: 150) [ANOTHER SOLUTION] 9179 Esen Sagynov 04/17/2011 05:39AM
Re: ERROR 1005: Can't create table (errno: 150) [SOLVED] 10882 noor afies prasetyo 11/03/2010 10:10PM
Re: ERROR 1005: Can't create table (errno: 150) [SOLVED] 765 marius m 12/17/2012 07:52AM
Re: ERROR 1005: Can't create table (errno: 150) [SOLUTION] 15975 Stefan Catalin 01/29/2010 05:15AM
Re: ERROR 1005: Can't create table (errno: 150) [SOLUTION] 11623 Mahesh Raju 05/11/2010 03:36AM
Re: ERROR 1005: Can't create table (errno: 150) 6467 Petrica Martinescu 04/09/2010 02:05AM
Re: ERROR 1005: Can't create table (errno: 150) 2259 Prasad Kothe 12/19/2011 01:49AM
Do not reply to this thread! 2039 Rick James 12/19/2011 10:13PM
Re: ERROR 1005: Can't create table (errno: 150) 2440 Jayesh Tejwani 08/12/2011 12:19PM
Re: ERROR 1005: Can't create table (errno: 150) 3841 Dan Beavon 10/20/2010 03:59AM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 41920 chaotical_impulse 06/09/2005 04:01AM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 40031 chaotical_impulse 06/09/2005 04:22AM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 32791 Vishal Mody 07/20/2005 03:02PM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 145376 Maria Modeste 08/03/2005 08:08PM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 26148 KimSeong Loh 08/04/2005 02:57AM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 28805 Maria Modeste 08/06/2005 08:38PM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 23886 KimSeong Loh 08/06/2005 11:07PM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 21795 KimSeong Loh 08/07/2005 06:52PM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 18389 jacob wood 08/09/2005 09:43AM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 19221 Maria Modeste 08/10/2005 06:23PM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 2635 Dave Kelly 12/30/2010 06:06AM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 3557 Mahder Gebremedhin 01/01/2011 04:45PM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 2383 Mile Stojanov 01/08/2011 01:56PM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 2192 Mile Stojanov 01/08/2011 01:59PM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 13935 mySQL newbie 11/30/2005 01:11AM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 9956 Halil Özgür 06/24/2008 02:43PM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 7195 Todd S 02/03/2009 02:26PM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 8499 Pradeep Max 07/07/2008 07:37AM
ERROR 1005: Can't create table (errno: 150) :: InnoDB 13696 Thomas Rasoarahona 07/10/2008 08:29AM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 3174 marat beiner 05/11/2010 06:02AM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 5874 Bill Monk 05/19/2009 02:43PM
Solution to Bill Monk's problem creating table structures. 6426 Mohamed Infiyaz Zaffer Khalid 05/19/2009 10:17PM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 4809 David Chell 07/19/2009 11:28PM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 4820 Mohamed Infiyaz Zaffer Khalid 07/20/2009 06:34AM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 35717 Maria Modeste 08/07/2005 10:06AM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 25002 Edwin Dando 09/10/2005 04:31PM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 9245 KimSeong Loh 09/11/2005 04:40AM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 13125 max ac 04/20/2007 04:54AM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 9102 KimSeong Loh 04/29/2007 10:05PM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 8254 Brian Couchman 10/20/2005 09:52AM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 7440 Sean Jones 10/30/2005 10:51PM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 7204 Sean Jones 10/30/2005 10:52PM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 41519 iker landajuela 11/10/2005 04:24AM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 8575 dammika priyakumara 11/14/2006 05:42AM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 677 Abdul Ismail 09/17/2012 03:27AM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 7812 Anadi Misra 08/08/2007 07:06AM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 7769 James Day 08/08/2007 05:24PM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 7298 Sean Jones 10/30/2005 10:37PM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 6910 sheryl tesoro 12/19/2005 05:24AM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 7041 Felix Geerinckx 12/19/2005 06:19AM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 7107 Jim Campbell 02/08/2008 10:19PM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 7995 Jim Campbell 02/08/2008 10:34PM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 3828 Gary machol 04/21/2010 04:55AM
my script 7459 dan bilauca 05/09/2006 06:01PM
Re: my script 6883 kevin martin 11/15/2006 02:05PM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 2244 Guillermo Gutiérrez 10/23/2010 05:23PM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 5435 Steve Cavanagh 12/02/2008 09:05PM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 4485 Marc Binder 05/08/2009 01:56AM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 1348 andrea manconi 10/11/2011 02:30AM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 5219 Jaco Imthorn 11/24/2008 07:20AM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 6923 Kola Yusuf 01/05/2009 04:58AM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 1311 ken wang 08/11/2011 02:04AM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 947 Chris Moreland 02/15/2012 02:10PM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 782 Bellfalasch - 05/07/2012 08:08AM
DO NOT add to this thread! Start a new one! 763 Rick James 05/08/2012 09:19AM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 2014 Aniruddha Manakeshwar 02/21/2012 11:05AM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 7429 Maxim Shumov 10/23/2007 02:34PM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 6264 Ian Channing 12/07/2007 11:41AM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 5806 Suman Kirti 04/21/2008 03:38PM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB ---- [Solved] 7829 Manimaran Ramaraj 08/21/2009 06:18AM
The Answer 4 FK Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB ---- [Solved] 8353 yvonne kire 08/21/2009 05:00PM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 6346 elango elango 12/07/2005 12:51AM
Can't create table (errno: 150) :: InnoDB 10275 Vikram Tambe 05/13/2008 09:38AM
Solved! Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 6257 T D 06/25/2009 03:30AM
Re: Solved! Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 5164 Roland Booth 06/26/2009 10:23AM
Re: Solved! Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 1516 Colleen Boye 12/13/2011 12:43PM
[Solved] Re: Solved! Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 2247 Anand H 02/10/2011 07:24AM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 2206 Arturs Pelniks 08/04/2010 03:04AM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 5180 krishnakumar M 10/14/2008 04:36AM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 5003 Mikhail Shalai 12/02/2008 09:05AM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 4780 Ankit Garg 02/17/2009 01:46AM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB 3096 perez kakaire 06/22/2010 06:42AM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB: Solved 3488 perez kakaire 06/22/2010 06:44AM
Re: ERROR 1005: Can't create table (errno: 150) :: InnoDB: Solved 3036 David Brown 06/29/2010 07:48AM
Re: ERROR 1005: Can't create table (errno: 150) 7269 José Martínez Benavides 12/06/2005 06:22AM
Re: ERROR 1005: Can't create table (errno: 150) 6644 Łukasz Grzenkowicz 03/18/2009 11:56AM
Re: ERROR 1005: Can't create table (errno: 150) 4617 Lisa DeSouza 04/23/2009 07:03AM
Re: ERROR 1005: Can't create table (errno: 150) 6733 satya pal 12/16/2005 12:53AM
Re: ERROR 1005: Can't create table (errno: 150) 6293 emir mahmut bahsi 05/18/2006 12:01PM
Re: ERROR 1005: Can't create table (errno: 150) Possible solution 9805 FREDERIC BEGIN 01/03/2006 11:53AM
Re: ERROR 1005: Can't create table (errno: 150) Possible solution 7430 DnlCY 05/03/2006 06:23AM
Re: ERROR 1005: Can't create table (errno: 150) 6240 Gilles GUEDIKIAN 06/15/2006 07:56AM
Re: ERROR 1005: Can't create table (errno: 150) 7449 Paul Carey 02/27/2007 10:58AM
Re: ERROR 1005: Can't create table (errno: 150) 7734 amol.viit 04/03/2007 07:40PM
Re: ERROR 1005: Can't create table (errno: 150) 5938 KimSeong Loh 04/05/2007 08:57PM
Re: ERROR 1005: Can't create table (errno: 150) 6215 Filippo Monti 10/25/2006 02:14AM
Re: ERROR 1005: Can't create table (errno: 150) 5896 Brendan Abbott 10/25/2006 09:11PM
Re: ERROR 1005: Can't create table (errno: 150) 6390 Albert Arul prakash Rajendran 04/25/2007 03:23AM
Re: ERROR 1005: Can't create table (errno: 150) 6212 Anadi Misra 08/08/2007 07:09AM
Re: ERROR 1005: Can't create table (errno: 150) 6346 Felix Geerinckx 08/08/2007 07:13AM
Re: ERROR 1005: Can't create table (errno: 150) 6924 Alexei Guevara 08/22/2007 09:34AM
Re: ERROR 1005: Can't create table (errno: 150) 5899 Wagner Bianchi 12/17/2007 04:31PM
Re: ERROR 1005: Can't create table (errno: 150) 9275 Andrey Svitlow 01/12/2008 06:00AM
Re: ERROR 1005: Can't create table (errno: 150) 6371 Victor Cherkassky 01/18/2008 06:34AM
Re: ERROR 1005: Can't create table (errno: 150) 6062 T D 02/01/2008 06:47AM
Re: ERROR 1005: Can't create table (errno: 150) 5944 Bug Me Not 02/12/2008 04:46AM
Re: ERROR 1005: Can't create table (errno: 150) [Probable Solution] 9085 Kishore Bulusu 02/16/2008 01:29PM
Re: ERROR 1005: Can't create table (errno: 150) [Probable Solution] 8462 JOBY JOB 03/05/2008 02:59AM
Re: ERROR 1005: Can't create table (errno: 150) [Probable Solution] 7170 Willem P 03/17/2008 07:00AM
Re: ERROR 1005: Can't create table (errno: 150) [Probable Solution] 2731 karthik bhaskaran 06/11/2010 02:55AM
Re: ERROR 1005: Can't create table (errno: 150) [Probable Solution] 6361 Roberto Linares 04/09/2008 11:25AM
Re: ERROR 1005: Can't create table (errno: 150) [Probable Solution] 7674 Adam Franco 04/16/2008 01:37PM
Re: ERROR 1005: Can't create table (errno: 150) 6786 Håkan Askengren 02/26/2008 11:46PM
Re: ERROR 1005: Can't create table (errno: 150) 8377 C Fischer 05/30/2008 07:43AM
Re: ERROR 1005: Can't create table (errno: 150) [Oracle Conversion Potential Solution] 7602 Kevin Clark 06/03/2008 06:52AM
Re: ERROR 1005: Can't create table (errno: 150) 6361 Eduardo Chico 06/17/2008 09:39PM
This worked for me 7551 Kyle Stevens 08/27/2008 08:08AM
A solution to: ERROR 1005: Can't create table (errno: 150) 11507 Andrew Pitonyak 09/10/2008 12:37PM
Re: A solution to: ERROR 1005: Can't create table (errno: 150) 4543 Bhanu Nadendla 06/10/2009 02:29PM
Re: A solution to: ERROR 1005: Can't create table (errno: 150) 4288 ka sanoob 06/29/2009 07:17AM
Considerations: Re: ERROR 1005: Can't create table (errno: 150) 5999 Albert Lombarte 10/22/2008 05:31AM
Unsigned was the problem!! 8140 Franck Mercado 12/03/2008 10:15AM
He's right 4748 Liron Homapour 05/01/2009 07:39AM
Re: ERROR 1005: Can't create table (errno: 150) 3235 elliot Justice 01/26/2010 12:34PM
Re: ERROR 1005: Can't create table (errno: 150) 11866 Stefan Wallin 11/12/2008 01:20PM
Re: ERROR 1005: Can't create table (errno: 150) 6623 Erin W 12/05/2008 11:05AM
Re: ERROR 1005: Can't create table (errno: 150) 5331 banaz kaki 05/05/2009 02:52PM
SOLVED AGAIN: More info - Error 1005 is connected to Error 1452 6132 Mohamed Infiyaz Zaffer Khalid 05/07/2009 10:12PM
Re: ERROR 1005: Can't create table (errno: 150) 4634 Juan Carlos Rubiano 05/25/2009 10:50AM
Re: ERROR 1005: Can't create table (errno: 150) 4677 kashif murtaa 06/02/2009 08:22PM
PLEASE STATE YOUR PROBLEM Re: ERROR 1005 (errno: 150) 4902 Mohamed Infiyaz Zaffer Khalid 06/02/2009 10:04PM
Re: PLEASE STATE YOUR PROBLEM Re: ERROR 1005 (errno: 150) 4778 Felix Glez 06/08/2009 01:28AM
Re: PLEASE STATE YOUR PROBLEM Re: ERROR 1005 (errno: 150) 4860 Felix Glez 06/08/2009 02:04AM
Re: PLEASE STATE YOUR PROBLEM Re: ERROR 1005 (errno: 150) 5058 Andrew Pitonyak 06/28/2009 03:41PM
Re: ERROR 1005 (errno: 150) 1861 Glenn Strickland 08/29/2011 04:46PM
Re: ERROR 1005: Can't create table (errno: 150) 5025 Jeremy Hatcher 08/12/2009 09:29AM
Re: ERROR 1005: Can't create table (errno: 150) 3641 s l 12/15/2009 01:48PM
Re: ERROR 1005: Can't create table (errno: 150) 4863 Aftab Haider 10/19/2009 03:09AM
my problem were different data types 3565 Sebastian Kahl 12/22/2009 02:54AM
Re: ERROR 1005: Can't create table (errno: 150) 3227 Max Mir 02/01/2010 01:49PM
Re: ERROR 1005: Can't create table (errno: 150) 3259 Tuan Nguyen 02/20/2010 09:56PM
Re: ERROR 1005: Can't create table (errno: 150) (Potential solution) 4835 Niranjan Hoskote 03/02/2010 02:06PM
Re: PARENT HAS GOOD SOLUTIONS! 1900 raachachacha 02/18/2011 08:55AM
Re: ERROR 1005: Can't create table (errno: 150) - Please help 3694 Anil Karamchandani 03/14/2010 12:41AM
Re: ERROR 1005: Can't create table (errno: 150) - Please help 3154 Vishwanath Savakar 04/15/2010 07:10AM
Re: ERROR 1005: Can't create table (errno: 150) 3084 Nick Blackwood 04/24/2010 04:47PM
Re: ERROR 1005: Can't create table (errno: 150) 3362 Jacques Meyer 04/28/2010 01:51PM
Re: ERROR 1005: Can't create table (errno: 150) [SOLVED] 3702 Ivan Gromov 07/06/2010 07:36AM
Re: ERROR 1005: Can't create table (errno: 150) 2286 Bill Cogan 07/09/2010 12:21PM
Re: ERROR 1005: Can't create table (errno: 150). [SOLVED] An other solution 3847 Adrian Meyer 07/12/2010 12:49PM
Re: ERROR 1005: Can't create table (errno: 150) 2675 Arturs Pelniks 08/04/2010 05:43AM
Re: ERROR 1005: Can't create table (errno: 150) - my SOLUTION 3035 David Cardoso 09/21/2010 03:31PM
Re: ERROR 1005: Can't create table (errno: 150) - my SOLUTION 2626 Luca Porro 09/27/2010 02:23AM
Re: ERROR 1005: Can't create table (errno: 150) - my SOLUTION 2330 David Cardoso 10/06/2010 03:23PM
Re: ERROR 1005: Can't create table (errno: 150) DEFINITE SOLUTION!!! 3965 Emin Ogur 10/07/2010 10:25PM
Re: ERROR 1005: Can't create table (errno: 150) DEFINITE SOLUTION!!! 4087 Mahder Gebremedhin 10/08/2010 06:54PM
Re: ERROR 1005: Can't create table (errno: 150) [SOLVED] 3094 Nacho Pas 01/26/2011 12:32PM
Re: ERROR 1005: Can't create table (errno: 150) 3708 Kann Vearasilp 11/05/2010 09:08AM
Re: Known Causes PLUS ONE 2390 asd asd 05/24/2011 10:11AM
Re: ERROR 1005: Can't create table (errno: 150) 2439 acoolme.com hulu 08/17/2011 11:24PM
Re: ERROR 1005: Can't create table (errno: 150) 19907 Chetan Dhumale 11/18/2011 12:31AM
Various reasons and solutions for Error 150 (and other foreign key errors) 2002 Philip Flammer 06/07/2012 01:22AM
Re: ERROR 1005: Can't create table (errno: 150) 918 Fredrik k 07/25/2012 08:38AM
ERROR 1005: Can't create table (errno: 150) (New solution) 2549 Yomna Mahmoud 07/30/2012 06:05AM
Re: ERROR 1005: Can't create table (errno: 150) (New solution) 1719 Babak Bandpey 09/25/2012 07:19AM
Yet another mismatch (yet another solution) 1054 Gavin Stokes 10/09/2012 10:24PM
Re: ERROR 1005: Can't create table (errno: 150) 845 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.