문제

I have a program that is calling Oracle's impdp utility to import a schema. I encounter the following errors:

ORA-14223: Deferred segment creation is not supported for this table

The tables that are failing have a column of VARRAY.

How could I turn force the creation of segments when running the impdp utility?

도움이 되었습니까?

해결책

Found the solution to this problem shortly after the question was posted. The solution to this problem is to create tables that have VARRAY columns with the SEGMENT CREATION IMMEDIATE clause.

More details are available here: http://www.oracle-base.com/articles/11g/segment-creation-on-demand-11gr2.php

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top