编辑 Oracle 数据库中存储为 CLOB 的 XML
我有一个 CLOB 列,其中包含一个大型 XML 文档。假设在我的应用程序中编辑了 XML 数据中的单个节点,我是否可以更新 CLOB 而无需重写数据库中存储的所有文本?
我知道如果我使用 XMLType 而不是 CLOB,我可以做类似的事情,但我无法更改数据库中的数据类型。
先感谢您。
I have a column which is a CLOB that contains a large XML document. Let's say that from my application a single node in the XML data is edited, is it possible I could update the CLOB without rewriting all the text stored in the database?
I am aware i could do something like that if I used XMLType instead of CLOB, but I cannot change the data type in the database.
Thank you in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用的是 11g,并且 CLOB 是 SECUREFILE,则可以使用 FRAGMENT_REPLACE。
If you're on 11g, and the CLOB is a SECUREFILE, you can use FRAGMENT_REPLACE.