在Sql Server中查找更改跟踪时间

时间:2012-12-11 13:10:58

标签: sql-server

有没有办法在CT中找到更改或交易的时间(更改跟踪) 在SQL Server中?

1 个答案:

答案 0 :(得分:10)

加入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