Production.uIllustration Trigger
Information
| Name | Production.uIllustration |
| Table Name | Production.Illustration |
| Created | 14.10.2005 1:59:52 |
| Modified | 14.10.2005 1:59:52 |
| Disabled |   |
| For replication |   |
| Instead of trigger |   |
| Activates on | UPDATE |
SQL Script
CREATE TRIGGER [Production].[uIllustration] ON [Production].[Illustration]
AFTER UPDATE NOT FOR REPLICATION AS
BEGIN
SET NOCOUNT ON;
UPDATE [Production].[Illustration]
SET [Production].[Illustration].[ModifiedDate] = GETDATE()
FROM inserted
WHERE inserted.[IllustrationID] = [Production].[Illustration].[IllustrationID];
END;