An error returned by Oracle when an attempt is made to perform a DML operation on a remote table, and the operation invovles "complex" data types (such as XMLType or Object types defined by the user). The actual error message is "Remote operations not permitted on object tables or user-defined type ...
2
votes
2answers
283 views
Moving XML over a DBLink
I am trying to move some data over a dblink and one of the columns is an XMLType column. The code looks like this:
begin
delete from some_schema.some_remote_tab@src_2_trg_dblink;
INSERT INTO ...
1
vote
4answers
3k views
Oracle sql types over dblink
I have two schemas: A and B (Oracle 9). At the A there is a dblink to B. At the B there is a package, that i calls from A. Procedures in B package can returns varying count results and i think that ...