Created
September 4, 2019 16:37
-
-
Save cmaggiulli/12fae0959e96ceb97592d4123f158a85 to your computer and use it in GitHub Desktop.
Kills a expdp job. Need to replace C1 and OICIMPEXPUSER with the job name and job owner, respectively
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
DECLARE | |
h1 NUMBER; | |
BEGIN | |
h1:=DBMS_DATAPUMP.ATTACH('C1','OICEXPIMPUSER'); | |
DBMS_DATAPUMP.STOP_JOB (h1,1,0); | |
END; | |
/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment