I have the same problem here with Oracle 11GR1. It just
"started" - and I don't know why ...
I am running the follwing query:
select * from nhdcs.gatesystemeventqueue
where
mandant = :mandant and
trunc(EVENTTIME,'DDD') = :buchungsdatum and
cardnumber = :transponderid
order by EVENTTIME,GateEvent
The Table structure is as follows:
create table GateSystemEventQueue (
Mandant Number (9) not null,
ObjectID Number (9),
UserID Number (9),
GroupID Number (9),
AccessRightID Number (9),
GateSystemEventSEQ number (9) not null,
GateSystemID varchar (30) not null,
Cardnumber varchar (255),
GateEvent number (9) not null,
EventTime Date,
DeviceID varchar (30),
GateSEQ varchar (30),
DateCreated Date,
DateProcessed Date,
Processed number (9),
AES32Reference number(9),
Description varchar (80),
Active number (9) default 1 not null,
Forwarded Date
);
grant all on GateSystemEventQueue to public;
create unique index GateSystemEventQueueIndex1 on GateSystemEventQueue (Mandant,GateSystemEventSEQ);
create index GateSystemEventQueueIndex2 on GateSystemEventQueue (Mandant,DateProcessed);
create index GateSystemEventQueueIndex3 on GateSystemEventQueue (Mandant,Cardnumber,round(EventTime,'DDD'));
commit;
After running the query for a while you get the exception .... there
are about 3500 records in the database
Nils