I want to keep track of changes occur during execution a specific stored procedure like SP_Integration.
SP_Integration does update in many tables. I want to track the changes during integration in schema like:
TableName, ColumnName, OldValue, NewValue
If I go with trigger, it will keep track changes when it occurs outside of SP_Integration. I want to keep track changes of value when this stored procedure executes.