Page 1 of 1
ORA-03113 (dcoracle 9.04.299 pro)
Posted: Thu 29 Jun 2017 10:11
by pari
Hi,
after instalation ver. 9.4.299 I got a error message: ORA-03113: end-of-file on communication channel.
I try it in app using Entity Developer and next I try it in Entity Developer: Update From Database Wizzard.
I have a VS2017 pro.
Can you help me?
PaRi
PS: now I back to ver. 9.3.230
Re: ORA-03113 (dcoracle 9.04.299 pro)
Posted: Fri 30 Jun 2017 07:06
by Shalex
1. Does the issue persist only in Entity Developer or in the code as well? Try this code:
Code: Select all
var conn = new OracleConnection(your_conn_string);
conn.Open();
2. Specify your connection string (roughly, without credentials).
3. Tell us the exact version of your target Oracle Server.
Re: ORA-03113 (dcoracle 9.04.299 pro)
Posted: Mon 03 Jul 2017 07:22
by pari
Hi,
there are next information:
Code: Select all
using System;
using Devart.Data.Oracle;
namespace TestOra299
{
class Program
{
static void Main()
{
//Oracle 12c Enterprise Edition release 12.1.0.1.0 64 bit edition
using (var connection = new OracleConnection("Data Source=jeseter;Service Name=jeseter;Direct=true")
{ UserId = "scott", Password = "asd" }
)
{
try
{
connection.Open();
connection.Close();
}
catch (Exception ex)
{
//ORA-03113: end-of-file on communication channel
Console.WriteLine(ex.Message);
}
}
}
}
}
When I remove an uid and a password, the result is same:
Code: Select all
//Oracle 12c Enterprise Edition release 12.1.0.1.0 64 bit edition
using (var connection = new OracleConnection("Data Source=jeseter;Service Name=jeseter;Direct=true"))
{
...
}
PaRi
Re: ORA-03113 (dcoracle 9.04.299 pro)
Posted: Tue 04 Jul 2017 13:05
by Pinturiccio
We have reproduced the issue. We will investigate it and post here about the results as soon as possible.
Re: ORA-03113 (dcoracle 9.04.299 pro)
Posted: Fri 07 Jul 2017 13:15
by Pinturiccio
We have fixed the bug with the "ORA-03113" error when a Windows account is not in a domain in the Direct mode. We will post here when the corresponding build of dotConnect for Oracle is available for download.
Re: ORA-03113 (dcoracle 9.04.299 pro)
Posted: Thu 20 Jul 2017 07:58
by Pinturiccio
New build of dotConnect for Oracle 9.4.314 is available for download!
It can be downloaded from
http://www.devart.com/dotconnect/oracle/download.html (trial version) or from Customer Portal (for users with valid subscription only).
For more information, please refer to
viewtopic.php?t=35679