sql server - Visual Studio Database Schema Compare Adds not showing up -
I am installing an existing SQL Server database project, which is the first time using the existing database. I have created my new project, then imported the database and it worked just fine.
However, when I add a new stored procedure to my new Database Project and schematic comparison in my local database, the new stored function is not visible
To be clear When comparing, I am setting my source in my database project and target in my local database.
Comparison schema stored procedure in my database project Does a great job for amendments Kript or deletion, rather than when I define a new What am I missing something?
I am using VS2013, SQL Server 2008 R2.
After creating the stored procedure in this Visual Studio, it has come to know that I have stored procedure ... Instead of the option, the script ... option is selected. The image below shows what I should have done.
as a script file Add. The SQL file is not being added to a separate item group in a build properties project. This is due to a comparison process to take it as a stored procedure.
I have determined that by looking at the properties of the .sql file (in the visual studio), I added the pair and the second .ccc where the comparison was made in the same project. The file that I added as a script file, had different properties than other files, which were considered as actual stored procedures.
Ethical of the story ... Make sure you have correctly stored the stored procedures in Visual Studio
Comments
Post a Comment