title | description | author | ms.author | ms.reviewer | ms.date | ms.service | ms.subservice | ms.topic | f1_keywords | helpviewer_keywords | dev_langs | |||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
sp_delete_proxy (Transact-SQL) |
sp_delete_proxy removes the specified proxy. |
markingmyname |
maghan |
randolphwest |
01/23/2024 |
sql |
system-objects |
reference |
|
|
|
[!INCLUDE SQL Server]
Removes the specified proxy.
:::image type="icon" source="../../includes/media/topic-link-icon.svg" border="false"::: Transact-SQL syntax conventions
sp_delete_proxy
[ [ @proxy_id = ] proxy_id ]
[ , [ @proxy_name = ] N'proxy_name' ]
[ ; ]
The proxy identification number of the proxy to remove. @proxy_id is int, with a default of NULL
.
The name of the proxy to remove. @proxy_name is sysname, with a default of NULL
.
0
(success) or 1
(failure).
None.
Either @proxy_name or @proxy_id must be specified. If both arguments are specified, the arguments must both refer to the same proxy or the stored procedure fails.
If a job step refers to the proxy specified, the proxy can't be deleted and the stored procedure fails.
By default, only members of the sysadmin fixed server role can execute sp_delete_proxy
.
The following example deletes the proxy Catalog application proxy
.
USE msdb;
GO
EXEC dbo.sp_delete_proxy
@proxy_name = N'Catalog application proxy' ;
GO