ORA-14613: Attempt to generate name from parent name string and template name string failed as the combine named would have been longer than allowed ORACLE 报错 故障修复 远程处理

文档解释

ORA-14613: Attempt to generate name from parent name string and template name string failed as the combine named would have been longer than allowed

Cause: Any name generated from a partition name and template name must be less than the maximum permissible name for an identifier

Action: Shorten either partition or template name.

ORA-14613:试图从父名字串和模板名字串中生成名字失败,因为合并的名字会比允许的更长。

官方解释

该错误由Oracle数据库引擎上的过程“dbms_metadata”引起,当数据库用户尝试从父名字串和模板名字串中生成名称时,会发生ORA-14613错误,因为生成的名称会比允许的最大长度更长。

常见案例

当使用Oracle Data Pump导出表或视图时,用户可能会遇到ORA-14613错误。 Data Pump使用dbms_metadata在后台执行操作,因此可以引发此错误。

正常处理方法及步骤

1.首先,确定数据库模式中的表名或视图名的大小是数据库的最大值30个字符。

2.然后,尝试使用较短的名称(小于30个字符)重新请求操作,看看是否解决了ORA-14613错误。

3.如果不成功,请使用认证数据泵导出操作,而不是通常的导出操作,因为认证导出操作不会使用dbms_metadata,尤其是对具有长表名的对象进行操作。


数据运维技术 » ORA-14613: Attempt to generate name from parent name string and template name string failed as the combine named would have been longer than allowed ORACLE 报错 故障修复 远程处理