To find out which Jobs does not belong to Job Stream, the easiest way is to run a SQL query (using ORACLE DB):
alter session set current_schema=maestro_DB_user;
SELECT JOD_NAME FROM JOD_JOB_DEFINITIONS
WHERE JOD_NAME NOT IN
(SELECT AJB_NAME FROM AJB_ABSTRACT_JOBS)
No comments:
Post a Comment