Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
SQL Server の CT (Change Tracking) で変更またはトランザクションの時間を見つける方法はありますか?
とりあえず参加sys.dm_tran_commit_table。
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