返回顶部
首页 > 资讯 > 错误编码 >ORA-22912: specified column or attribute is not a nested table type ORACLE 报错 故障修复 远程处理
  • 876
分享到

ORA-22912: specified column or attribute is not a nested table type ORACLE 报错 故障修复 远程处理

报错故障column 2023-11-05 19:11:46 876人浏览 泡泡鱼
摘要

文档解释 ORA-22912: specified column or attribute is not a nested table type Cause: The storage clause is specified for a co

文档解释

ORA-22912: specified column or attribute is not a nested table type

Cause: The storage clause is specified for a column or attribute that is not a nested table column or attribute.

Action: Specify a valid nested table column or attribute.

ORA-22912: 指定的列或属性不是嵌入式表类型

官方解释

该错误的官方解释是:

“ORA-22912: 指定的列或属性不是一个嵌入式表类型”

常见案例

ORA-22912错误最常见的情况是,你使用emp和DEPT表,要从EMP表中获取DEPT表中分配给雇员的信息。在某些情况下,当使用DEPT表中的嵌入式对象时,你会收到ORA-22912错误。

一般处理方法及步骤

1.检查错误的sql命令的表达式是否正确,确认你要查询的列或属性是否是一个嵌入式表类型。

2.确认您的查询中嵌入式表的类型是否可以被正确解释,嵌入式表的定义是否正确声明。

3.确认您查询的表是否存在,查询的字段是否存在,确认其中嵌入式表类型字段是否是正确的。

4.如果查询中包含嵌入式表函数,请确认嵌入式表函数的参数是否正确,然后重新运行查询。

5.重新整理objects/instances:

DROP TABLE Emp;

DROP TABLE Dept;

CREATE TABLE Emp (empid NUMBER, empname VARCHAR2(30), DeptObj DeptType);

CREATE TABLE Dept (deptid NUMBER, deptname VARCHAR2(30));

CREATE TYPE DeptType AS OBJECT (deptid NUMBER, deptname VARCHAR2(30));

INSERT INTO Emp VALUES (1, ‘Tom’, DeptType(10, ‘Marketing’));

INSERT INTO Emp VALUES (2, ‘John’, DeptType(20, ‘Sales’));

COMMIT;

6.尝试使用集合函数处理查询:

SELECT <column_list>

FROM Emp e, TABLE(e.DeptObj) d;

--结束END--

本文标题: ORA-22912: specified column or attribute is not a nested table type ORACLE 报错 故障修复 远程处理

本文链接: https://lsjlt.com/news/542781.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

猜你喜欢
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作