我的编程空间,编程开发者的网络收藏夹
学习永远不晚

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

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

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

文档解释

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;

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

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

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

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

文档解释ORA-22912: specified column or attribute is not a nested table typeCause: The storage clause is specified for a
ORA-22912: specified column or attribute is not a nested table type ORACLE 报错 故障修复 远程处理
2023-11-05

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

文档解释ORA-22918: specified column or attribute is not a VARRAY typeCause: Attemp to define a VARRAY storage clause for a
ORA-22918: specified column or attribute is not a VARRAY type ORACLE 报错 故障修复 远程处理
2023-11-05

ORA-22907: invalid CAST to a type that is not a nested table or VARRAY ORACLE 报错 故障修复 远程处理

文档解释ORA-22907: invalid CAST to a type that is not a nested table or VARRAYCause: Attempted to CAST to a type that is
ORA-22907: invalid CAST to a type that is not a nested table or VARRAY ORACLE 报错 故障修复 远程处理
2023-11-05

ORA-22913: must specify table name for nested table column or attribute ORACLE 报错 故障修复 远程处理

文档解释ORA-22913: must specify table name for nested table column or attributeCause: The storage clause is not specified
ORA-22913: must specify table name for nested table column or attribute ORACLE 报错 故障修复 远程处理
2023-11-05

ORA-25276: table specified is not a queue table ORACLE 报错 故障修复 远程处理

文档解释ORA-25276: table specified is not a queue tableCause: An invalid queue table name is specified.Action: Check the
ORA-25276: table specified is not a queue table ORACLE 报错 故障修复 远程处理
2023-11-05

ORA-54003: specified data type is not supported for a virtual column ORACLE 报错 故障修复 远程处理

文档解释ORA-54003: specified data type is not supported for a virtual columnCause: Only scalar data types are supported for
ORA-54003: specified data type is not supported for a virtual column ORACLE 报错 故障修复 远程处理
2023-11-05

ORA-30752: column or table string is not substitutable ORACLE 报错 故障修复 远程处理

文档解释ORA-30752: column or table string is not substitutableCause: The user is performing an operation that is not
ORA-30752: column or table string is not substitutable ORACLE 报错 故障修复 远程处理
2023-11-05

ORA-14457: disallowed Nested Table column in a Temporary table ORACLE 报错 故障修复 远程处理

文档解释ORA-14457: disallowed Nested Table column in a Temporary tableCause: An attempt made to create a Nested Table
ORA-14457: disallowed Nested Table column in a Temporary table ORACLE 报错 故障修复 远程处理
2023-11-05

ORA-32125: Attribute type is not appropriate ORACLE 报错 故障修复 远程处理

文档解释ORA-32125: Attribute type is not appropriateCause: The return type of the get method does not match the type of the
ORA-32125: Attribute type is not appropriate ORACLE 报错 故障修复 远程处理
2023-11-05

ORA-22904: invalid reference to a nested table column ORACLE 报错 故障修复 远程处理

文档解释ORA-22904: invalid reference to a nested table columnCause: invalid use of a nested table columnAction: remove
ORA-22904: invalid reference to a nested table column ORACLE 报错 故障修复 远程处理
2023-11-05

ORA-22814: attribute or element value is larger than specified in type ORACLE 报错 故障修复 远程处理

文档解释ORA-22814: attribute or element value is larger than specified in typeCause: Value provided for the object type
ORA-22814: attribute or element value is larger than specified in type ORACLE 报错 故障修复 远程处理
2023-11-05

ORA-32025: string.string is not a table or view object. ORACLE 报错 故障修复 远程处理

文档解释ORA-32025: string.string is not a table or view object.Cause: An attempt was made to set the audit table to a
ORA-32025: string.string is not a table or view object. ORACLE 报错 故障修复 远程处理
2023-11-05

ORA-22615: attribute is not a collection ORACLE 报错 故障修复 远程处理

文档解释ORA-22615: attribute is not a collectionCause: collection routine is invoked upon a non-collection attributeAction:
ORA-22615: attribute is not a collection ORACLE 报错 故障修复 远程处理
2023-11-05

ORA-31080: type not specified for attribute or element “string” ORACLE 报错 故障修复 远程处理

文档解释ORA-31080: type not specified for attribute or element stringCause: The identified attribute or element does not
ORA-31080: type not specified for attribute or element “string” ORACLE 报错 故障修复 远程处理
2023-11-05

ORA-14060: data type or length of a table partitioning column may not be changed ORACLE 报错 故障修复 远程处理

文档解释ORA-14060: data type or length of a table partitioning column may not be changedCause: User issued ALTER TABLE
ORA-14060: data type or length of a table partitioning column may not be changed ORACLE 报错 故障修复 远程处理
2023-11-05

ORA-30753: column or table string is substitutable ORACLE 报错 故障修复 远程处理

文档解释ORA-30753: column or table string is substitutableCause: The user is performing an operation that is not allowed on
ORA-30753: column or table string is substitutable ORACLE 报错 故障修复 远程处理
2023-11-05

ORA-31441: table is not a change table ORACLE 报错 故障修复 远程处理

文档解释ORA-31441: table is not a change tableCause: User attempted to execute the DROP_CHANGE_TABLE procedure on a table
ORA-31441: table is not a change table ORACLE 报错 故障修复 远程处理
2023-11-05

ORA-22631: attribute [string] is is not well-formed or does not match the type ORACLE 报错 故障修复 远程处理

文档解释ORA-22631: attribute [string] is is not well-formed or does not match the typeCause: Passing an attribute that is
ORA-22631: attribute [string] is is not well-formed or does not match the type ORACLE 报错 故障修复 远程处理
2023-11-05

ORA-54010: expression column is not supported for a temporary table ORACLE 报错 故障修复 远程处理

文档解释ORA-54010: expression column is not supported for a temporary tableCause: Attempt to create/alter a temporary table
ORA-54010: expression column is not supported for a temporary table ORACLE 报错 故障修复 远程处理
2023-11-04

ORA-39795: Subtype index is not first attribute for object table or column, string. ORACLE 报错 故障修复 远

文档解释ORA-39795: Subtype index is not first attribute for object table or column, string.Cause: The subtype index was not
ORA-39795: Subtype index is not first attribute for object table or column, string. ORACLE 报错 故障修复 远
2023-11-05

编程热搜

  • Python 学习之路 - Python
    一、安装Python34Windows在Python官网(https://www.python.org/downloads/)下载安装包并安装。Python的默认安装路径是:C:\Python34配置环境变量:【右键计算机】--》【属性】-
    Python 学习之路 - Python
  • chatgpt的中文全称是什么
    chatgpt的中文全称是生成型预训练变换模型。ChatGPT是什么ChatGPT是美国人工智能研究实验室OpenAI开发的一种全新聊天机器人模型,它能够通过学习和理解人类的语言来进行对话,还能根据聊天的上下文进行互动,并协助人类完成一系列
    chatgpt的中文全称是什么
  • C/C++中extern函数使用详解
  • C/C++可变参数的使用
    可变参数的使用方法远远不止以下几种,不过在C,C++中使用可变参数时要小心,在使用printf()等函数时传入的参数个数一定不能比前面的格式化字符串中的’%’符号个数少,否则会产生访问越界,运气不好的话还会导致程序崩溃
    C/C++可变参数的使用
  • css样式文件该放在哪里
  • php中数组下标必须是连续的吗
  • Python 3 教程
    Python 3 教程 Python 的 3.0 版本,常被称为 Python 3000,或简称 Py3k。相对于 Python 的早期版本,这是一个较大的升级。为了不带入过多的累赘,Python 3.0 在设计的时候没有考虑向下兼容。 Python
    Python 3 教程
  • Python pip包管理
    一、前言    在Python中, 安装第三方模块是通过 setuptools 这个工具完成的。 Python有两个封装了 setuptools的包管理工具: easy_install  和  pip , 目前官方推荐使用 pip。    
    Python pip包管理
  • ubuntu如何重新编译内核
  • 改善Java代码之慎用java动态编译

目录