【发布时间】:2014-06-07 20:59:30
【问题描述】:
我想在 xmltype 数据类型上使用 ORA_HASH,解决方法是直接的解决方案?
我正在使用 oracle 11g r2 和二进制 xml 作为 xmltype 列的存储选项
我用于创建表的查询是
create table samplebinary ( indexid number(19,0) , xmlcolumn xmltype not null) xmltype column xmlcolumn store as binary xml;
【问题讨论】:
-
你为什么要使用它——它必须是
ora_hash,还是只是a哈希?获取内容的前 4k 的哈希就足够了吗? -
不,我想确保整个 xml 文档没有被更改
标签: oracle oracle11g xmltype ora-hash