From oracle-l-bounce@freelists.org Fri Apr 9 11:42:16 2004 Return-Path: Received: from air189.startdedicated.com (root@localhost) by orafaq.com (8.11.6/8.11.6) with ESMTP id i39GgGF12632 for ; Fri, 9 Apr 2004 11:42:16 -0500 X-ClientAddr: 206.53.239.180 Received: from turing.freelists.org (freelists-180.iquest.net [206.53.239.180]) by air189.startdedicated.com (8.11.6/8.11.6) with ESMTP id i39GgFo12627 for ; Fri, 9 Apr 2004 11:42:15 -0500 Received: from localhost (localhost [127.0.0.1]) by turing.freelists.org (Avenir Technologies Mail Multiplex) with ESMTP id B39076345C1; Fri, 9 Apr 2004 08:41:30 -0500 (EST) Received: from turing.freelists.org ([127.0.0.1]) by localhost (turing [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 26365-15; Fri, 9 Apr 2004 08:41:30 -0500 (EST) Received: from turing (localhost [127.0.0.1]) by turing.freelists.org (Avenir Technologies Mail Multiplex) with ESMTP id F1F3863467B; Fri, 9 Apr 2004 08:41:29 -0500 (EST) Received: with ECARTIS (v1.0.0; list oracle-l); Fri, 09 Apr 2004 08:40:19 -0500 (EST) X-Original-To: oracle-l@freelists.org Delivered-To: oracle-l@freelists.org Received: from localhost (localhost [127.0.0.1]) by turing.freelists.org (Avenir Technologies Mail Multiplex) with ESMTP id 46F8F6344E2 for ; Fri, 9 Apr 2004 08:40:19 -0500 (EST) Received: from turing.freelists.org ([127.0.0.1]) by localhost (turing [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 26179-05 for ; Fri, 9 Apr 2004 08:40:19 -0500 (EST) Received: from newman.starkinvestments.com (newman.starkinvestments.com [65.123.95.18]) by turing.freelists.org (Avenir Technologies Mail Multiplex) with ESMTP id E09956344F8 for ; Fri, 9 Apr 2004 08:40:18 -0500 (EST) Received: from exchtest.starkinvestments.com (exchtest.ad.starkinvestments.com [172.16.25.40]) by newman.starkinvestments.com (Postfix) with ESMTP id 3D3EFFC328 for ; Fri, 9 Apr 2004 08:50:00 -0500 (CDT) Received: by exchtest.ad.starkinvestments.com with Internet Mail Service (5.5.2657.72) id <17WQ5L6V>; Fri, 9 Apr 2004 08:50:00 -0500 Message-ID: <07BA8175B092D611B1DE00B0D049A31501B0B661@exchange.ad.starkinvestments.com> From: "Duret, Kathy" To: "'oracle-l@freelists.org'" Subject: RE: ORA-00600:internal error code, arguments:[26599],[1],[124] Wh en creating........ Date: Fri, 9 Apr 2004 08:49:55 -0500 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2657.72) Content-type: text/plain; charset=iso-8859-1 X-Virus-Scanned: by amavisd-new at freelists.org Content-Transfer-Encoding: 8bit X-archive-position: 2810 X-ecartis-version: Ecartis v1.0.0 Sender: oracle-l-bounce@freelists.org Errors-To: oracle-l-bounce@freelists.org X-original-sender: kduret@starkinvestments.com Precedence: normal Reply-To: oracle-l@freelists.org X-list: oracle-l X-Virus-Scanned: by amavisd-new at freelists.org Did a search on metalink for this error 26599 and got a lot of docs back. The Ora 600 search didn't give me anything. You didn't mention your hardware platform you were on, so it was hard for me to tell which might be the test docs to reference you to there. Also search in the bugs and patches, looks like there are several bugs and patches available as looks like Oracle broke/forgot something in the upgrade for Java. I didn't find anythigng on google that would help. But you might want to check the fatcity.com/archive list for Oracle-L, ask Tom, etc. You might want to raise a tar with Oracle as well if this is mission critical. The list will be pretty slow this weekend due to the holiday. Kathy -----Original Message----- From: Luis deUrioste [mailto:Luis.deUrioste@L-3com.com] Sent: Thursday, April 08, 2004 6:06 PM To: oracle-l@freelists.org Subject: ORA-00600:internal error code, arguments:[26599],[1],[124] When creating........ Im trying to implement this code, and I get this hedious error: ORA-00600:internal error code, arguments:[26599],[1],[124] -- can = somebody shed some light on me Please. I've implemented this before. The = current DB is 9.2.0.1.0 and the one where everything works is 9.0.1.1.1. = Hardware is the exact same, schema is duplicated , memory configuration = is the same, I'm at a loss can't figure this one out. Any and all help will be highly appreciated. Luis ************************************Code = Follows************************************* CREATE OR REPLACE AND RESOLVE JAVA SOURCE NAMED "SendMail" as import = java.util.*;=20 import java.io.*;=20 import javax.mail.*;=20 import javax.mail.internet.*;=20 import javax.activation.*;=20 public class SendMail {=20 // Sender, Recipient, CCRecipient, and BccRecipient are comma-=20 // separated lists of addresses;=20 // Body can span multiple CR/LF-separated lines;=20 // Attachments is a ///-separated list of file names;=20 public static int Send(String SMTPServer,=20 String Sender,=20 String Recipient,=20 String CcRecipient,=20 String BccRecipient,=20 String Subject,=20 String Body,=20 String ErrorMessage[],=20 String Attachments) {=20 =20 // Error status;=20 int ErrorStatus =3D 0;=20 =20 // create some properties and get the default Session;=20 Properties props =3D System.getProperties();=20 props.put("mail.smtp.host", SMTPServer);=20 Session session =3D Session.getDefaultInstance(props, null);=20 =20 try {=20 // create a message;=20 MimeMessage msg =3D new MimeMessage(session);=20 =20 // extracts the senders and adds them to the message;=20 // Sender is a comma-separated list of e-mail addresses as=20 // per RFC822;=20 {=20 InternetAddress[] TheAddresses =3D=20 InternetAddress.parse(Sender);=20 msg.addFrom(TheAddresses);=20 }=20 =20 // extract the recipients and assign them to the message;=20 // Recipient is a comma-separated list of e-mail addresses=20 // as per RFC822;=20 {=20 InternetAddress[] TheAddresses =3D=20 InternetAddress.parse(Recipient);=20 msg.addRecipients(Message.RecipientType.TO,=20 TheAddresses);=20 }=20 =20 // extract the Cc-recipients and assign them to the=20 // message;=20 // CcRecipient is a comma-separated list of e-mail=20 // addresses as per RFC822;=20 if (null !=3D CcRecipient) {=20 InternetAddress[] TheAddresses =3D=20 InternetAddress.parse(CcRecipient);=20 msg.addRecipients(Message.RecipientType.CC,=20 TheAddresses);=20 }=20 =20 // extract the Bcc-recipients and assign them to the=20 // message;=20 // BccRecipient is a comma-separated list of e-mail=20 // addresses as per RFC822;=20 if (null !=3D BccRecipient) {=20 InternetAddress[] TheAddresses =3D=20 InternetAddress.parse(BccRecipient);=20 msg.addRecipients(Message.RecipientType.BCC,=20 TheAddresses);=20 }=20 =20 // subject field;=20 msg.setSubject(Subject);=20 =20 // create the Multipart to be added the parts to;=20 Multipart mp =3D new MimeMultipart();=20 =20 // create and fill the first message part;=20 {=20 MimeBodyPart mbp =3D new MimeBodyPart();=20 mbp.setText(Body);=20 =20 // attach the part to the multipart;=20 mp.addBodyPart(mbp);=20 }=20 =20 // attach the files to the message;=20 if (null !=3D Attachments) {=20 int StartIndex =3D 0, PosIndex =3D 0;=20 while (-1 !=3D (PosIndex =3D Attachments.indexOf("///",=20 StartIndex))) {=20 // create and fill other message parts;=20 MimeBodyPart mbp =3D new MimeBodyPart();=20 FileDataSource fds =3D=20 new FileDataSource(Attachments.substring(StartIndex,=20 PosIndex));=20 mbp.setDataHandler(new DataHandler(fds));=20 mbp.setFileName(fds.getName());=20 mp.addBodyPart(mbp);=20 PosIndex +=3D 3;=20 StartIndex =3D PosIndex;=20 }=20 // last, or only, attachment file;=20 if (StartIndex < Attachments.length()) {=20 MimeBodyPart mbp =3D new MimeBodyPart();=20 FileDataSource fds =3D=20 new FileDataSource(Attachments.substring(StartIndex));=20 mbp.setDataHandler(new DataHandler(fds));=20 mbp.setFileName(fds.getName());=20 mp.addBodyPart(mbp);=20 }=20 }=20 =20 // add the Multipart to the message;=20 msg.setContent(mp);=20 =20 // set the Date: header;=20 msg.setSentDate(new Date()); props.put("mail.smtp.dsn.notify","SUCCESS,FAILURE,DELAY = ORCPT=3Drfc822;" + Recipient); msg.setHeader("Return-Receipt-To",Sender); =20 // msg.setHeader("Disposition-Notification-To",Sender); =20 // send the message;=20 Transport.send(msg);=20 } catch (MessagingException MsgException) {=20 ErrorMessage[0] =3D MsgException.toString();=20 Exception TheException =3D null;=20 if ((TheException =3D MsgException.getNextException()) = !=3D=20 null)=20 ErrorMessage[0] =3D ErrorMessage[0] + "\n" +=20 TheException.toString();=20 ErrorStatus =3D 1;=20 }=20 return ErrorStatus;=20 }=20 } ---------------------------------------------------------------- Please see the official ORACLE-L FAQ: http://www.orafaq.com ---------------------------------------------------------------- To unsubscribe send email to: oracle-l-request@freelists.org put 'unsubscribe' in the subject line. -- Archives are at http://www.freelists.org/archives/oracle-l/ FAQ is at http://www.freelists.org/help/fom-serve/cache/1.html ----------------------------------------------------------------- This transmission contains information solely for intended recipient and may be privileged, confidential and/or otherwise protect from disclosure. If you are not the intended recipient, please contact the sender and delete all copies of this transmission. This message and/or the materials contained herein are not an offer to sell, or a solicitation of an offer to buy, any securities or other instruments. The information has been obtained or derived from sources believed by us to be reliable, but we do not represent that it is accurate or complete. Any opinions or estimates contained in this information constitute our judgment as of this date and are subject to change without notice. Any information you share with us will be used in the operation of our business, and we do not request and do not want any material, nonpublic information. Absent an express prior written agreement, we are not agreeing to treat any information confidentially and will use any and all information and reserve the right to publish or disclose any information you share with us. ---------------------------------------------------------------- Please see the official ORACLE-L FAQ: http://www.orafaq.com ---------------------------------------------------------------- To unsubscribe send email to: oracle-l-request@freelists.org put 'unsubscribe' in the subject line. -- Archives are at http://www.freelists.org/archives/oracle-l/ FAQ is at http://www.freelists.org/help/fom-serve/cache/1.html -----------------------------------------------------------------