|
|
|
|
| Re: ORA-2064 A commit is issued in a coordinated session from an RPC with OUT parameters [message #46475 is a reply to message #46462] |
Wed, 09 June 2004 22:37  |
Sachin Pawar
Messages: 3 Registered: June 2004
|
Junior Member |
|
|
How can I use the TWO-PHASE transaction model ?
Will it be really useful in this scenario??
or What work around can you suggest for this?
The scenario is like this,
sales database
-------------------
begin
call_remote();
end;
accounts database
------------------
procedure call_remote() as
begin
insert into XYZ (values);
Commit; -- As per ora-2064 I can not give commit here
end call_remote;
For time being I am comming from sales database. But I want to do it on accounts end.
Thanks,
sachin
|
|
|
|