ORA-14457: disallowed Nested Table column in a Temporary table
Cause: An attempt made to create a Nested Table column in a temporary table. This is not supported.
Action: Do not specify these datatypes for temporary tables.
ORA-14457: disallowed Nested Table 列在一个临时表中出现的错误消息。
指示不能将嵌套表列放入临时表中。
在试图在临时表中创建嵌套表列时,这个错误可以发生,因为临时表没有支持嵌套表列。
1. 要解决这个问题,可以考虑在普通表中维护嵌套表列,而不是在临时表中维护嵌套表列。
2. 改变语句中的临时表条件,改用普通表。
3. 使用外部表代替嵌套表。