AgentProfile.AssignToAgent Method
Assigns the replication agent profile to a specific replication agent job.
네임스페이스: Microsoft.SqlServer.Replication
어셈블리: Microsoft.SqlServer.Rmo (in microsoft.sqlserver.rmo.dll)
구문
‘선언
Public Sub AssignToAgent ( _
distributionDBName As String, _
agentId As Integer _
)
public void AssignToAgent (
string distributionDBName,
int agentId
)
public:
void AssignToAgent (
String^ distributionDBName,
int agentId
)
public void AssignToAgent (
String distributionDBName,
int agentId
)
public function AssignToAgent (
distributionDBName : String,
agentId : int
)
매개 변수
- distributionDBName
A String value that specifies the name of the distribution database used by the replication agent job.
- agentId
예외
예외 유형 | 상태 |
---|---|
ApplicationException | When the profile represented by the object does not exist on the server. |
ArgumentException | When the value for distributionDBName is null, contains null characters, or is longer than 128-Unicode characters. |
주의
A replication agent profile can be assigned to a replication agent job only after it has been created on the database, and it can be assigned only to an agent job for the correct type of replication agent.
Calling AssignToAgent loads profile properties from the server. Call CommitPropertyChanges to commit property changes before calling this method.
The AssignToAgent method can be called only by members of the sysadmin fixed server role at the Distributor.
Calling AssignToAgent is equivalent to executing sp_update_agent_profile(Transact-SQL).
This namespace, class, or member is supported only in the .NET Framework 2.0.
스레드 보안
Any public static (Shared in Microsoft Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
플랫폼
개발 플랫폼
지원되는 플랫폼 목록은 SQL Server 2005 설치를 위한 하드웨어 및 소프트웨어 요구 사항을 참조하십시오.
대상 플랫폼
지원되는 플랫폼 목록은 SQL Server 2005 설치를 위한 하드웨어 및 소프트웨어 요구 사항을 참조하십시오.
참고 항목
참조
AgentProfile Class
AgentProfile Members
Microsoft.SqlServer.Replication Namespace
관련 자료
How to: Work with Replication Agent Profiles (RMO Programming)