When doing a Data Compare using SQL Server Data Tools through VS 2013 pro, I have a scenario where some tables appear to be getting missed out.
What I mean by that is there is data in TableA
on the source server but no data in the equivalent table on the destination server.
However the results window doesn't even display a row for TableA
.
Also if I try to filter the results in the next step prior to pressing "Finish", TableA
doesn't appear as an option to filter by. It's almost as if the table doesn't exist on the destination server. I've verified that is does by:
- Connecting through SSMS and viewing the list of tables
- Running
SELECT * FROM information_schema.tables
In both cases I can see the table is listed.
Has anyone else seen this? What am I missing?