Viewing 3 posts - 1 through 3 (of 3 total)
Below script is used to Compare fields and their data on two DB's.
ALTER procedure [dbo].[DataComparision]
@Server1 varchar(50),
@Db1 varchar(50),
@Server2 varchar(50),
@Db2 varchar(50)
AS
BEGIN
--Schemadiffer is a table that contains the details of field differed information...
June 18, 2012 at 1:57 pm
Thanks FYI. But it is not free ware. Is there any way to do using script?
Ganesh
June 12, 2012 at 10:28 am
I have two Data Bases in my PC.One is staging and another one is Development. Same tables are existing in both Development DB and Staging DB.For example development DB has...
June 11, 2012 at 7:26 am
Viewing 3 posts - 1 through 3 (of 3 total)