resumable=y
resumable_name=<name to apear in dba_resumable>
resumable_timeout=<timeout in seconds>
Note. If you are importing using a user other than sys or system, it will need the system priv 'resumable' granting to it:
grant resumable to <user>;
Note. If a resumable job hits a problem which causes it to be suspended, you will not necessarily see a message indicating that on the screen. You need to constantly monitor either the alert log or the dba_resumable view.
set lines 100 pages 999
col name format a20
select name
, start_time
, suspend_time
, status
from dba_resumable
/
If the job gets suspended, you can see the reason why with the next query
set lines 100 pages 999
select error_msg
from dba_resumable
where name like '&resumable_name'
/