ReplicationDatabase 클래스

정의

복제 토폴로지에서 출판 또는 구독 데이터베이스를 나타냅니다.

public ref class ReplicationDatabase sealed : Microsoft::SqlServer::Replication::ReplicationObject
public sealed class ReplicationDatabase : Microsoft.SqlServer.Replication.ReplicationObject
type ReplicationDatabase = class
    inherit ReplicationObject
Public NotInheritable Class ReplicationDatabase
Inherits ReplicationObject
상속
ReplicationDatabase

예제

이 예시는 Distributor가 설치될 때 분배 데이터베이스를 생성합니다. 또한 AdventureWorks 데이터베이스에서 병합 및 트랜잭션 출판을 가능하게 합니다.

// Set the server and database names
string distributionDbName = "distribution";
string publisherName = publisherInstance;
string publicationDbName = "AdventureWorks2012";

DistributionDatabase distributionDb;
ReplicationServer distributor;
DistributionPublisher publisher;
ReplicationDatabase publicationDb;

// Create a connection to the server using Windows Authentication.
ServerConnection conn = new ServerConnection(publisherName);

try
{
    // Connect to the server acting as the Distributor 
    // and local Publisher.
    conn.Connect();

    // Define the distribution database at the Distributor,
    // but do not create it now.
    distributionDb = new DistributionDatabase(distributionDbName, conn);
    distributionDb.MaxDistributionRetention = 96;
    distributionDb.HistoryRetention = 120;

    // Set the Distributor properties and install the Distributor.
    // This also creates the specified distribution database.
    distributor = new ReplicationServer(conn);
    distributor.InstallDistributor((string)null, distributionDb);

    // Set the Publisher properties and install the Publisher.
    publisher = new DistributionPublisher(publisherName, conn);
    publisher.DistributionDatabase = distributionDb.Name;
    publisher.WorkingDirectory = @"\\" + publisherName + @"\repldata";
    publisher.PublisherSecurity.WindowsAuthentication = true;
    publisher.Create();

    // Enable AdventureWorks2012 as a publication database.
    publicationDb = new ReplicationDatabase(publicationDbName, conn);

    publicationDb.EnabledTransPublishing = true;
    publicationDb.EnabledMergePublishing = true;
}
catch (Exception ex)
{
    // Implement appropriate error handling here.
    throw new ApplicationException("An error occured when installing distribution and publishing.", ex);
}
finally
{
    conn.Disconnect();
}
' Set the server and database names
Dim distributionDbName As String = "distribution"
Dim publisherName As String = publisherInstance
Dim publicationDbName As String = "AdventureWorks2012"

Dim distributionDb As DistributionDatabase
Dim distributor As ReplicationServer
Dim publisher As DistributionPublisher
Dim publicationDb As ReplicationDatabase

' Create a connection to the server using Windows Authentication.
Dim conn As ServerConnection = New ServerConnection(publisherName)

Try
    ' Connect to the server acting as the Distributor 
    ' and local Publisher.
    conn.Connect()

    ' Define the distribution database at the Distributor,
    ' but do not create it now.
    distributionDb = New DistributionDatabase(distributionDbName, conn)
    distributionDb.MaxDistributionRetention = 96
    distributionDb.HistoryRetention = 120

    ' Set the Distributor properties and install the Distributor.
    ' This also creates the specified distribution database.
    distributor = New ReplicationServer(conn)
    distributor.InstallDistributor((CType(Nothing, String)), distributionDb)

    ' Set the Publisher properties and install the Publisher.
    publisher = New DistributionPublisher(publisherName, conn)
    publisher.DistributionDatabase = distributionDb.Name
    publisher.WorkingDirectory = "\\" + publisherName + "\repldata"
    publisher.PublisherSecurity.WindowsAuthentication = True
    publisher.Create()

    ' Enable AdventureWorks2012 as a publication database.
    publicationDb = New ReplicationDatabase(publicationDbName, conn)

    publicationDb.EnabledTransPublishing = True
    publicationDb.EnabledMergePublishing = True

Catch ex As Exception
    ' Implement appropriate error handling here.
    Throw New ApplicationException("An error occured when installing distribution and publishing.", ex)

Finally
    conn.Disconnect()

End Try

이 예시는 분배 데이터베이스의 속성을 변경합니다.

// Set the Distributor and distribution database names.
string distributionDbName = "distribution";
string distributorName = publisherInstance;

ReplicationServer distributor;
DistributionDatabase distributionDb;

// Create a connection to the Distributor using Windows Authentication.
ServerConnection conn = new ServerConnection(distributorName);

try
{
    // Open the connection. 
    conn.Connect();

    distributor = new ReplicationServer(conn);

    // Load Distributor properties, if it is installed.
    if (distributor.LoadProperties())
    {
        // Password supplied at runtime.
        distributor.ChangeDistributorPassword(password);
        distributor.AgentCheckupInterval = 5;

        // Save changes to the Distributor properties.
        distributor.CommitPropertyChanges();
    }
    else
    {
        throw new ApplicationException(
            String.Format("{0} is not a Distributor.", publisherInstance));
    }

    // Create an object for the distribution database 
    // using the open Distributor connection.
    distributionDb = new DistributionDatabase(distributionDbName, conn);

    // Change distribution database properties.
    if (distributionDb.LoadProperties())
    {
        // Change maximum retention period to 48 hours and history retention 
        // period to 24 hours.
        distributionDb.MaxDistributionRetention = 48;
        distributionDb.HistoryRetention = 24;

        // Save changes to the distribution database properties.
        distributionDb.CommitPropertyChanges();
    }
    else
    {
        // Do something here if the distribution database does not exist.
    }
}
catch (Exception ex)
{
    // Implement the appropriate error handling here. 
    throw new ApplicationException("An error occured when changing Distributor " +
        " or distribution database properties.", ex);
}
finally
{
    conn.Disconnect();
}
' Set the Distributor and distribution database names.
Dim distributionDbName As String = "distribution"
Dim distributorName As String = publisherInstance

Dim distributor As ReplicationServer
Dim distributionDb As DistributionDatabase

' Create a connection to the Distributor using Windows Authentication.
Dim conn As ServerConnection = New ServerConnection(distributorName)

Try
    ' Open the connection. 
    conn.Connect()

    distributor = New ReplicationServer(conn)

    ' Load Distributor properties, if it is installed.
    If distributor.LoadProperties() Then
        ' Password supplied at runtime.
        distributor.ChangeDistributorPassword(password)
        distributor.AgentCheckupInterval = 5

        ' Save changes to the Distributor properties.
        distributor.CommitPropertyChanges()
    Else
        Throw New ApplicationException( _
            String.Format("{0} is not a Distributor.", publisherInstance))
    End If

    ' Create an object for the distribution database 
    ' using the open Distributor connection.
    distributionDb = New DistributionDatabase(distributionDbName, conn)

    ' Change distribution database properties.
    If distributionDb.LoadProperties() Then
        ' Change maximum retention period to 48 hours and history retention 
        ' period to 24 hours.
        distributionDb.MaxDistributionRetention = 48
        distributionDb.HistoryRetention = 24

        ' Save changes to the distribution database properties.
        distributionDb.CommitPropertyChanges()
    Else
        ' Do something here if the distribution database does not exist.
    End If
Catch ex As Exception
    ' Implement the appropriate error handling here. 
    Throw New ApplicationException("An error occured when changing Distributor " + _
        " or distribution database properties.", ex)
Finally
    conn.Disconnect()
End Try

이 예시는 AdventureWorks 데이터베이스에서 병합 및 트랜잭션 출판을 비활성화하고 배포 데이터베이스를 폐기합니다.

// Set the Distributor and publication database names.
// Publisher and Distributor are on the same server instance.
string publisherName = publisherInstance;
string distributorName = publisherInstance;
string distributionDbName = "distribution";
string publicationDbName = "AdventureWorks2012";

// Create connections to the Publisher and Distributor
// using Windows Authentication.
ServerConnection publisherConn = new ServerConnection(publisherName);
ServerConnection distributorConn = new ServerConnection(distributorName);

// Create the objects we need.
ReplicationServer distributor =
    new ReplicationServer(distributorConn);
DistributionPublisher publisher;
DistributionDatabase distributionDb =
    new DistributionDatabase(distributionDbName, distributorConn);
ReplicationDatabase publicationDb;
publicationDb = new ReplicationDatabase(publicationDbName, publisherConn);

try
{
    // Connect to the Publisher and Distributor.
    publisherConn.Connect();
    distributorConn.Connect();

    // Disable all publishing on the AdventureWorks2012 database.
    if (publicationDb.LoadProperties())
    {
        if (publicationDb.EnabledMergePublishing)
        {
            publicationDb.EnabledMergePublishing = false;
        }
        else if (publicationDb.EnabledTransPublishing)
        {
            publicationDb.EnabledTransPublishing = false;
        }
    }
    else
    {
        throw new ApplicationException(
            String.Format("The {0} database does not exist.", publicationDbName));
    }

    // We cannot uninstall the Publisher if there are still Subscribers.
    if (distributor.RegisteredSubscribers.Count == 0)
    {
        // Uninstall the Publisher, if it exists.
        publisher = new DistributionPublisher(publisherName, distributorConn);
        if (publisher.LoadProperties())
        {
            publisher.Remove(false);
        }
        else
        {
            // Do something here if the Publisher does not exist.
            throw new ApplicationException(String.Format(
                "{0} is not a Publisher for {1}.", publisherName, distributorName));
        }

        // Drop the distribution database.
        if (distributionDb.LoadProperties())
        {
            distributionDb.Remove();
        }
        else
        {
            // Do something here if the distribition DB does not exist.
            throw new ApplicationException(String.Format(
                "The distribution database '{0}' does not exist on {1}.",
                distributionDbName, distributorName));
        }

        // Uninstall the Distributor, if it exists.
        if (distributor.LoadProperties())
        {
            // Passing a value of false means that the Publisher 
            // and distribution databases must already be uninstalled,
            // and that no local databases be enabled for publishing.
            distributor.UninstallDistributor(false);
        }
        else
        {
            //Do something here if the distributor does not exist.
            throw new ApplicationException(String.Format(
                "The Distributor '{0}' does not exist.", distributorName));
        }
    }
    else
    {
        throw new ApplicationException("You must first delete all subscriptions.");
    }
}
catch (Exception ex)
{
    // Implement appropriate error handling here.
    throw new ApplicationException("The Publisher and Distributor could not be uninstalled", ex);
}
finally
{
    publisherConn.Disconnect();
    distributorConn.Disconnect();
}
' Set the Distributor and publication database names.
' Publisher and Distributor are on the same server instance.
Dim publisherName As String = publisherInstance
Dim distributorName As String = subscriberInstance
Dim distributionDbName As String = "distribution"
Dim publicationDbName As String = "AdventureWorks2012"

' Create connections to the Publisher and Distributor
' using Windows Authentication.
Dim publisherConn As ServerConnection = New ServerConnection(publisherName)
Dim distributorConn As ServerConnection = New ServerConnection(distributorName)

' Create the objects we need.
Dim distributor As ReplicationServer
distributor = New ReplicationServer(distributorConn)
Dim publisher As DistributionPublisher
Dim distributionDb As DistributionDatabase
distributionDb = New DistributionDatabase(distributionDbName, distributorConn)
Dim publicationDb As ReplicationDatabase
publicationDb = New ReplicationDatabase(publicationDbName, publisherConn)

Try
    ' Connect to the Publisher and Distributor.
    publisherConn.Connect()
    distributorConn.Connect()

    ' Disable all publishing on the AdventureWorks2012 database.
    If publicationDb.LoadProperties() Then
        If publicationDb.EnabledMergePublishing Then
            publicationDb.EnabledMergePublishing = False
        ElseIf publicationDb.EnabledTransPublishing Then
            publicationDb.EnabledTransPublishing = False
        End If
    Else
        Throw New ApplicationException( _
            String.Format("The {0} database does not exist.", publicationDbName))
    End If

    ' We cannot uninstall the Publisher if there are still Subscribers.
    If distributor.RegisteredSubscribers.Count = 0 Then
        ' Uninstall the Publisher, if it exists.
        publisher = New DistributionPublisher(publisherName, distributorConn)
        If publisher.LoadProperties() Then
            publisher.Remove(False)
        Else
            ' Do something here if the Publisher does not exist.
            Throw New ApplicationException(String.Format( _
                "{0} is not a Publisher for {1}.", publisherName, distributorName))
        End If

        ' Drop the distribution database.
        If distributionDb.LoadProperties() Then
            distributionDb.Remove()
        Else
            ' Do something here if the distribition DB does not exist.
            Throw New ApplicationException(String.Format( _
             "The distribution database '{0}' does not exist on {1}.", _
             distributionDbName, distributorName))
        End If

        ' Uninstall the Distributor, if it exists.
        If distributor.LoadProperties() Then
            ' Passing a value of false means that the Publisher 
            ' and distribution databases must already be uninstalled,
            ' and that no local databases be enabled for publishing.
            distributor.UninstallDistributor(False)
        Else
            'Do something here if the distributor does not exist.
            Throw New ApplicationException(String.Format( _
                "The Distributor '{0}' does not exist.", distributorName))
        End If
    Else
        Throw New ApplicationException("You must first delete all subscriptions.")
    End If

Catch ex As Exception
    ' Implement appropriate error handling here.
    Throw New ApplicationException("The Publisher and Distributor could not be uninstalled", ex)

Finally
    publisherConn.Disconnect()
    distributorConn.Disconnect()

End Try

설명

ReplicationDatabase 이는 출판물이나 구독 데이터베이스를 나타내는 데 사용될 수 있습니다. ReplicationDatabase 마스터, 템비드, MSDB, 모델과 같은 시스템 데이터베이스를 표현하는 데 사용할 수 없습니다. 분포 데이터베이스는 로 DistributionDatabase표현됩니다.

스레드 안전성

이 유형의 공용 정적(SharedMicrosoft Visual Basic) 멤버는 멀티스레드 연산에 안전합니다. 모든 인스턴스 멤버는 스레드로부터 안전하게 보호되지 않습니다.

생성자

Name Description
ReplicationDatabase()

ReplicationDatabase 클래스의 새 인스턴스를 초기화합니다.

ReplicationDatabase(String, ServerConnection)

지정된 데이터베이스 이름으로 클래스의 ReplicationDatabase 새 인스턴스를 초기화하여 데이터베이스가 존재하는 서버와의 연결을 제공합니다.

속성

Name Description
AllowMergePublication

병합 복제를 사용하여 데이터베이스를 게시할 수 있는지 여부를 지정합니다.

CachePropertyChanges

복제 속성에 가해진 변경 사항을 캐시할지 즉시 적용할지 또는 설정합니다.

(다음에서 상속됨 ReplicationObject)
CompatibilityLevel

데이터베이스가 호환되는 최소 버전의 SQL Server를 받습니다.

ConnectionContext

Microsoft SQL Server 인스턴스에 연결을 받거나 설정합니다.

(다음에서 상속됨 ReplicationObject)
DBOwner

현재 연결이 사용하는 로그인이 데이터베이스에 대한 소유권이 있는지 확인합니다.

DBReadOnly

데이터베이스가 읽기 전용인지 여부를 확인합니다.

EnabledMergePublishing

데이터베이스가 병합 출판에 활성화되어 있는지 여부에 대해 받거나 설정합니다.

EnabledTransPublishing

데이터베이스가 트랜잭션 또는 스냅샷 게시에 지원되었는지 여부에 대해 받거나 설정합니다.

HasPublications

데이터베이스에 이미 출판물이 있는지 여부를 확인합니다.

HasPullSubscriptions

데이터베이스에 이미 풀 구독이 있는지 여부를 확인합니다.

IsExistingObject

서버에 객체가 존재하는지 여부를 확인합니다.

(다음에서 상속됨 ReplicationObject)
LogReaderAgentExists

출판 데이터베이스를 위해 로그 리더 에이전트가 생성되었는지 여부를 확인합니다.

LogReaderAgentName

기존 로그 리더 에이전트의 이름을 받거나, 게시된 데이터베이스를 위해 새로운 로그 리더 에이전트를 생성할 때 이름을 설정합니다.

LogReaderAgentProcessSecurity

로그 리더 에이전트 작업이 배포판에서 실행되는 Microsoft Windows 계정을 받습니다.

LogReaderAgentPublisherSecurity

로그 리더 에이전트가 Publisher에 연결할 때 사용하는 로그인 정보를 얻습니다.

MergePublications

복제 데이터베이스에 정의된 병합 출판물을 반환합니다.

MergePullSubscriptions

복제 데이터베이스에 정의된 병합 풀 구독을 반환합니다.

Name

복제 데이터베이스의 이름을 받거나 설정합니다.

QueueReaderAgentExists

데이터베이스에 Queue Reader Agent 작업이 존재하는지 여부를 확인합니다.

QueueReaderAgentProcessSecurity

Queue Reader Agent 작업이 Distributor에서 실행되는 Microsoft Windows 계정을 받습니다.

SqlServerName

이 객체가 연결된 Microsoft SQL Server 인스턴스의 이름을 얻습니다.

(다음에서 상속됨 ReplicationObject)
TransPublications

복제 데이터베이스에 정의된 트랜잭션 또는 스냅샷 출판물을 반환합니다.

TransPullSubscriptions

복제 데이터베이스에 정의된 트랜잭션 또는 스냅샷 출판물에 대한 풀 구독을 나타냅니다.

UserData

사용자가 자신의 데이터를 객체에 부착할 수 있도록 객체 속성을 얻거나 설정합니다.

(다음에서 상속됨 ReplicationObject)

메서드

Name Description
CheckValidCreation()

유효한 복제 생성을 확인합니다.

(다음에서 상속됨 ReplicationObject)
CheckValidDefinition(Boolean)

정의가 유효한지 여부를 나타냅니다.

(다음에서 상속됨 ReplicationObject)
CommitPropertyChanges()

모든 캐시된 속성 변경 문장을 Microsoft SQL Server 인스턴스로 전송합니다.

(다음에서 상속됨 ReplicationObject)
CreateLogReaderAgent()

트랜잭션 복제로 공개된 데이터베이스에 대해 로그 리더 에이전트 작업을 생성합니다.

CreateQueueReaderAgent()

배포 데이터베이스에 대해 큐 리더 에이전트 작업을 생성합니다.

Decouple()

참조된 복제 객체를 서버와 분리합니다.

(다음에서 상속됨 ReplicationObject)
EnumConflictTables(String)

복제 데이터베이스를 사용하는 모든 병합 출판물 및 구독에 대한 충돌 정보를 반환합니다.

EnumMergeConflictCounts(String, String, String)

합병 출판물 또는 구독 데이터베이스에 저장된 충돌 정보를 반환합니다.

EnumMergePublications()

복제 데이터베이스를 사용하는 병합 출판물 목록을 반환합니다.

EnumMergePullSubscriptions()

이 복제 데이터베이스를 사용하는 모든 병합 풀 구독을 반환합니다.

EnumPublicationArticles(String)

복제 데이터베이스에 게시된 객체의 복제 정보를 반환합니다.

EnumReplicationSchemaBoundViews()

데이터베이스 내 사용자 정의 스키마 바운드 뷰 객체를 반환합니다.

EnumReplicationStoredProcedures()

데이터베이스 내 모든 사용자 정의 저장 프로시저 객체를 반환합니다.

EnumReplicationTables()

데이터베이스 내 사용자 정의 모든 테이블 객체를 반환합니다.

EnumReplicationUserDefinedAggregates()

데이터베이스 내 사용자 정의 집계 목록을 반환합니다.

EnumReplicationUserDefinedFunctions()

데이터베이스 내 사용자 정의 함수 목록을 반환합니다.

EnumReplicationViews()

데이터베이스 내 사용자 정의 뷰 객체 목록을 반환합니다.

EnumTransConflictCounts(String, String, String)

업데이트되는 거래 출판물 또는 구독 데이터베이스에 저장된 이해 충돌 정보를 반환합니다.

EnumTransPublications()

데이터베이스를 사용하는 트랜잭션 및 스냅샷 출판물 목록을 반환합니다.

EnumTransPullSubscriptions()

데이터베이스를 사용하는 트랜잭션 및 스냅샷 풀 구독 목록을 반환합니다.

GetChangeCommand(StringBuilder, String, String)

복제에서 change 명령을 반환합니다.

(다음에서 상속됨 ReplicationObject)
GetCreateCommand(StringBuilder, Boolean, ScriptOptions)

복제에서 create 명령을 반환합니다.

(다음에서 상속됨 ReplicationObject)
GetDropCommand(StringBuilder, Boolean)

복제에서 drop 명령을 반환합니다.

(다음에서 상속됨 ReplicationObject)
InternalRefresh(Boolean)

복제에서 내부 갱신을 시작합니다.

(다음에서 상속됨 ReplicationObject)
LinkPublicationForUpdateableSubscription(String, String, String, String, PublisherConnectionSecurityContext)

Publisher에 연결할 때 업데이트 가능한 구독의 동기화 트리거에 사용되는 구성 및 보안 정보를 설정합니다.

Load()

서버에서 기존 객체의 속성을 불러옵니다.

(다음에서 상속됨 ReplicationObject)
LoadProperties()

서버에서 기존 객체의 속성을 불러옵니다.

(다음에서 상속됨 ReplicationObject)
ReadSubscriptionFailoverMode(String, String, String)

트랜잭션 또는 스냅샷 출판물의 업데이트 구독에 대해 장애 전환 모드를 반환합니다.

Refresh()

객체의 속성을 다시 불러옵니다.

(다음에서 상속됨 ReplicationObject)
Script(ScriptOptions)

Transact-SQL 스크립트를 반환하여 데이터베이스의 속성 ReplicationDatabase에 따라 복제, 출판, 구독을 활성화하거나 비활성화합니다.

ScriptReplicationDBOption(ScriptOptions)

데이터베이스의 속성을 ReplicationDatabase기반으로 복제 옵션을 활성화하거나 비활성화하는 Transact-SQL 스크립트를 반환합니다.

WriteSubscriptionFailoverMode(String, String, String, FailoverMode)

트랜잭션 또는 스냅샷 출판물에 대한 구독 업데이트 시 장애 전환 모드를 설정합니다.

적용 대상

추가 정보