https://dba.stackexchange.com/questions/73836/exporting-scheduled-jobs-in-oracle


SELECT dbms_metadata.get_ddl( 'PROCOBJ', <<job name>>, <<schema>> )
  FROM dual

如果job名称为'job_abc', schema为text_schema,则查看方式为

SELECT dbms_metadata.get_ddl( 'PROCOBJ', 'job_abc', 'text_schema' )
  FROM dual

相关文章:

  • 2021-12-14
  • 2021-06-10
  • 2021-05-27
  • 2021-11-30
  • 2021-11-29
  • 2022-12-23
  • 2021-11-30
  • 2021-12-16
猜你喜欢
  • 2022-01-13
  • 2022-12-23
  • 2021-11-30
  • 2021-12-09
  • 2022-12-23
  • 2021-11-05
  • 2021-11-30
相关资源
相似解决方案