SQL Server Change Data Capture - Capture user who made the change
问题 Concerning SQL Server Change Data Capture , can you track the User who has made the change to the row/column data or is there anyway to extend CDC to allow this? I couldn't see anything in the documentation. 回答1: You can't capture username with CDC.. You have to use Auditing to do so or if this is a one time request,you can query TLOG.. Below is the connect item requesting the same.. CDC : options to capture more data (username, date/time, etc) You also can use triggers as per this article