MySQL Forums
Forum List  »  Other Migration

Re: create table
Posted by: Nick Roper
Date: July 21, 2004 09:11AM

OK, got it!

Combination of missing parentheses and a missing ',' after the last column definition.

Now try:

CREATE TABLE TEST.LdgrMaster
( LD_ACCTID char (10) NOT NULL
,LD_DTEKEYED_YMD char (8) NOT NULL
,LD_LEDCTR char (5) NOT NULL
,LD_AGNT char (4) NULL
,LD_TIME char (4) NULL,

PRIMARY KEY (LD_ACCTID ,LD_DTEKEYED_YMD ,LD_LEDCTR)

) TYPE=MYISAM;

Works for me :-)





--
Nick Roper

Options: ReplyQuote


Subject
Views
Written By
Posted
5770
July 20, 2004 12:20PM
5184
July 20, 2004 02:59PM
3156
July 21, 2004 08:34AM
2929
July 21, 2004 08:52AM
3132
July 21, 2004 09:02AM
Re: create table
2994
July 21, 2004 09:11AM
2840
July 21, 2004 09:26AM
2914
July 21, 2004 09:36AM


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.