02-29-2012 12:39 PM - edited 03-01-2019 08:52 AM
My company has over 3000 jobs setup in Tidal, most of the jobs are active although some are disable. Has anyone been able to run a query to discover only Active or Disabled jobs?
Solved! Go to Solution.
02-29-2012 01:32 PM
You don't need to run a query for this. You can get the information from the Definitions, Job view.
- Click the Filter (Funnel) icon to display the Job Rule Filter. Use the "Enabled" field to select enabled (Yes) or disabled (No) jobs.
- Right-click on Jobs and select Group Display, Expand All
- Right-click on Jobs and select Export and you can save the information to a .csv file
To limit the columns that display, right-click on Jobs and select Preferences. Select the columns you want on your list.
If you insist on running a query, something like this should work:
select jobmst.jobmst_prntname as 'Group'
, jobmst.jobmst_name as 'Job'
from jobmst
where jobmst.jobmst_active = 'Y' /* Y = enabled, N = disabled */
and jobmst.jobmst_dirty = '' /* exclude rows marked for deletion */
order by 1, 2
02-29-2012 01:32 PM
You don't need to run a query for this. You can get the information from the Definitions, Job view.
- Click the Filter (Funnel) icon to display the Job Rule Filter. Use the "Enabled" field to select enabled (Yes) or disabled (No) jobs.
- Right-click on Jobs and select Group Display, Expand All
- Right-click on Jobs and select Export and you can save the information to a .csv file
To limit the columns that display, right-click on Jobs and select Preferences. Select the columns you want on your list.
If you insist on running a query, something like this should work:
select jobmst.jobmst_prntname as 'Group'
, jobmst.jobmst_name as 'Job'
from jobmst
where jobmst.jobmst_active = 'Y' /* Y = enabled, N = disabled */
and jobmst.jobmst_dirty = '' /* exclude rows marked for deletion */
order by 1, 2
02-29-2012 02:00 PM
Hi Tracy,
Thank you for your help, that worked!
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide