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
5276
July 20, 2004 12:20PM
4869
July 20, 2004 02:59PM
2920
July 21, 2004 08:34AM
2638
July 21, 2004 08:52AM
2862
July 21, 2004 09:02AM
Re: create table
2729
July 21, 2004 09:11AM
2624
July 21, 2004 09:26AM
2677
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.