ORA-19048: Cannot specify VARRAY storage in tableProps

文档解释

ORA-19048: Cannot specify VARRAY storage in tableProps

Cause: An attempt was made to store all varrays as tables or LOBs in tableProps.

Action: Do not specify varray store as tables or LOBs in tableProps.

ORA-19048:在tableProps中不能指定VARRAY存储。

官方解释

ORA-19048: 在 tableProps 中不能指定 VARRAY 存储。MsgCat 表示:”不能够指定 VARRAY 存储在 tableProps 中”。

这是一个解析错误,表明您将 VARRAY(变长数组列)指定到了tableProps(表属性)中,这是不被允许的。

常见案例

可能的情况是,您想在表中使用VARRAY作为字段,并指定其存储属性,如:

CREATE TABLE table_name

(

field1 NUMBER,

field2 VARRAY(10) NOT NULL

)

Storage

(

tableProps VARRAY

);

一般处理方法及步骤

VARRAY 属性只能在字段声明中规定,不能在 tableProps 中指定:

CREATE TABLE table_name

(

field1 NUMBER,

field2 VARRAY(10) NOT NULL

)

Storage

(

tableProps

);

如果您正在使用“tableProps”指定字段级别的存储属性,那么您必须使用表级别的存储类型指定字段级别的属性。

你可能感兴趣的