Creates a trigger that tracks all successful changes on a table and writes the
time of last change while dynamically determining the calling table name.
DROP TRIGGER [dbo].[Tracker]
GO
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TRIGGER [dbo].[Tracker]
ON [dbo].[TableToTrack]
AFTER INSERT, UPDATE,