0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Oracleのジョブを削除する方法

Last updated at Posted at 2019-01-20

以下で削除できる。

--- ジョブ「JOB01」を削除する場合
--- ジョブの存在を確認
SELECT * FROM DBA_SCHEDULER_JOBS WHERE JOB_NAME='JOB01';

--- 対象ジョブを削除
BEGIN
DBMS_SCHEDULER.DROP_JOB('JOB01');
END;
/

--- ジョブが削除されていることを確認
--- 「レコードが選択されませんでした」と表示されればOK
SELECT * FROM DBA_SCHEDULER_JOBS WHERE JOB_NAME='JOB01';
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?