Code snippet will loop through all tables of Database SOURCEDB and compare record counts with tables in TARGETDB database
USE SOURCEDB
EXEC SP_MSforeachtable ‘DECLARE @OriCount INT
DECLARE @Count INT
DECLARE @Name VARCHAR(400)
SET @Count = (SELECT COUNT(*) FROM TARGETDB.?)
SET @OriCount = (SELECT COUNT(*) FROM SOURCEDB.?)
SET @Name=”?”
IF(@Count <> @OriCount)
BEGIN
SELECT @Name,@Count as target,@OriCount as source
END‘