If I have a simple table and I want to do something (say .. execute a stored procedure) when a column (and I know the column I wish to look for) 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 stored procedure 'Foo'.
Any ideas?