My question is, can I create one trigger for multiple operations (insert/update/delete) on one table ? Something like this :
Create trigger [dbo].[TR_AUDIT_TESTAUDIT]
ON [dbo].[testaudit]
AFTER UPDATE, INSERT, DELETE
AS BEGIN
-- prepare the audit data
case the operation is insert then
case the operation is delete then
case the operation is update then
-- process auditdata
END
Now I have to create 3 triggers for this task while I can combine them into one!