Re: create table
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
Subject
Views
Written By
Posted
5412
July 20, 2004 12:20PM
4972
July 20, 2004 02:59PM
3003
July 21, 2004 08:34AM
2719
July 21, 2004 08:52AM
2936
July 21, 2004 09:02AM
Re: create table
2811
July 21, 2004 09:11AM
2700
July 21, 2004 09:26AM
2751
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.