
trgr.removeTrigger( trigger-name as String ) as null
Removes the named trigger.
| Parameters | |
|---|---|
| trigger-name | The trigger name. |
This function deletes the specified trigger. You must run this
function to remove a trigger before recreating it.
If the named trigger does not exist, the exception
TRGR-TRIGGERDNE is raised.
declareUpdate();
const trgr = require('/MarkLogic/triggers');
trgr.removeTrigger("myTrigger");
// Empty sequence. Removes the specified trigger from the database.
Stack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.