Description of Issue
We would like scheduler jobs in a non-production environment disabled after a refresh from production.
Context
- Database Refresh
- Munis Scheduler
- Scheduler Jobs
Cause
Informational
Resolution
Option 1- Manually disable individual jobs via the Scheduler Queue:
- Sign into the refreshed Munis environment with an account with administrative rights
- In the Tyler Menu navigate to System Administration>Scheduler Administration>Scheduler Queue
- Click and highlight the job(s) that you do not want to be enabled then click Job>Hold to place the job on hold or Delete to remove the job entirely
Option 2- Adjust the refresh script to automatically place all scheduler jobs on hold in the non-production environment:
- Sign on to the Munis Application server as the Tylerservice user or equivalent
- Open File Explorer and navigate to the data drive
- Open the cmd folder
- Right click on refresh(env).cmd > edit with notepad ++
- Scroll to the bottom of the refresh script
- Paste the query below at the end of the refresh script. This query will put all jobs in the refreshed environment into a hold status
UPDATE skedqueu
set skqu_status = 'ON HOLD' Click Save
- Run the refresh as needed
Additional Information
Add Comment