Re: CREATE TABLE Failure

2006-06-27 Thread Martijn Tonies
In addition to Ben's answer... > Hi All, > > I have been repeatedly trying to create the following table - without > __ANY__ success. Looks like there is REALLY something wrong with the > MySQL engine or something! Here is the script: Posting the error itself would help. Martijn Tonies Databas

Re: CREATE TABLE Failure

2006-06-27 Thread Dan Buettner
Asif, I note 3 problems: 1 - your table is named 'order', which is a reserved word in MySQL and most other db engines. I'd suggest using a different name. If you must use 'order' for the name, enclose it in backticks, a la `order`, in the create statement. 2 - you have IDNEX instead of IND

CREATE TABLE Failure

2006-06-27 Thread Asif Lodhi
Hi All, I have been repeatedly trying to create the following table - without __ANY__ success. Looks like there is REALLY something wrong with the MySQL engine or something! Here is the script: CREATE TABLE Order ( DID int not null, DeskNo int

comment with "foreign key" text causes innodb CREATE TABLE failure

2003-03-16 Thread Michael Widenius
Hi! > "Brandon" == Brandon Bird <[EMAIL PROTECTED]> writes: Brandon> From: [EMAIL PROTECTED] Brandon> To: [EMAIL PROTECTED] Brandon> Subject: comment with "foreign key" text causes innodb CREATE TABLE Brandon> failure Brandon> Description: Brandon> If an innodb table is created with a

Re: comment with "foreign key" text causes innodb CREATE TABLE failure

2003-03-15 Thread Heikki Tuuri
- From: ""Brandon Bird"" <[EMAIL PROTECTED]> Newsgroups: mailing.database.mysql Sent: Saturday, March 15, 2003 12:36 AM Subject: comment with "foreign key" text causes innodb CREATE TABLE failure > From: [EMAIL PROTECTED] > To: [EMAIL PROTECTED] > Su

comment with "foreign key" text causes innodb CREATE TABLE failure

2003-03-14 Thread Brandon Bird
From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: comment with "foreign key" text causes innodb CREATE TABLE failure Description: If an innodb table is created with a comment with the words "foreign key", the table creation fails. The syntax used to work with MySQ