Options

Column Ordering in Comparison

luserantluserant Posts: 7
edited December 20, 2005 9:03AM in SQL Toolkit Previous Versions
When using RedGate.SQLCompare.Engine.Database CompareWith would a column re-order register as a difference in the schema.
For example if table_1 in database A looks like this
table_1 { 
id uniqueidentifier not null, 
column_one int,
column_two int
}
and table_1 in database B looks like this
table_1 {
id uniqueidentifier not null, 
column_two int,
column_one int
}

And I say
Differences differences=dbA.CompareWith(dbB, Options.Default);
Will there be a difference object representing the column re-order?

Thank you for your help.

Comments

Sign In or Register to comment.