Adding a migration after a manual change to production
asadc
Posts: 6 Bronze 1
Hello,
Could someone please advise on how to correctly sync the database project after a stored procedure was created manually in production? The project is currently configured to generate scripts for database objects such as stored procedures.
Thanks.
Could someone please advise on how to correctly sync the database project after a stored procedure was created manually in production? The project is currently configured to generate scripts for database objects such as stored procedures.
Thanks.
Tagged:
Answers
Are you using a SQL Source Control or a SQL Change Automation project?
Kind Regards,
Product Support Engineer
Redgate Software Ltd
Please see our Help Center for detailed guides on how to use our tools
This will generate a Programmable Objects script that will be deployed in Production and will drop the existing Stored Procedure and recreate it.
Product Support Engineer
Redgate Software Ltd
Please see our Help Center for detailed guides on how to use our tools
For example:
IF OBJECT_ID('[HumanResources].[uspUpdateEmployeeHireInfo]') IS NOT NULL
Product Support Engineer
Redgate Software Ltd
Please see our Help Center for detailed guides on how to use our tools