Is it DOA bug?

Chicho

Member
I used SQL* Net before and DOA didn't showed any errors. But after I installed Net8 I start to get such an error after re-compilation of Stored Procedures:

"Project Project1.exe raised exception class EOracleError with message 'ORA-03120: two-task conversion routine: integer overflow'. Process stoped. Use Step or Run to continue."

I dismissed all integer variables. It didn't help.
 
Hi. I looked up an explanation of the error
in Oracle Metalink. They gave the following
answer:

Error: ORA 3120
Text: two-task conversion routine: integer overflow
Cause: An integer value in an internal Oracle structure overflowed when being
sent or received over a heterogeneous connection.
This can happen when an invalid buffer length or too great a row count
is specified.
It usually indicates a bug in the user application.
Action: Check parameters to Oracle calls.
If the problem recurs, reduce all integer parameters, column values
included, to less than 32767.

Sounds like you might be passing invalid
integer parameters to your PL/SQL routines.

Originally posted by Chicho:
I used SQL* Net before and DOA didn't showed any errors. But after I installed Net8 I start to get such an error after re-compilation of Stored Procedures:

"Project Project1.exe raised exception class EOracleError with message 'ORA-03120: two-task conversion routine: integer overflow'. Process stoped. Use Step or Run to continue."

I dismissed all integer variables. It didn't help.
 
Back
Top