sp_help_agent_profile (T-SQL)

Displays the profile of a specified agent.

Syntax

sp_help_agent_profile [[@agent_type =] agent_type]
    [,[@profile_id =] profile_id]

Arguments
[@agent_type =] agent_type
Is the type of agent. agent_type is int, with a default of 0, and can be one of these values.

 

Value Description
1 Snapshot Agent
2 Log Reader Agent
3 Distribution Agent
4 Merge Agent

[@profile_id =] profile_id
Is the ID of the profile to be displayed. profile_id is int, with a default of -1, which returns all the profiles in the MSagent_profiles table.
Result Sets
Column name Data type Description
profile_id int ID of the profile.
profile_name sysname Unique for agent type.
agent_type int 1 = Snapshot Agent
2 = Log Reader Agent
3 = Distribution Agent
4 = Merge Agent
type int 0 = System
1 = Custom
description varchar(3000) Description of the profile.
def_profile bit Specifies whether this profile is the default for this agent type.

Remarks

sp_help_agent_profile is used in all types of replication.

Permissions

Execute permissions default to the public role.

See Also
System Stored Procedures  

  


(c) 1988-98 Microsoft Corporation. All Rights Reserved.