Click here to Skip to main content
Click here to Skip to main content

Database Comparator

By , 8 Jan 2009
 

Introduction 

Nowadays, Microsoft SQL Server is one of the most popular DBMS in the world and most companies and software engineers use it as a database. During development and maintenance of a program, it is unclear whether a database has been changed. For example, when you install your program on the customer's site, after some time if you want to upgrade this software / database, you must have more significant data because if you can't upgrade the database properly, then your program doesn't work properly. For solving this problem, I think that if there is a tool that can compare the main database (on the site of the developer) with the slave database (on the customer site) and find the difference between them, it can help us to maintain a program properly.

Design

For design and implementation of this tool, I used C# .NET and specified my tool to Microsoft SQL Server 2000. The user interface of my program has 2 sections:

  1. Master section 
  2. Slave section

In the Master section, the program retrieves information from the main site on developer side and in the Slave section, it retrieves information from the customer site. Information that is retrieved from the databases involves Table List, Table Names, Column Names, Column Types, etc. For the first step for retrieving Tables List, in the SQL Server 2000, all information about tables and views is stored in a table with name "sysobjects". For retrieving information from this table, I use a query as follows:

SELECT     name AS TableName, id FROM         dbo.sysobjects WHERE     (xtype = 'u')

After getting a list of tables in the two databases, now I can compare the list of tables and find out which one of the tables is a new table. Each table that exists in the master list and does not exist in the slave list is a new table. But for comparing two databases, this is not enough because may be some table's columns have been changed and by this method, we can't find these changes. For completing my method, I must compare each table one by one and retrieve information of each table. For retrieving information of tables, I use a query as follows:

SELECT     dbo.syscolumns.id, dbo.syscolumns.name AS Col, dbo.systypes.name AS TypeName,
dbo.sysobjects.name AS TableName, dbo.syscolumns.length AS Len FROM         dbo.syscolumn
s INNER JOIN dbo.systypes ON dbo.syscolumns.xtype = dbo.systypes.xusertype INNER JOIN dbo
.sysobjects ON dbo.syscolumns.id = dbo.sysobjects.id WHERE     (dbo.sysobjects.xtype = 'u
') AND dbo.sysobjects.name like  [TABLENAME] 

After retrieving information such as column name, column type and column size, now I can compare and find a better result.

User Interface

For using my program, on the left side of my program you can see the master section and on the right side you see the slave section. For each section you must type server name, user id and password for connecting. After connecting to the databases, now you must just click on compare! 

For better virtual comparing, I use a tree for each database. At the first level of tree, you can see the list of tables and by expanding each node, you can see its information such as column name, columns type, etc.

SQL1.JPG

SQL2.JPG

In this version of my program, the software just displays the difference but for future work, I want to use this information software to produce a SQL script file that can save into a file and customer can execute this file for upgrading his/her database.

Next Version (1.1) 

In this version , You can save the schema of your database into a file (*.schema)
and in the later you can fetch the schema of your database offline.
in the next picture you can see what ever you expected:

SQL3.JPG

Future Work 

In future, this may be able to generate a SQL report.  

History 

  • 29th December, 2008: Initial post 
  • 8th Jan, 2009 : Version 1.1 Released

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Amir Mehrabi-Jorshari
Software Developer (Senior) Omid Farda IT Company
Iran (Islamic Republic Of) Iran (Islamic Republic Of)
Member
Master of Science in Computer Engineering

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
Questiongoodmembercbysc6 May '13 - 16:03 
QuestionThanksmemberreypotxo6 Jun '12 - 20:57 
GeneralGood work. Simple tool just what lots of us need.memberronp18 Jan '09 - 0:02 
GeneralRe: Good work. Simple tool just what lots of us need.memberAmir Mehrabi J.18 Jan '09 - 22:00 
GeneralGood Work - butmemberCharles K. Kincaid5 Jan '09 - 6:34 
GeneralRe: Good Work - butmemberbgs2645 Jan '09 - 22:29 
NewsRe: Good Work - butmemberAmir Mehrabi J.8 Jan '09 - 4:40 
NewsRe: Good Work - butmemberAmir Mehrabi J.8 Jan '09 - 6:12 
GeneralCheck out OpenDBDiffmembergrundt30 Dec '08 - 12:49 
GeneralRe: Check out OpenDBDiffmemberAmir Mehrabi J.30 Dec '08 - 18:44 
GeneralRe: Check out OpenDBDiffmemberglittle24 Jan '09 - 10:29 
AnswerRe: Check out OpenDBDiffmemberAmir Mehrabi J.4 Jan '09 - 23:43 
GeneralRe: Check out OpenDBDiffmemberronp17 Jan '09 - 23:59 
GeneralRe: Check out OpenDBDiffmemberdojohansen20 Jul '09 - 0:31 
GeneralGood but needs lot of improvementsmemberKant29 Dec '08 - 7:41 
GeneralRe: Good but needs lot of improvementsmemberAmir Mehrabi J.29 Dec '08 - 18:34 
GeneralMy vote of 2memberSrinath G Nath29 Dec '08 - 3:39 
GeneralRe: My vote of 2memberAmir Mehrabi J.29 Dec '08 - 18:37 
Generalyour idea is good but...memberGuillaume Leparmentier29 Dec '08 - 3:36 
GeneralRe: your idea is good but...memberAmir Mehrabi J.29 Dec '08 - 18:39 
GeneralMy vote of 1memberPaul E. Bible29 Dec '08 - 3:32 
GeneralRe: My vote of 1memberAmir Mehrabi J.29 Dec '08 - 3:34 
GeneralRe: My vote of 1memberjszczur6 Jan '09 - 22:23 
GeneralRe: My vote of 1membersupercat98 Jan '09 - 7:46 
GeneralGood Article!memberMember 443280429 Dec '08 - 3:21 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web01 | 2.6.130523.1 | Last Updated 8 Jan 2009
Article Copyright 2008 by Amir Mehrabi-Jorshari
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid