Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
6answers
24k views

ORA-03113: end-of-file on communication channel after long inactivity in ASP.Net app

I've got a load-balanced (not using Session state) ASP.Net 2.0 app on IIS5 running back to a single Oracle 10g server, using version 10.1.0.301 of the ODAC/ODP.Net drivers. After a long period of ...
2
votes
0answers
327 views

Oracle DataAccess Data provider internal error -3000 when deployed

I'm having an issue with a web service i have created. It is running fine when running on localhost on my PC. The problem is, when I deploy the web service to a remote IIS server, I keep getting ...
1
vote
1answer
57 views

Serialize and Deserialize Oracle.DataAccess.OracleException in C#

OracleException has no public constructors nor any way to get a new instance. I tried my XmlSerializerHelper class, but it requires a public parameterless constructor. I used BinaryFormatter to ...
1
vote
0answers
89 views

How do I create an instance of Oracle.DataAccess.Client.OracleException to use with NMock

I'm using the Oracle.DataAccess.Client data provider client. I am having trouble constructing a new instance of an OracleException object, but it keeps telling me that there are no public ...
0
votes
1answer
118 views

Error when trying to connect to Oracle 10g database from C# program employing minimal set-up configuration

I'm experiencing an error when trying to connect to a remote Oracle 10g database from a C# 2008 Express Edition application I'm developing. I'm trying to use a minimalist, non-intrusive approach to ...
0
votes
1answer
36 views

How to dynamically get column that triggered OracleException

If I have ORA-12899 returned from an insert or update statement. How can I extract the column name from the OracleException without parsing the string? ORA-12899: value too large for column ...