Tables that are the same show up as different in SQL Comp
jdbruce
Posts: 4
I'm running a compare from two DBs on different servers. Many (if not all) of the tables after the compare are indicated as different by SQL Comp. When I view the table (in SQL Comp) the text is EXACTLY the same for both tables.
One server is actually MSDE and the other is SQL 2000.
I've tried changing a few options w/ no luck.
Any idea why?
Thanks,
JD
One server is actually MSDE and the other is SQL 2000.
I've tried changing a few options w/ no luck.
Any idea why?
Thanks,
JD
This discussion has been closed.
Comments
The side-by-side windows have some issues with reordered columns.
About an hour ago, I noticed the same thing on a few stored procs, too.
JD
It sounds most likely that you want to use the 'ignore white space' option if you get differences in stored procedures.
JD
Something else to be aware of -- SQL Compare's ignore white space option still doesn't ignore the commas in the table definition. This should hopefully be enhanced in the next major version, but for now, there is no way to ignore commas that are part of a column definition. For instance:
CREATE TABLE MyTable (
Identifier INT NULL,
Data varchar(255)
)
is not the same as
CREATE TABLE MyTable (
Identifier INT NULL
Data varchar(255)
)