DistributionDatabase.QueueReaderAgentName Property

Gets or sets the name of the Queue Reader Agent job created for this distribution database.

Namespace:  Microsoft.SqlServer.Replication
Assembly:  Microsoft.SqlServer.Rmo (in Microsoft.SqlServer.Rmo.dll)

Syntax

'Declaration
Public Property QueueReaderAgentName As String 
    Get 
    Set
'Usage
Dim instance As DistributionDatabase 
Dim value As String 

value = instance.QueueReaderAgentName

instance.QueueReaderAgentName = value
public string QueueReaderAgentName { get; set; }
public:
property String^ QueueReaderAgentName {
    String^ get ();
    void set (String^ value);
}
member QueueReaderAgentName : string with get, set
function get QueueReaderAgentName () : String 
function set QueueReaderAgentName (value : String)

Property Value

Type: System.String
A string value that specifies the name of the distribution database.

Remarks

The QueueReaderAgentName property cannot be set if the agent job already exists.

The QueueReaderAgentName property should only be set by replication.

The QueueReaderAgentName property can only be retrieved by members of the sysadmin fixed server role at the Distributor or by members of the db_owner fixed database role on the distribution database.

The QueueReaderAgentName property can only be set by members of the sysadmin fixed server role at the Distributor or by members of the db_owner fixed database role on the distribution database.

Retrieving the QueueReaderAgentName property is equivalent to executing sp_helpqreader_agent.

Setting the QueueReaderAgentName property is equivalent to executing sp_addqreader_agent.

See Also

Reference

DistributionDatabase Class

Microsoft.SqlServer.Replication Namespace