如何使用sql oracle用批量数据更新CLOB列?
我有 (7A+5dfAA7D...) 字母和数字等数据。其长度大于缺少两个个字符。因此,我无法使用 update
更新该 clob 列,因为它会抛出一个错误,指出字符串文字太长。
如何更新数值?
请帮我。
提前致谢!
I have the data like (7A+5dfAA7D...) alphabet and numbers. Its length is greater than two lack characters. So I can't update that clob column using update
because it throws an error saying the string literal too long.
How to update the values?
please help me.
Thanks in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
下面是一些 Java 代码的一部分,它将文件中的数据插入到 CLOB 列中。技巧是首先插入一个empty_clob()值,然后更新记录。
Here is part of some java code that inserts data from a file into a CLOB column. The trick is to first insert an empty_clob() value and then to update the record.
您可以使用 SQL*Loader 加载数据,但必须从文件中执行。尽管您可能会编写一个脚本来设置包含数据的顺序文件,但这可能会或可能不会困难,具体取决于涉及的数据量。
对于名为 TEST 的表,其中包含 TEST_ID 和 TEST_BLOB 列:
此配置源自以下示例: 问汤姆
You can use SQL*Loader to load the data, but you have to do it from a file. This may or may not be difficult depending on how much data is involved, though you could likely write a script which sets up sequential files containing your data.
For a table called TEST, with columns of TEST_ID and TEST_BLOB:
This configuration was derived from this example: Ask Tom