Recreate All Inline Table Valued Functions
16. 1. 2024
You can use this script to recreate all inline table-valued functions in case database collation or underlying schema has been changed. You can use it to refresh all sql modules when the filter will be removed. SET NOCOUNT ON DECLARE @Object_Id INT DECLARE @Object_Name NVARCHAR(500) DECLARE @Definition NVARCHAR(MAX) DECLARE @Stmt…