在所有表上使用CHANGETABLE()

时间:2012-11-15 16:23:23

标签: sql-server-2008

我需要知道使用更改跟踪在数据库中更改了哪些表。有没有表格,我可以找到最后更新的表与提交ID? 我可以使用select * from CHANGETABLE(CHANGES taitemnames,25262)ct order by sys_change_version desc,但这需要我为每个表运行一次以检查更改。

2 个答案:

答案 0 :(得分:0)

我不熟悉此功能,但如果您的问题是如何使用CHANGETABLE()查询多个表,那么我假设您可以使用存储过程循环所有表名并使用动态SQL运行查询:

declare 
    @sql nvarchar(max), 
    @parameters nvarchar(max), 
    @TableName nvarchar(128), 
    @Version bigint

set @Version = CHANGE_TRACKING_CURRENT_VERSION()

declare Tables cursor local fast_forward
for 
select name from sys.tables where... -- add conditions here if necessary

open Tables
fetch next from Tables into @TableName
while @@fetch_status = 0
begin
    set @sql = N'select * from CHANGETABLE(CHANGES ' + quotename(@TableName) + ', @LastVersion)ct order by sys_change_version desc'
    set @parameters = N'@LastVersion bigint'
    exec sp_executesql @sql, @parameters, @LastVersion = @Version
    fetch next from Tables into @TableName
end

close Tables
deallocate Tables

您可以将其与动态SQL中的INSERT结合使用,将结果写入表格,然后查询报告和分析。

答案 1 :(得分:0)

尝试sys.CHANGE_TRACKING_TABLES(记录on MSDN here)。

您必须使用OBJECT_NAME从第一列获取表名。