Skip to content

Commit

Permalink
Partical solution for #5552 to remove a stored procedure that should …
Browse files Browse the repository at this point in the history
…have been gone already.
  • Loading branch information
mitchelsellers committed Jul 17, 2023
1 parent a41c60a commit 97f6021
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 97f6021

Please sign in to comment.