Skip to content

Latest commit

 

History

History
65 lines (47 loc) · 2.21 KB

sp-help-agent-parameter-transact-sql.md

File metadata and controls

65 lines (47 loc) · 2.21 KB
title description author ms.author ms.reviewer ms.date ms.service ms.subservice ms.topic f1_keywords helpviewer_keywords dev_langs
sp_help_agent_parameter (Transact-SQL)
Returns all the parameters of a profile from the MSagent_parameters system table.
markingmyname
maghan
randolphwest
05/14/2024
sql
replication
reference
sp_help_agent_parameter
sp_help_agent_parameter_TSQL
sp_help_agent_parameter
TSQL

sp_help_agent_parameter (Transact-SQL)

[!INCLUDE SQL Server SQL MI]

Returns all the parameters of a profile from the MSagent_parameters system table. This stored procedure is executed at the Distributor where the agent is running, on any database.

:::image type="icon" source="../../includes/media/topic-link-icon.svg" border="false"::: Transact-SQL syntax conventions

Syntax

sp_help_agent_parameter [ [ @profile_id = ] profile_id ]
[ ; ]

Arguments

[ @profile_id = ] profile_id

The ID of the profile from the MSagent_parameters table. @profile_id is int, with a default of -1, which returns all parameters.

Result set

Column name Data type Description
profile_id int ID of the agent profile.
parameter_name sysname Name of the parameter.
value nvarchar(255) Value of the parameter.

Return code values

0 (success) or 1 (failure).

Remarks

sp_help_agent_parameter is used in all types of replication.

Permissions

Only members of the sysadmin fixed server role or the replmonitor fixed database role can execute sp_help_agent_parameter.

Related content