Skip to content

Commit

Permalink
Merge pull request #5752 from mitchelsellers/feature/fix-5552-sql
Browse files Browse the repository at this point in the history
Partial solution for #5552 to remove a stored procedure
  • Loading branch information
valadas authored Jul 17, 2023
2 parents 255e717 + 97f6021 commit 90e6ac4
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,12 @@ AS
INNER JOIN {databaseOwner}{objectQualifier}ExtensionUrlProviders P ON P.ExtensionUrlProviderID = PT.ExtensionUrlProviderID
WHERE (PT.IsActive = 1)
GO



/* Fix Invalid Objects #5552 */
IF EXISTS (SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N'{databaseOwner}[{objectQualifier}DeleteSearchWord]') AND type in (N'P', N'PC'))
DROP PROCEDURE {databaseOwner}[{objectQualifier}DeleteSearchWord]
GO
/************************************************************/
/***** SqlDataProvider *****/
/************************************************************/

0 comments on commit 90e6ac4

Please sign in to comment.