WebLogic ORA-03111 error handling process

Source: Internet
Author: User

ORA-03111 error, causing system failure

Symptom Description: The system reports a "java. SQL. SQLException: ORA-03111" error at runtime.

Problem Analysis:

Locate the fault code in metalink. Document No. [ID 1219453.1] is similar to the customer's fault information, "ORA-03111: break received on communication channel" is due to the configuration of linstener for the listener process on the database server. this is caused by the insufficient SDU settings of ora.

The basic meaning of the error is "the buffer is not large enough to send data ." For Oracle Net, this buffer zone is a Session Data Unit value (SDU ). in short, SDU is a buffer used to copy data to the Socket buffer and transmit data to the server inside the client.

ORA-3111 errors can generally be ignored because it won't cause more problems or Core dumps. To eliminate these errors, you only need to increase the configuration of SDU.

Solution:

Increase SDU.

The configuration listen. ora of the listener process of the Oracle database server is modified.

LISTENER. ORA:

SID_LIST_LISTENER =

(SID_LIST =

(SID_DESC =

(SDU = 16384) <-Setting SDU to 16384 for this SID

(TDU = 16384) <-8.0 TDU position

(SID_NAME = XXX)

(ORACLE_HOME = XXXX )))

The value range of SDU is 512 to 32768. The default value is 2048. We recommend that you change this value to 16384.

For SDU, see SQL * Net Packet Sizes (SDU & TDU Parameters) [ID 44694.1] In metalink.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.