ServiceManager.Report.Common.Function.fn_CSVToTableString.Uninstall (Resource)

Element properties:

TypeResource
File NameServiceManager.Report.Common.Function.fn_CSVToTableString.Uninstall.sql
AccessibilityPublic

Source Code:

<Resource ID="ServiceManager.Report.Common.Function.fn_CSVToTableString.Uninstall" Accessibility="Public" FileName="ServiceManager.Report.Common.Function.fn_CSVToTableString.Uninstall.sql"/>

File Content: ServiceManager.Report.Common.Function.fn_CSVToTableString.Uninstall.sql

SET ANSI_NULLS ON

GO
SET QUOTED_IDENTIFIER ON
GO

-- Drop stored procedure if it already exists
IF EXISTS (
SELECT *
FROM sys.all_objects
WHERE type = N'TF'
AND name = N'fn_CSVToTableString'
)
DROP FUNCTION dbo.fn_CSVToTableString
GO