MergeSubscription 클래스
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
게시자에서 등록된 병합 게시에 대한 구독을 나타냅니다.
public ref class MergeSubscription sealed : Microsoft::SqlServer::Replication::Subscription
public sealed class MergeSubscription : Microsoft.SqlServer.Replication.Subscription
type MergeSubscription = class
inherit Subscription
Public NotInheritable Class MergeSubscription
Inherits Subscription
- 상속
예제
// Define the Publisher, publication, and databases.
string publicationName = "AdvWorksSalesOrdersMerge";
string publisherName = publisherInstance;
string subscriberName = subscriberInstance;
string subscriptionDbName = "AdventureWorks2012Replica";
string publicationDbName = "AdventureWorks2012";
string hostname = @"adventure-works\garrett1";
//Create a connection to the Publisher.
ServerConnection conn = new ServerConnection(publisherName);
// Create the objects that we need.
MergePublication publication;
MergeSubscription subscription;
try
{
// Connect to the Publisher.
conn.Connect();
// Ensure that the publication exists and that
// it supports push subscriptions.
publication = new MergePublication();
publication.Name = publicationName;
publication.DatabaseName = publicationDbName;
publication.ConnectionContext = conn;
if (publication.IsExistingObject)
{
if ((publication.Attributes & PublicationAttributes.AllowPush) == 0)
{
publication.Attributes |= PublicationAttributes.AllowPush;
}
// Define the push subscription.
subscription = new MergeSubscription();
subscription.ConnectionContext = conn;
subscription.SubscriberName = subscriberName;
subscription.PublicationName = publicationName;
subscription.DatabaseName = publicationDbName;
subscription.SubscriptionDBName = subscriptionDbName;
subscription.HostName = hostname;
// Set a schedule to synchronize the subscription every 2 hours
// during weekdays from 6am to 10pm.
subscription.AgentSchedule.FrequencyType = ScheduleFrequencyType.Weekly;
subscription.AgentSchedule.FrequencyInterval = Convert.ToInt32(0x003E);
subscription.AgentSchedule.FrequencyRecurrenceFactor = 1;
subscription.AgentSchedule.FrequencySubDay = ScheduleFrequencySubDay.Hour;
subscription.AgentSchedule.FrequencySubDayInterval = 2;
subscription.AgentSchedule.ActiveStartDate = 20051108;
subscription.AgentSchedule.ActiveEndDate = 20071231;
subscription.AgentSchedule.ActiveStartTime = 060000;
subscription.AgentSchedule.ActiveEndTime = 100000;
// Specify the Windows login credentials for the Merge Agent job.
subscription.SynchronizationAgentProcessSecurity.Login = winLogin;
subscription.SynchronizationAgentProcessSecurity.Password = winPassword;
// Create the push subscription.
subscription.Create();
}
else
{
// Do something here if the publication does not exist.
throw new ApplicationException(String.Format(
"The publication '{0}' does not exist on {1}.",
publicationName, publisherName));
}
}
catch (Exception ex)
{
// Implement the appropriate error handling here.
throw new ApplicationException(String.Format(
"The subscription to {0} could not be created.", publicationName), ex);
}
finally
{
conn.Disconnect();
}
' Define the Publisher, publication, and databases.
Dim publicationName As String = "AdvWorksSalesOrdersMerge"
Dim publisherName As String = publisherInstance
Dim subscriberName As String = subscriberInstance
Dim subscriptionDbName As String = "AdventureWorks2012Replica"
Dim publicationDbName As String = "AdventureWorks2012"
Dim hostname As String = "adventure-works\garrett1"
'Create a connection to the Publisher.
Dim conn As ServerConnection = New ServerConnection(publisherName)
' Create the objects that we need.
Dim publication As MergePublication
Dim subscription As MergeSubscription
Try
' Connect to the Publisher.
conn.Connect()
' Ensure that the publication exists and that
' it supports push subscriptions.
publication = New MergePublication()
publication.Name = publicationName
publication.DatabaseName = publicationDbName
publication.ConnectionContext = conn
If publication.IsExistingObject Then
If (publication.Attributes And PublicationAttributes.AllowPush) = 0 Then
publication.Attributes = publication.Attributes _
Or PublicationAttributes.AllowPush
End If
' Define the push subscription.
subscription = New MergeSubscription()
subscription.ConnectionContext = conn
subscription.SubscriberName = subscriberName
subscription.PublicationName = publicationName
subscription.DatabaseName = publicationDbName
subscription.SubscriptionDBName = subscriptionDbName
subscription.HostName = hostname
' Set a schedule to synchronize the subscription every 2 hours
' during weekdays from 6am to 10pm.
subscription.AgentSchedule.FrequencyType = ScheduleFrequencyType.Weekly
subscription.AgentSchedule.FrequencyInterval = Convert.ToInt32("0x003E", 16)
subscription.AgentSchedule.FrequencyRecurrenceFactor = 1
subscription.AgentSchedule.FrequencySubDay = ScheduleFrequencySubDay.Hour
subscription.AgentSchedule.FrequencySubDayInterval = 2
subscription.AgentSchedule.ActiveStartDate = 20051108
subscription.AgentSchedule.ActiveEndDate = 20071231
subscription.AgentSchedule.ActiveStartTime = 60000
subscription.AgentSchedule.ActiveEndTime = 100000
' Specify the Windows login credentials for the Merge Agent job.
subscription.SynchronizationAgentProcessSecurity.Login = winLogin
subscription.SynchronizationAgentProcessSecurity.Password = winPassword
' Create the push subscription.
subscription.Create()
Else
' Do something here if the publication does not exist.
Throw New ApplicationException(String.Format( _
"The publication '{0}' does not exist on {1}.", _
publicationName, publisherName))
End If
Catch ex As Exception
' Implement the appropriate error handling here.
Throw New ApplicationException(String.Format( _
"The subscription to {0} could not be created.", publicationName), ex)
Finally
conn.Disconnect()
End Try
설명
클래스는 MergeSubscription 병합 게시에 대한 끌어오기 및 푸시 구독 모두에 사용됩니다.
원격 배포자를 사용하여 게시자를 구성할 때 를 비롯한 SynchronizationAgentProcessSecurity모든 매개 변수에 제공된 값은 일반 텍스트로 배포자로 전송됩니다. Create 메서드를 호출하기 전에 게시자와 해당 원격 배포자 간 연결을 암호화해야 합니다. 자세한 내용은 sp_reinitmergesubscription(Transact-SQL)를 참조하세요.
스레드 보안
이 유형의 모든 공용 정적(Shared
Microsoft Visual Basic의 경우) 멤버는 다중 스레드 작업에 안전합니다. 인스턴스 구성원은 스레드로부터의 안전성이 보장되지 않습니다.
생성자
MergeSubscription() |
MergeSubscription 클래스의 새 인스턴스를 만듭니다. |
MergeSubscription(String, String, String, String, ServerConnection) |
게시자에 대한 지정된 연결 및 구독을 고유하게 정의하는 속성을 사용하여 MergeSubscription 클래스의 새 인스턴스를 만듭니다. |
속성
AgentJobId |
구독을 동기화하는 데 사용되는 에이전트 작업의 ID를 가져옵니다. (다음에서 상속됨 Subscription) |
AgentOffload |
동기화 에이전트가 에이전트 작업이 만들어진 컴퓨터가 아닌 다른 컴퓨터에서 실행되는지 여부를 가져오거나 설정합니다. 이 속성은 Microsoft SQL Server 2005 이상을 실행하는 배포자에 대해 더 이상 지원되지 않습니다. (다음에서 상속됨 Subscription) |
AgentOffloadServer |
원격 에이전트 활성화를 사용하는 경우 에이전트가 실행되는 원격 컴퓨터의 이름을 가져오거나 설정합니다. (다음에서 상속됨 Subscription) |
AgentSchedule |
구독을 동기화하는 데 사용되는 에이전트 작업의 일정을 가져옵니다. (다음에서 상속됨 Subscription) |
CachePropertyChanges |
복제 속성에 대한 변경 내용을 캐시할지 아니면 즉시 적용할지를 가져오거나 설정합니다. (다음에서 상속됨 ReplicationObject) |
ConnectionContext |
Microsoft SQL Server 인스턴스에 대한 연결을 가져오거나 설정합니다. (다음에서 상속됨 ReplicationObject) |
CreateSyncAgentByDefault |
구독을 동기화하는 데 사용되는 에이전트 작업이 기본적으로 만들어지는지 여부를 가져오거나 설정합니다. (다음에서 상속됨 Subscription) |
DatabaseName |
게시 데이터베이스의 이름을 가져오거나 설정합니다. (다음에서 상속됨 Subscription) |
Description |
병합 구독에 대한 텍스트 설명을 가져오거나 설정합니다. |
EnabledForSynchronizationManager |
Microsoft Windows 동기화 관리자를 사용하여 구독을 동기화할 수 있는지 여부를 지정합니다. (다음에서 상속됨 Subscription) |
HostName |
구독자의 데이터 파티션을 정의하는 매개 변수가 있는 행 필터에서 이 함수를 사용할 때 HOST_NAME 함수에 제공된 값을 가져오거나 설정합니다. |
IsExistingObject |
서버에 개체가 있는지 여부를 가져옵니다. (다음에서 상속됨 ReplicationObject) |
Name |
기존 구독에 할당된 이름을 가져옵니다. (다음에서 상속됨 Subscription) |
Priority |
서버 구독에 할당된 상대 우선 순위 값을 가져오거나 설정합니다. |
PublicationName |
구독에서 구독하는 게시의 이름을 가져오거나 설정합니다. (다음에서 상속됨 Subscription) |
PublisherSecurity |
병합 에이전트에서 게시자에 연결하는 데 사용하는 보안 컨텍스트를 가져옵니다. |
SqlServerName |
이 개체가 연결된 Microsoft SQL Server 인스턴스의 이름을 가져옵니다. (다음에서 상속됨 ReplicationObject) |
Status |
구독 상태를 가져옵니다. (다음에서 상속됨 Subscription) |
SubscriberName |
구독자인 Microsoft SQL Server 인스턴스의 이름을 가져오거나 설정합니다. (다음에서 상속됨 Subscription) |
SubscriberSecurity |
구독자에 연결하는 데 사용되는 보안 컨텍스트를 가져옵니다. (다음에서 상속됨 Subscription) |
SubscriberType |
구독이 클라이언트 구독인지 아니면 서버 구독인지를 가져오거나 설정합니다. |
SubscriptionDBName |
복제된 데이터를 받는 구독자 데이터베이스의 이름을 가져오거나 설정합니다. (다음에서 상속됨 Subscription) |
SubscriptionType |
구독 등록이 밀어넣기 구독인지 아니면 끌어오기 구독인지를 가져옵니다. (다음에서 상속됨 Subscription) |
SynchronizationAgent |
구독을 동기화하는 데 사용할 수 있는 MergeSynchronizationAgent 클래스의 인스턴스를 가져옵니다. |
SynchronizationAgentName |
구독을 동기화하기 위해 만든 에이전트 작업의 이름을 가져오거나 설정합니다. (다음에서 상속됨 Subscription) |
SynchronizationAgentProcessSecurity |
동기화 에이전트 작업이 구독을 동기화하기 위해 실행되는 Microsoft Windows 계정을 지정하는 데 사용되는 보안 컨텍스트를 가져옵니다. (다음에서 상속됨 Subscription) |
SyncType |
구독이 초기화되는 방식을 가져오거나 설정합니다. (다음에서 상속됨 Subscription) |
UseInteractiveResolver |
동기화 프로세스 중에 대화형 해결 프로그램이 사용되는지 여부를 가져오거나 설정합니다. |
UserData |
사용자가 자신의 고유 데이터를 개체에 연결할 수 있도록 하는 개체 속성을 가져오거나 설정합니다. (다음에서 상속됨 ReplicationObject) |
메서드
CheckValidCreation() |
유효한 복제 만들기를 확인합니다. (다음에서 상속됨 ReplicationObject) |
CheckValidDefinition(Boolean) |
구독 정의가 유효한지 여부를 나타냅니다. (다음에서 상속됨 Subscription) |
CommitPropertyChanges() |
캐시된 모든 속성 변경 문을 Microsoft SQL Server 인스턴스로 보냅니다. (다음에서 상속됨 ReplicationObject) |
Create() |
게시자에서 구독 등록을 만듭니다. (다음에서 상속됨 Subscription) |
Decouple() |
참조된 복제 개체를 서버에서 분리합니다. (다음에서 상속됨 ReplicationObject) |
GetChangeCommand(StringBuilder, String, String) |
복제에서 변경 명령을 반환합니다. (다음에서 상속됨 ReplicationObject) |
GetCreateCommand(StringBuilder, Boolean, ScriptOptions) |
복제에서 생성 명령을 반환합니다. (다음에서 상속됨 ReplicationObject) |
GetDropCommand(StringBuilder, Boolean) |
복제에서 삭제 명령을 반환합니다. (다음에서 상속됨 ReplicationObject) |
InternalRefresh(Boolean) |
복제에서 내부 새로 고침을 시작합니다. (다음에서 상속됨 ReplicationObject) |
Load() |
서버에서 기존 개체의 속성을 로드합니다. (다음에서 상속됨 ReplicationObject) |
LoadProperties() |
서버에서 기존 개체의 속성을 로드합니다. (다음에서 상속됨 ReplicationObject) |
Refresh() |
개체의 속성을 다시 로드합니다. (다음에서 상속됨 ReplicationObject) |
Reinitialize(Boolean) |
병합 구독을 다시 초기화하도록 표시합니다. |
Remove() |
밀어넣기 구독의 경우 게시자에서 구독 등록을 삭제하고 구독자에서 복제 개체를 제거합니다. (다음에서 상속됨 Subscription) |
Script(ScriptOptions) |
구독을 만들거나 삭제하는 데 사용할 수 있는 Transact-SQL 스크립트를 반환합니다. (다음에서 상속됨 Subscription) |
StopSynchronizationJob() |
현재 구독을 동기화 중인 병합 에이전트 작업의 실행을 중지하려고 합니다. |
SynchronizeWithJob() |
구독을 동기화하는 에이전트 작업을 시작합니다. |