ORA-15240: attribute name string is invalid ORACLE 报错 故障修复 远程处理

文档解释

ORA-15240: attribute name string is invalid

Cause: The attribute name was not valid or was not recognized.

Action: Check the attribute name.

ORA-15240: 属性名称字符串无效

官方解释

ORA-15240 会发生在执行 Data Pump 导入 (impdp) 操作时,当 指定的属性名 (attribute name) 不合法时。

案例:

例 1

一个开发人员正在在 Data Pump impdp 命令中指定列名称。

IMPDP TABLES=table_name REMAP_TABLE=tablename:new_table_name REMAP_COLUMN=tablename.column_name:new_column_name

由于他忘记将列名称放在单引号中,所以会抛出以下错误:

ORA-39001: 参数无效

ORA-15240: 属性名称字符串无效

一般处理方法及步骤

将列名称用单引号括起来,就可以解决该问题。

IMPDP TABLES=table_name REMAP_TABLE=tablename:new_table_name REMAP_COLUMN=tablename.’column_name’:new_column_name


数据运维技术 » ORA-15240: attribute name string is invalid ORACLE 报错 故障修复 远程处理