trgr.triggerEnable( trigger-name as String ) as null
Enables the named trigger.
Parameters | |
---|---|
trigger-name | The trigger name. |
This function must be run in the context of the database containing
the trigger to be enabled. If no trigger named $trigger-name
exists, the exception TRGR-TRIGGERDNE
is raised.
// Run in the context of the database containing the trigger. declareUpdate(); const trgr = require('/MarkLogic/triggers'); trgr.triggerEnable('myTrigger');