将数据字符串数据添加到oracle的更新查询中的blob列

时间:2014-02-27 07:33:48

标签: sql oracle11g sql-update blob

我想执行更新查询以更新blob列。查询是这样的:

update table_name set blob_col = 'large text here';

但是当我执行此操作时,我收到错误消息:

SQL Error: ORA-01704: string literal too long.

当我在谷歌上搜索使用

时,我看到了某个地方
update table_name set blob_col = utl_raw.cast_to_raw('large text here');

但是对于这个,我也得到同样的错误SQL Error: ORA-01704: string literal too long

0 个答案:

没有答案