我想执行更新查询以更新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
。