sys.sp_delete_proxy

general
#stored-procedure

Description

Removes the specified proxy. The proxy identification number of the proxy to remove. , with a default of The name of the proxy to remove.

Syntax

sp_delete_proxy
[ [ @proxy_id = ] proxy_id ]
[ , [ @proxy_name = ]
N
'proxy_name'
]
[ ; ]

Remarks

Removes the specified proxy.

The proxy identification number of the proxy to remove.

, with a default of

The name of the proxy to remove.

@proxy_name

, with a default of

(success) or

Examples

Example 1

sp_delete_proxy

Example 2

Catalog application proxy

Example 3

USE msdb;
GO
EXECUTE dbo.sp_delete_proxy
@proxy_name = N
'Catalog application proxy'
;
GO