Let's say I have x the number of stored processes in my SQL Server project in Visual Studio 2015.
eg. 5 stored procedures.
I want to make a comparison between these 5 stored procedures and what is on my database server. I just want to compare what differences exist between the 5 stored procedures in my project and the fact that the database is similar to schema comparison.
This project is not tied to any database at the moment, because I am worried that it will ruin the existing database. The existing database has hundreds of stored procedures, but I'm interested in knowing the difference between these X or 5 stored procedures.
Is this possible using a SQL Server project?
source
share