Hi René,
thanks for your feedback.
[quote author=René link=topic=5973.msg25954#msg25954 date=1288109993]
The first error - ORA-00904 means that Oracle can't find specified column name (IXNID). Please double check that STATUS_TABLE contains this column.
[/quote]
Yeah, i already triple-checked that: the column exists. the table looks like this:
DBMS_METADATA.GET_DDL('TABLE','STATUS_TABLE') ------------------------------------------------------------------
CREATE TABLE "STATSERVER"."STATUS_TABLE"
( "STATUS_KEY" NUMBER(20,0) NOT NULL ENABLE,
"EXTRACT_KEY" NUMBER(20,0) NOT NULL ENABLE,
"PARTITION_KEY" VARCHAR2(10),
"AGENTDBID" NUMBER(*,0) NOT NULL ENABLE,
"PLACEDBID" NUMBER(*,0) NOT NULL ENABLE,
"STATUS" NUMBER(*,0) NOT NULL ENABLE,
"STARTTIME" NUMBER(*,0) NOT NULL ENABLE,
"DURATION" NUMBER(*,0) NOT NULL ENABLE,
"ENDTIME" NUMBER(*,0) NOT NULL ENABLE,
"CONNID" NUMBER(20,0) NOT NULL ENABLE,
"IXNID" VARCHAR2(16),
CONSTRAINT "PK_STATUS_TABLE" PRIMARY KEY ("STATUS_KEY")
USING INDEX PCTFREE 10 INITRANS 2 MAXTRANS 255 COMPUTE STATISTICS
STORAGE(INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645
PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT)
TABLESPACE "STATSERVER" ENABLE
) PCTFREE 10 PCTUSED 40 INITRANS 1 MAXTRANS 255 NOCOMPRESS LOGGING
STORAGE(INITIAL 1048576 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645
PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT)
TABLESPACE "STATSERVER"
[quote author=René link=topic=5973.msg25954#msg25954 date=1288109993]
About the second error - this one is a bit odd as it means that StatServer uses primary key (column ID) that already exists in the table. If possible delete all records from the table and try it again. Please stop StatServer while working on the table.
[/quote]
Yeah, really odd! Maybe cause i made some config changes in runtime (statserver), as i already mentionend. I' try to delete.
Thansk for your effort, though the ORA-exception are quite clear - no harm meant ;-)
Cheers
:-Phil