Created
December 17, 2019 20:36
-
-
Save iversond/319269882bcd23206c885a895b11e17f to your computer and use it in GitHub Desktop.
Disable Process Scheduler Push Notifications
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Remove PRCS Request Submitted notifications | |
update sysadm.PSPTPNCOLLEVTS set event_name = ' ' where PTPNCOLLNAME = 'PRCSPTPNCOLLECTION'; | |
commit; | |
-- Validation: Collection PRCSPTPNCOLLECTION should have no event_name set | |
select * from sysadm.PSPTPNCOLLEVTS where PTPNCOLLNAME = 'PRCSPTPNCOLLECTION'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment