ORA-14641: STORE-IN clause can be specified only for a Hash, Composite Range Hash table/partition OR
文档解释
ORA-14641: STORE-IN clause can be specified only for a Hash, Composite Range Hash table/partition
Cause: Specifying a STORE-IN clause during CREATE/ALTER of a Range, Composite Range List partitioned table which is not allowed”
Action: Re-issue the stament after removing the STORE-IN clause
ORA-14641: STORE-IN关键字只能用于Hash,Composite Range Hash表/分区
这是一个在创建表时可能遇到的一个Oracle错误,它表明您已经尝试使用STORE-IN关键字,但是分区/子分区不是Hash,Composite Range Hash表/分区。
错误在此上下文中此错误:
CREATE TABLE tbl ( col1 int, col2 varchar2(15) ) PARTITION BY RANGE (col1) store in (namespace1, namespace2);
上面的SQL语句会引发ORA-14641错误,因为Range分区方式不支持STORE-IN 关键字。
正确处理此错误的步骤是:
1.更正语法,不要使用STORE-IN关键字
2.使用正确的分区类型,如Hash,Composite Range Hash
3.使用STORE-IN关键字,以支持指定存储空间。
免责声明:
① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。
② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341