Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/atwayne/datadiff
diff results from different DataTable and generate excel report
https://github.com/atwayne/datadiff
Last synced: 12 days ago
JSON representation
diff results from different DataTable and generate excel report
- Host: GitHub
- URL: https://github.com/atwayne/datadiff
- Owner: atwayne
- License: gpl-2.0
- Created: 2014-09-22T12:19:11.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2014-11-02T13:03:00.000Z (about 10 years ago)
- Last Synced: 2023-08-05T12:11:27.462Z (over 1 year ago)
- Language: C#
- Homepage:
- Size: 5.23 MB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
datadiff
========This tool will get similar data from different sources (only SQL Server supported for now), and then exported the merged result into an excel with styles for different scenarios.
To start, create your config file and have your app.config pointing to that config file. Then you are ready to go.
config.xml
========
You can find a template of config file under the lastr2d2.Tools.DataDiff.Deploy project. I have put some comments there so you can fill in the config by following the comments.Screenshot
----------
And here is a screenshot for the final excel:![Screenshot](https://raw.githubusercontent.com/lastr2d2/datadiff/master/screenshot.jpg)
- Records which are identical filled in dark green,
- Records which are slightly different1 filled in light green,
- Records which are different filled in yellow,
- Records which are missing from one data source filled in red,1. Slightly different is for number columns, the definition is the difference between two numbers should be less than a pre-defined percentage. (See Gap in the config.xml)
Thanks
----------1. Thanks to [ClosedXML - The easy way to OpenXML](http://closedxml.codeplex.com/)