ORA-19047: Cannot specify storage for individual VARRAYS ORACLE 报错 故障修复 远程处理
文档解释
ORA-19047: Cannot specify storage for individual VARRAYS
Cause: An attempt was made to combine storage specification for a particular VARRAY with STORE ALL VARRAYS clause.
Action: Either specify storage for individual VARRAYs or use the STORE ALL VARRAYS clause.
ORA-19047 是Oracle 的一个错误代码,意思是不能为各个VARRAY指定存储。
官方解释
ORA-19047:不能为个别VARRAY指定存储。
存储参数:(STORAGE)必须应用于VARRAY的定义,而不能在元素定义中指定。
常见案例
这个错误一般出现在VARRAY定义中,试图为VARRAY的元素指定存储属性时。
一般处理方法及步骤
1.检查VARRAY定义是否正确,不要在元素的定义中指定存储属性。
2.如果觉得参数(STORAGE)是必须的,则应向VARRAY定义添加该参数。