core.sp_remove_collector_type (Transact-SQL)
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.
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;
See Also