Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.misc -> Re: ORA-600: internal error code and ORA-8177 Can't Serialize access

Re: ORA-600: internal error code and ORA-8177 Can't Serialize access

From: <wanda_zoe_at_my-deja.com>
Date: Fri, 17 Mar 2000 11:30:20 GMT
Message-ID: <8at50c$a1l$1@nnrp1.deja.com>


In article <89jhll$b7e$1_at_nnrp01.ops.uunet.co.za>, "Walter W" <clothahump_at_usa.net> wrote:
> ORA-00600: internal error code together with ORA-08177 Can't Serialize
> access

Don't use Oracle ODBC use MS's oracle odbc that comes with mdac. If you use Oracle ODBC you will get stuff like this after a "successfull" transaction. (no errors)
SQL> select count(*) from payment where event = 255; COUNT(*)



473
SQL> delete from payment where event = 255; delete from payment where event = 255
*
ERROR at line 1:
ORA-00600: internal error code, arguments: [20074], [], [], [], [], [], [], []
SQL> delete from payment where event = 255 and receipt = 20; 1 row deleted.
SQL> commit;
Commit complete.
SQL> delete from payment where event = 255 and receipt = 21; 1 row deleted.
SQL> delete from payment where event = 255 and receipt = 22; 1 row deleted.
SQL> delete from payment where event = 255 and receipt = 23; 1 row deleted.
SQL> delete from payment where event

Sent via Deja.com http://www.deja.com/
Before you buy. Received on Fri Mar 17 2000 - 05:30:20 CST

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US