Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> A simple case to make Oracle805 fail
Have you run into following problem ? Any idea on how to solve it
(patch#, etc). This was running on Solaris 2.6.
Oracle8 Release 8.0.5.0.0 - Production
PL/SQL Release 8.0.5.0.0 - Production
SQLWKS> create table ora600 (key1 int, key2 int, constraint ora600_PRIM
primary key (key1, key2), col3 int, constraint ora600_FOR foreign key
(key1, col3) references ora600 (key1, key2) );
Statement processed.
SQLWKS> create index ora600_IDX on ora600 (key1);
Statement processed.
SQLWKS> insert into ora600 (key1, key2) values (1, 2);
1 row processed.
SQLWKS> insert into ora600 (key1, key2, col3) values (2, 1, 1);
1 row processed.
SQLWKS> delete from ora600 where key1 = 1
2>
ORA-00600: internal error code, arguments: [12700], [2686], [25166457],
[0], [], [], [], []
--== Sent via Deja.com http://www.deja.com/ ==-- ---Share what you know. Learn what you don't.--- Received on Mon May 17 1999 - 22:43:46 CDT
![]() |
![]() |