Groups | Blog | Home
all groups > sql server (alternate) > june 2005 >

sql server (alternate) : Can't create table


Stu
6/28/2005 11:36:55 AM
For starters, you're posting in the wrong newsgroup :)

Try posting in the MySQL newsgroups, rather than the SQL Server groups,
and they might be help to give you better insight. However, this link
might point you in the right direction.

http://www.mysqlusers.com/msg/11638.html

HTH,
Stu
Fernand St-Georges
6/28/2005 3:20:50 PM
Because you are in MySql


"blumi" <test@me.com> a écrit dans le message de news:
d9roip$m29$1@news.net.uni-c.dk...
[quoted text, click to view]

blumi
6/28/2005 5:00:26 PM
I get this error when I try to create the following tables:


ERROR 1005 (HY000): Can't create table '.\haps\transcript.frm' (errno: 150)

create table teaching (
ProfId int,
CrsCode varchar(10),
Semester varchar(10),
primary key(ProfId, CrsCode, Semester)
) engine=InnoDB;


create table transcript (
StudId int,
CrsCode varchar(10),
Semester varchar(10),
primary key(StudId, CrsCode, Semester),
foreign key(CrsCode, Semester) references teaching(ProfId, CrsCode,
Semester)
) engine=InnoDB;

What am I doing wrong??

AddThis Social Bookmark Button