The data-comparison tag has no wiki summary.
3
votes
6answers
272 views
Is there a free (or very cheap) tool for highlighting changes in data for sql server?
Note for bounty: please answer only if you know a tool that can monitor what changes in the same db, don't mention tools that compare 2 dbs. A visual tool, like Embarcadero Change Manager is ...
2
votes
2answers
663 views
Visual Studio 2010 DataCompare table comparison
In Visual Studio 2010 do you have the ability to compare the data of a database between 2 databases. I wanted to use this to copy data from one database to another. These databases have the exact same ...
2
votes
3answers
844 views
Schema compare with MS Data Tools in VS2008
When performing a schema compare having db_owner rights on the target database results in the following error:
The user does not have permission to perform this action.
Using the SQL Server ...
2
votes
2answers
75 views
How do I compare two nested data structures for unittesting?
For those who know perl, I'm looking for something similar to Test::Deep::is_deeply() in Python.
In Python's unittest I can conveniently compare nested data structures already, if I expect them to be ...
1
vote
1answer
317 views
Visual Studio Data Compare - Query completed with Errors
I am trying to update a db using the Data Compare functionality in VS.
Once I setup which tables I want to update I can use Write Updates and my DB is updated.
However, when I Export to a .sql file ...
1
vote
1answer
2k views
mySQL select differences between two tables in different databases
I have two databases: old and new.
Both have a comments table. There are 100 comments in the old table that are not in the new. Comments have been added to the new table and there is a conflict in IDs ...
1
vote
4answers
649 views
How to display the results of multiple comparisons
If you compare two sets of data (such as two files), the differences between these sets can be displayed in two columns, or two panes, such as WinMerge does.
But are there any visual paradigms to ...
0
votes
3answers
60 views
SQL Server query with same functionality as Excel VLookup
I have 2 columns of data that I need to compare with each other - Column A and Column B.
Column A:
Steve
Jane
Mary
Peter
Ed
Scott
Ted
Column B:
Peter
Scott
David
Nancy
Column A has a larger ...
0
votes
3answers
106 views
C++ warning of data comparision
I have one WORD variable in my program.
WORD hour;
But when I compare It
if(hour>=0 && hour<=18)
{
hour+=6;
}
It will generate warning
[Warning] comparison is always true due ...
0
votes
2answers
2k views
Best way to compare contents of two tables in Teradata?
When you need to compare two tables to see what the differences are, are there any tools or shortcuts you use, or do you handcode the SQL to compare the two tables?
Basically the core features of a ...
0
votes
1answer
82 views
Compare 2 Mysql tables' data having same structure
I have 2 tables city_sessions_1 and city_sessions_2
Structure of both table are similar
CREATE TABLE `city_sessions_1` (
`city_id` int(11),
`session_date` date,
`start_time` varchar(12),
...
0
votes
1answer
2k views
How do i compare 2 rows from the same table (Oracle 11g)
I need to create a stored procedure that processes a table looking for rows matching on a particular id with different statuses.
I know the syntax to get the row data but i have never tried comparing ...
0
votes
2answers
253 views
SQL Server Data Compare not persisting “ON DELETE SET NULL” Foreign Key Relationship
I have a feeling this is an "only on my machine" problem. I have two SQL 2008 R2 Express databases on my box. The schema for each was created with the same scripts. The data differs.
When I use ...
0
votes
1answer
37 views
data comparison oracle (source to target)
I have a query below from source this is how Active flag for target is derived
select case when active_end_date is null then 'Y' else 'N' end
from csi_item_instances cii
where instance_id = ...
0
votes
1answer
20 views
How to generate summary report of VS 2010 DataCompare results
I am doing a SQL Server DB migration task. After the migration, I need compare the old and the new DB. I need generate a summary report (by another table or excel both are OK) to the requirement team ...
0
votes
1answer
64 views
VS2010 Data -> Schema Comparison duplicate files
From time to time it would seem the Schema Comparison tool creates a new file for an existing table/view and swaps it out of the Database project for the old one. For example:
Original file:
...
0
votes
1answer
119 views
Perform Visual Studio Data Compare automatically prior to running MSTest tests
I need to perform a data compare operation to refresh a dev database froma sample data database prior to running integration tests using the VS test harness. Anyone know a way to automatically ...
-2
votes
1answer
155 views
Comparing columns between tables
I have 10 tables from different sources that I import into a SQL Server database. I want to compare them with a table named basic_source.
What I want to do is compare each attribute in ...

