ORA-39933: Parent table string.string and its nested table columns are not fully contained in the transportable set. ORACLE 报错 故障修复 远程处理

文档解释

ORA-39933: Parent table string.string and its nested table columns are not fully contained in the transportable set.

Cause: Informational message to describe a failure during transportable containment checking.

Action: Identify the nested tables using view DBA_NESTED_TABLES and resolve self containment.

ORA-39933错误是由于在执行SQL传输时,父表的字符串和它的嵌套表的列没有完全包含在传输集中而引发的。

官方解释

该 ORA-39933错误表明 错误在处理一个 传输表时,父表的字符串和它的嵌套表的列不完全包含在传输集中。

常见案例

例如,在Oracle 12c中,您尝试创建一个新的传输表集:

SQL> CREATE TABLE t1 (col1 VARCHAR2 (10) NESTED TABLE NT)

此时,您将收到以下错误:

ORA-39933: 父表语句“t1”和其嵌套表的列不完全包含在传输集中

一般处理方法及步骤

1.仔细检查语句并确保所有表和列都正确指定。

2.不要使用“*”号,而是指定需要传输的列。

3.检查数据库是否正确绑定,否则除非表及其列在源和目标数据库中都能够查找到,否则数据库不可能把表传输给目标数据库。

4.查看查找路径,确保您将父表和嵌套表的迁移加入到传输表集中去。


数据运维技术 » ORA-39933: Parent table string.string and its nested table columns are not fully contained in the transportable set. ORACLE 报错 故障修复 远程处理