I am new to Azure DevOps.
I have created a stored procedure and after merging the changes with the repository.
I ran the pipeline but that stored procedure is not reflected in the database.
Other functions and tables were deployed successfully, only stored procedures are not deployed.
Can anyone help me with this?
Thanks in advance!
The most likely issue is your project file. When adding new objects to a database project, the scripts must also be configured in the project file with the Build Action set to Build.
One other item to check would be the configuration of your Release in DevOps. Review the Additional SqlPackage.exe Arguments and ensure there is nothing there that would cause Stored Procedures to be skipped.