更新 Oracle 中的 Clob 列
我有一个名为 ABC 的表,其中包含 CLOB 数据。我想更新该列以在此 Clob 列中的特定位置插入字符串。
要插入的字符串:
<nv_pair>
<name identifier="XYZ"></name>
<value identifier="XYZ"></value>
</nv_pair>
Clob 数据:
<form> <nv_pair></nv_pair> <nv_pair></nv_pair><nv_pair></nv_pair><nv_pair></nv_pair></form>
要插入的位置:就在 之前
I have an table with name ABC which has CLOB data. I want to update the column to insert string in specific position in this Clob column.
String to be inserted :
<nv_pair>
<name identifier="XYZ"></name>
<value identifier="XYZ"></value>
</nv_pair>
Clob Data :
<form> <nv_pair></nv_pair> <nv_pair></nv_pair><nv_pair></nv_pair><nv_pair></nv_pair></form>
Position to be inserted : Just Before </form>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
看一下 DBMS_LOB 包。
顺便说一句,可能值得探索放弃 CLOB 并使用 Oracle 内置 XML 功能的可能性(不过我对此并不熟悉)。
Take a look at DBMS_LOB package.
BTW, it might be worth exploring the possibility of abandoning CLOB and using Oracle's built-in XML capabilities (I'm not familiar with that, though).
根据您使用的 Oracle 版本,您可以使用 regexp_replace 函数:
Depending on which version of Oracle you have, you can use the regexp_replace function: