sys.sp_syscollector_delete_collector_type

general
#stored-procedure

Description

Deletes the definition of a collector type. The GUID for the collector type. @collector_type_uid , with a default of and must have a value if The name of the collector type.

Syntax

sp_syscollector_delete_collector_type
[ [ @collector_type_uid = ]
'collector_type_uid'
]
[ , [ @name = ]
N
'name'
]
[ ; ]

Remarks

Deletes the definition of a collector type.

The GUID for the collector type.

@collector_type_uid

, with a default of

and must have a value if

The name of the collector type.

, and must have a value if

@collector_type_uid

(success) or

@collector_type_uid

must have a value; both can’t be

Examples

Example 1

USE msdb;
GO
EXECUTE sp_syscollector_delete_collector_type @collector_type_uid =
'302E93D1-
3424-4be7-AA8E-84813ECF2419'
;