Referencing Oracle user defined types over DBLINK?

前端 未结 2 1684
眼角桃花
眼角桃花 2020-12-17 05:55

I\'m working in two different Oracle schemas on two different instances of Oracle. I\'ve defined several types and type collections to transfer data between these schemas.

2条回答
  •  执念已碎
    2020-12-17 06:17

    I think the underlying issue is that Oracle doesn't know how to automatically serialize/deserialize your custom type over the wire, so to speak.

    Your best bet is probably to pass an XML (or other) representation over the link.

提交回复
热议问题