core.sp_remove_collector_type (Transact-SQL)

Applies to: SQL Server

Removes an entry from the core.supported_collector_types view in the management data warehouse database. The procedure must be executed in the context of the management data warehouse database.

The core.supported_collector_types view shows the registered collector types that can upload data to the management data warehouse.

Transact-SQL syntax conventions

Syntax

core.sp_remove_collector_type [ @collector_type_uid = ] 'collector_type_uid'
[ ; ]

Arguments

[ @collector_type_uid = ] 'collector_type_uid'

The GUID for the collector type. @collector_type_uid is uniqueidentifier, with no default value.

Return code values

0 (success) or 1 (failure).

Permissions

Requires membership in the mdw_admin (with EXECUTE permission) fixed database role.

Examples

The following example removes the Generic T-SQL Query collector type from the core.supported_collector_types view.

USE <management_data_warehouse>;
GO

DECLARE @RC INT;
DECLARE @collector_type_uid UNIQUEIDENTIFIER;

SELECT @collector_type_uid = (
    SELECT collector_type_uid
    FROM msdb.dbo.syscollector_collector_types
    WHERE name = N'Generic T-SQL Query Collector Type'
);

EXECUTE @RC = core.sp_remove_collector_type @collector_type_uid;