HumanResources.uJobCandidate Trigger
Information
| Name | HumanResources.uJobCandidate |
| Table Name | HumanResources.JobCandidate |
| 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 [HumanResources].[uJobCandidate] ON [HumanResources].[JobCandidate]
AFTER UPDATE NOT FOR REPLICATION AS
BEGIN
SET NOCOUNT ON;
UPDATE [HumanResources].[JobCandidate]
SET [HumanResources].[JobCandidate].[ModifiedDate] = GETDATE()
FROM inserted
WHERE inserted.[JobCandidateID] = [HumanResources].[JobCandidate].[JobCandidateID];
END;