Hi folks,
if i have a simple table and I want to do something (say .. execute a stored proc) when a field (and i know the field i wish to look at) has changed.
Is this possible?
Version: Sql Server 2008 R2.
Example table :-
ID INTEGER PRIMARY KEY
Name NVARCHAR(100) NOT NULL
Age TINYINT NOT NULL
HairColour TINYINT NOT NULL
So .. if the content of the Name field changes, then I will execute StoreProc 'Foo'.
Any ideas?