文档解释 ORA-14641: STORE-IN clause can be specified only for a Hash, Composite Range Hash table/partition Cause: Specifying
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关键字,以支持指定存储空间。
--结束END--
本文标题: ORA-14641: STORE-IN clause can be specified only for a Hash, Composite Range Hash table/partition OR
本文链接: https://lsjlt.com/news/532371.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0