even if you interrupt data bump job on shell therefore you have to do the following :-
as / as sysdba run the below query :
select * from dba_datapump_jobs
After checking the status of each one,
run the following :-
DECLARE
h1 NUMBER;
BEGIN
h1:=DBMS_DATAPUMP.ATTACH(‘JOB_NAME’,’OWNER_NAME’);
DBMS_DATAPUMP.STOP_JOB (h1,1,0);
END;
/
Thanks
Like this:
Like Loading...
Related
Published by Osama Mustafa
Osama Mustafa has progressive experience in Oracle Products, community. He recently served as Oracle Database Administrator.
Provide Database Implementation Solutions, High Availability Solution, Infrastructure and Storage Planning, Install, Configure, Implement and manage Oracle E-Business Suite environments. Architect, build and support highly-available Oracle EBS, Database and Fusion Middleware environments including appropriate reporting, Installs, configures, upgrades, tunes, and maintains production, development and test databases.
View all posts by Osama Mustafa