tablediff

tablediff是SQLServer自带的一款表数据对比工具,主要针对复制场景,比对两个不同服务器上某个数据库下的表数据是否一致。


使用命令如下

tablediff.exe -sourceserver 10.172.2.100 -sourceuser sa -sourcepassword sasa -sourcedatabase testdb3 -sourceschema dbo -sourcetable t1 -destinationserver 10.172.2.112 -destinationuser sa -destinationpassword sasa -destinationdatabase testdb1 -destinationschema dbo -destinationtable t1 -c


你可能感兴趣的:(tablediff)