Compare Database Projects
-
Hi, How to compare same database with different version inside visual studio. I have one project of database, it has different versions. I have to compare any two different version. Thanks
-
Hi, How to compare same database with different version inside visual studio. I have one project of database, it has different versions. I have to compare any two different version. Thanks
Presuming you are using SQL Server (you do not tell us what database) you need to compare the schemas of the 2 databases by looping through the various sysobject and views. There are also a number of tools that will do the job for you, some of them free!
Never underestimate the power of human stupidity RAH
-
Presuming you are using SQL Server (you do not tell us what database) you need to compare the schemas of the 2 databases by looping through the various sysobject and views. There are also a number of tools that will do the job for you, some of them free!
Never underestimate the power of human stupidity RAH
Yes Mycroft I am using SQL Server, let me try your idea. Thanks