[MSSQL] Activate/Deactivate Trigger
발행일: Feb, 2025
조회수: 0
단어수: 39
Table of Contents
Activating a Trigger
To activate a trigger in a table, use the following SQL command:
ALTER TABLE [table_name] ENABLE TRIGGER [trigger_name]Deactivating a Trigger
To deactivate a trigger in a table, use the following SQL command:
ALTER TABLE [table_name] DISABLE TRIGGER [trigger_name]