export/ import job monitor from data-pump (STATUS/ stop immediate)
when export/import running if you want to check status of use below procedure to check. step1: check JOB_NAME using dba_datapump_job.(like below ). set lines 300; set pages 300; COL owner_name FORMAT a10; COL job_name FORMAT a20 COL state FORMAT a11 COL operation LIKE state COL job_mode LIKE state select * from dba_datapump_jobs; ouput like below OWNER_NAME JOB_NAME OPERATION JOB_MODE STATE ---------- -------------------- ----------- ----------- ----------- OPER SYS_IMPORT_SCHEMA_01 IMPORT SCHEMA EXECUTING step2: now you know current running job impdp userid=usenmae/password attach=SYS_IMPORT_SCHEMA_01 (or) impdp attach=SYS_IMPORT_SCHEMA_01 => eneter next it will ask user to connect you can connect thoutgh "/ as sysdba" ouput like below some lines remove due to naming ...