ORA-03106 fatal two-task communication protocol error [message #201646] |
Mon, 06 November 2006 03:28 |
M.Shakeel Azeem
Messages: 226 Registered: September 2006
|
Senior Member |
|
|
i am facing the error "ORA-03106 fatal two-task communication protocol error", while calling an LOV from the Form Builder 6i, trying to fetch data from underlying views. These view are based on the tables of a remote database sever using a DBLINK.
For sample view soruce following statement is given
create or replace view vew_erp_fab_sls_cont_mt as
select a.Col1,
a.Col2
from remote_table@DBLINK_NAME a
WITH READ ONLY;
We have faced the said problem previosly as well, but are not sure how it got corrected.Now we are facign the same problem
We also have tried to resolve it by droping and recreating db_link but unable to do so
Can anyone please provide help regarding this issue?
|
|
|
|
Re: ORA-03106 fatal two-task communication protocol error [message #201823 is a reply to message #201805] |
Mon, 06 November 2006 23:06 |
M.Shakeel Azeem
Messages: 226 Registered: September 2006
|
Senior Member |
|
|
Dear Sir
I have searched all of these links like u provided but unable to find the solution
Perhaps i was unable to correctly explain my question
I have read what could be possible reasons 4 that
one of the reason is
using database link
Yes i am having a problem in db_link but when i query the data using db link from sql*plus it is working
but when i try this in Forms Builder to query data using db Links i got the error desribed earlier
But after sometime its got corrected perhaps by restarting the DB
I also verified the NLS_LANG at both Client and Server Sides
Can u plzzzzzzzzzz help me in this regard?
thanx in advance
|
|
|
|
|
|
|
Re: ORA-03106 fatal two-task communication protocol error [message #226267 is a reply to message #226212] |
Fri, 23 March 2007 02:19 |
marxello
Messages: 9 Registered: March 2007
|
Junior Member |
|
|
Yes! I think so!
I've done this query:
SELECT userenv ('language') from dual;
And it shows me the same information in two Oracles, 9 and 8.
I've done this other query too:
SELECT * FROM NLS_SESSION_PARAMETERS;
And it shows me, more or less, the same information. I think that all differences are because of Oracle version.
Do you think that I'm not doing the checks correct?
Thank you for all!
Marxello
|
|
|
|
Re: ORA-03106 fatal two-task communication protocol error [message #226999 is a reply to message #226886] |
Tue, 27 March 2007 01:46 |
marxello
Messages: 9 Registered: March 2007
|
Junior Member |
|
|
Thanks for your interest on resolving my question.
I have dblink in 9i Version: Oracle9i Release 9.2.0.1.0 - Production
And the other Oracle is: Oracle8i Release 8.1.7.0.0 - Production
I can compile my form against Oracle 9. At first it was compiled against Oracle 8, but to check, I've compiled in Oracle 9 too, and it doesn't go well.
I don't know how to contact with Oracle's Support Matrix in Interconnectivity. Could you give me the link to do it, please?
Thanks,
Marxello
|
|
|
|
|
Re: ORA-03106 fatal two-task communication protocol error [message #235018 is a reply to message #201646] |
Thu, 03 May 2007 14:23 |
ishulz
Messages: 2 Registered: May 2007
|
Junior Member |
|
|
Hello, marxello
did you resolved your problem. I'm looking for decisin in environment like this, but without any success.
DBD:Oracle compiled against oracle client 8.1.7 works fine with any our remote DB: Oracle 8, 9, 10
DBD:Oracle, compiled against oracle client 9 and 10, doesn't work with db-links (direct selects works fine) though these clients (sqlplus) don't have any problems with these db-link selects !!!
--Igor
|
|
|
|
|
|
|
|
|
|
|
Re: ORA-03106 fatal two-task communication protocol error [message #263777 is a reply to message #263765] |
Fri, 31 August 2007 00:39 |
|
djmartin
Messages: 10181 Registered: March 2005 Location: Surges Bay TAS Australia
|
Senior Member Account Moderator |
|
|
If the database at the end of the link is Oracle 7 then Oracle 8 can access it but Oracle 9 can not.
You might want to create an environment variable TNS_ADMIN and point it at the 'C:\orant\Net80\ADMIN' directory. That way, you only have to update the one tnsnames.ora file.
Are you saying that you can't open the Form in the Forms 6i Builder? This is not good.
David
[Updated on: Fri, 31 August 2007 01:48] Report message to a moderator
|
|
|
|
|
Re: ORA-03106 fatal two-task communication protocol error [message #264320 is a reply to message #264287] |
Mon, 03 September 2007 00:38 |
spaniken2k
Messages: 7 Registered: August 2007 Location: Mauritius
|
Junior Member |
|
|
Hi,
Let me explain clearly to you...
I built a program in forms builder which consists of Forms, triggers, alerts, data blocks, canvas, LOVs, Program units and so on...
Before i compile (ctrl+shift+k) i need to connect to a database.
In my Program Units, i have many procedures and one of the procedure i used either synonym or dblink...
after connecting to database successfully, i do a ctrl+shift+k, then the form builder crashed... everything is closed and i need to open the builder agains... however, if i dont used the dblink or synonym, i can compile and access the my forms which are opened in the forms runtime....
hope you understand
By application, i meant the program i developed, that is the forms and procedures i coded...
thanks
|
|
|
Re: ORA-03106 fatal two-task communication protocol error [message #264588 is a reply to message #264320] |
Mon, 03 September 2007 20:42 |
|
djmartin
Messages: 10181 Registered: March 2005 Location: Surges Bay TAS Australia
|
Senior Member Account Moderator |
|
|
Thank you for the explanation.
Do you have the database which is at the end of the dblink defined in your tnsnames.ora file? It has to match the dblink (have the same name and point to the same database) which exists in the database to which you are connected.
Eg. I connect to david/david@david and have a dblink called tstlnk to test/test@test. I have to have both 'david' and 'test' defined in 'tnsnames.ora'.
If this doesn't solve your problem, duplicate the entry for 'test' and name it 'tstlnk' and see if that works.
David
[Updated on: Mon, 03 September 2007 20:42] Report message to a moderator
|
|
|
|
|
|