文档解释 ORA-14455: attempt to create referential integrity constraint on temporary table Cause: An attempt was made to crea
ORA-14455: attempt to create referential integrity constraint on temporary table
Cause: An attempt was made to create a referential integrity constraint on a temporary table. This is not supported.
Action: Use triggers.
ORA-14455 错误代码表示尝试在临时表上创建一个参照完整性约束时产生的异常。参照完整性约束是一个确保数据完整性的用于数据库约束的逻辑结构,用于禁止不一致的数据被添加或修改的数据。临时表是指其内容只存在于会话期间的表,它是不支持参照完整性约束的。
oracle 提供的官方解释如下:
“您试图为 global temporary 表定义参照完整性约束,但该运算是不合法的。为 global temporary 表定义约束是不允许的,必须使用普通表。”
假设我们有一个用户 user1,它在其回话之间在估计表上尝试定义参照完整性约束,而不使用普通表,那么这会产生上述错误消息。
(1) 检查是否正确指定参照完整性约束。
(2) 确保该约束是用户在创建表时正确定义的。
(3) 确保只使用普通表,而不是临时表来定义此类约束。
--结束END--
本文标题: ORA-14455: attempt to create referential integrity constraint on temporary table ORACLE 报错 故障修复 远程处理
本文链接: https://lsjlt.com/news/538361.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0