6

有什么方法可以在 SQL Server 中的 CT(更改跟踪)中找到更改或事务的时间?

4

1 回答 1

18

加入sys.dm_tran_commit_table时间。

select tc.commit_time, ....
from
    changetable(changes <table>, 0) c
    join sys.dm_tran_commit_table tc on c.sys_change_version = tc.commit_ts
于 2013-10-03T20:13:46.393 回答