ORA-03106: fatal two-task communication protocol error

Last post 11-06-2009 4:24 AM by nimish_soft. 5 replies.

Sort Posts:

  • ORA-03106: fatal two-task communication protocol error

    09-08-2003, 12:41 PM
    • Participant
      1,190 point Participant
    • ShamusCHW
    • Member since 06-20-2003, 2:06 PM
    • Posts 238
    I get this message intermittently:

    ORA-03106: fatal two-task communication protocol error
    Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

    Exception Details: System.Data.OracleClient.OracleException: ORA-03106: fatal two-task communication protocol error


    Any guesses?

    I do not have much luck on the other support sites. This is a very generic error message.

    Thanks.


    if(youTryToBeSmarter)

    {

    i.WillTryToBeNicer();

    }

  • Re: ORA-03106: fatal two-task communication protocol error

    09-08-2003, 1:08 PM
    • Contributor
      2,540 point Contributor
    • Stephen Vakil
    • Member since 03-14-2003, 2:11 PM
    • Posts 508
    Are you using linked tables?
  • Re: ORA-03106: fatal two-task communication protocol error

    09-08-2003, 1:31 PM
    • Participant
      1,190 point Participant
    • ShamusCHW
    • Member since 06-20-2003, 2:06 PM
    • Posts 238
    You mean tables that have relations with some kind of referential integrity?

    Yes, some tables are linked to others.


    if(youTryToBeSmarter)

    {

    i.WillTryToBeNicer();

    }

  • Re: ORA-03106: fatal two-task communication protocol error

    09-09-2003, 9:12 AM
    • Contributor
      2,540 point Contributor
    • Stephen Vakil
    • Member since 03-14-2003, 2:11 PM
    • Posts 508
    No... like tables that exist in other data sources type of thing.

    Doing a search on google groups, a lot of people recommend calling oracle about this one, but others say it occurs with linked tables, and still others say in general it means that your client cannot talk properly to your server.
  • Re: ORA-03106: fatal two-task communication protocol error

    11-06-2009, 4:19 AM
    • Member
      2 point Member
    • Iraku
    • Member since 11-06-2009, 9:05 AM
    • Posts 1

    I got this Error when I used OracleCommand with Parameter which had assigned value and OracleDbType.  I resolve it when I assigned parameters DbType instead of OracleDbType (really streingth behavior). I use Oracle 10g and VS2008.

                    OracleCommand cmd = .....
                    OracleParameter  param = ....
                    param.Value =..
                    param.DbType = ..
                    //caused error>>
                    //param.OracleDbType = ..

                    //>>

                    cmd.Parameters.Add(param)

  • Re: ORA-03106: fatal two-task communication protocol error

    11-06-2009, 4:24 AM
    • Contributor
      2,093 point Contributor
    • nimish_soft
    • Member since 10-22-2009, 9:23 AM
    • India
    • Posts 399

    check these out for solution.....

    http://www.lazydba.com/oracle/0__105846.html

    http://www.dba-oracle.com/sf_ora_03106_fatal_two_task_communication_protocol_error.htm

    - Nimish Garg
    Software Developer
    IndiaMART InterMESH Limited, Noida

    Blog: http://nimishgarg.blogspot.com/

    Plz do click "Mark as Answer" on the post that helped you. This will also give you point and help readers to know which post solved your issue and make their search easy.
Page 1 of 1 (6 items)