I am looking for a good way to log changes that occur on a particular set of tables in my SQL Server 2005 database. I believe the best way to do this is through a trigger that g
do you really need to log the statement that ran, most people log the changed data (INSERTED and DELETED tables within the trigger).