Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ruisoftware/dbdatacompare
DB table content Diff Tool
https://github.com/ruisoftware/dbdatacompare
compare-data compare-tables database delphi gui udl udl-files
Last synced: 11 days ago
JSON representation
DB table content Diff Tool
- Host: GitHub
- URL: https://github.com/ruisoftware/dbdatacompare
- Owner: ruisoftware
- License: mit
- Created: 2015-01-12T21:59:09.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2017-07-21T14:37:49.000Z (over 7 years ago)
- Last Synced: 2025-01-02T18:05:41.303Z (about 1 month ago)
- Topics: compare-data, compare-tables, database, delphi, gui, udl, udl-files
- Language: Pascal
- Size: 460 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
### What is this?
**DB Data Compare** compares two database tables (or views) and highlights their differences.
Those two tables can be from the same database or from two distinct databases. The tables names can be distinct as well.### Does it compare data or table schema?
Only compares table data.### How to run it?
Simply run the included binary `prjDataCompare.exe` or compile the sources.### How it works?
Before running the tool, you need to prepare either
* One [UDL](http://msdn.microsoft.com/en-us/library/e38h511e%28v=vs.71%29.aspx) file pointing to the database you want to connect, in case you need to compare tables from the **same database**.
or
* Two UDL files, in case you need to compare tables from two **different databases**.Creating Universal Data Link files is very easy. The quickest way - on Windows - is to create an empty text document, change extension from `txt` to `udl` and double-click on it. You will be presented with a GUI that should be self explanatory. For more info, please check the link above.
Then, on the left side and right sides, select your UDL files and the tables you want to compare. You will be presented with the differences.
In the example below, we are checking the data differences on the `DocPaper` table from two databases (`GoldDB.udl` and `GoldLaDB.udl`).
![screenshoot](https://github.com/ruisoftware/DBDataCompare/blob/master/DBDataCompare.png)You can see that they differ in the Key for `Ticket` and that the `GoldLaDB.DocPaper` table contains an extra record.
### Why reinventing the wheel?
Well, I wrote this back in 2002 in one afternoon, using the beloved Delphi 7 at the time.
I couldn't find any free tool quickly, so I decided to write my own.
This was done just to satisfy my needs back then, so the tool is pretty raw in terms of GUI appearance and performance, but is beautifully small.### Future plans?
Nope. I no longer work with Delphi and just decided to create this repository to post some of my old code, instead of being lost in some forgotten hard drive.
Nowadays, this kind of functionality is present in almost every IDE, so I don't have any reason or motivation to improve this tool.
Nevertheless, maybe some users might find this project interesting.