Link to home
Start Free TrialLog in
Avatar of venkateswarlu
venkateswarlu

asked on

ORA-03113 end-of-file in .net

Hi,

I am getting ora-03113 with .net as front end.

I have to send 4000 id's to a "select" statement from front end. I know i have to use "IN" option in my select statement. But "IN" doesnot support for more than 1000 ids. So I created a table(X) and inserted all 4000 ids into table and i used
"SELECT .. FROM .. WHERE id IN (SELECT id FROM X)". I tested my procedure from sql editor. IT WORKS FINE.

But same procedure if i call from front end .NET i am getting error like
"  ORA-03113 end-of-file on communication channel ". and it not at all hitting the my procedure.

I am looking for some ones help. Or Please let me know if any better way to handle 4000 ids to select satement.

I will really appreciate your help.

Regards,
venkat.
Avatar of Danielzt
Danielzt

Please read these:

(pay attehtion to the first two,if works, please let me know.)
http://www.oracledba.co.uk/tips/817_subqueries.htm
http://home.clara.net/dwotton/dba/ora3113.htm


https://www.experts-exchange.com/questions/20295868/ORA-03113-end-of-file-on-communication-channel.html

http://www.oracle-error.com/ora-03113.htm

http://www.dbaoncall.net/cgi-bin/ikonboard/topic.cgi?forum=1&topic=107

ORA-03113 means "end-of-file on communication channel"
It is not the problem of Oracle database or listener.
Most likely it is caused by the configuration of you network and server.

For example, on our site we have one server that is configured it that way: any user connection to the Unix box get killed if it is not active for 10 minutes.

For me it means, when I run SQL*Plus or Toad from my maching, and I do not run anything during 10 minutes I recive this error. To reistablish I have to CLOSE the SQL*Plus or TOAD and reestablish my connection.

Any way in most cases, ORA-03113 implies that you process was killed on Unix side.

https://www.experts-exchange.com/questions/20097507/ORA-03113-when-creating-database.html
Did you set connection timeout parameter? If not its default to OLEdb and ODBC to 90 seconds and your query seems to run more.
Avatar of Helena Marková
No comment has been added lately, so it's time to clean up this TA.
I will leave a recommendation in the Cleanup topic area that this question is:

PAQ/No Refund.

Please leave any comments here within the next seven days.

PLEASE DO NOT ACCEPT THIS COMMENT AS AN ANSWER!

Henka
EE Cleanup Volunteer
ASKER CERTIFIED SOLUTION
Avatar of Computer101
Computer101
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial