ReplicationServer.InstallDistributor Método (String, DistributionDatabase)
Installs a Distributor on the currently connected instance of Microsoft SQL Server.
Espacio de nombres: Microsoft.SqlServer.Replication
Ensamblado: Microsoft.SqlServer.Rmo (en Microsoft.SqlServer.Rmo.dll)
Sintaxis
'Declaración
Public Sub InstallDistributor ( _
password As String, _
distributionDB As DistributionDatabase _
)
'Uso
Dim instance As ReplicationServer
Dim password As String
Dim distributionDB As DistributionDatabase
instance.InstallDistributor(password, _
distributionDB)
public void InstallDistributor(
string password,
DistributionDatabase distributionDB
)
public:
void InstallDistributor(
String^ password,
DistributionDatabase^ distributionDB
)
member InstallDistributor :
password:string *
distributionDB:DistributionDatabase -> unit
public function InstallDistributor(
password : String,
distributionDB : DistributionDatabase
)
Parámetros
- password
Tipo: System.String
Is the password of the distributor_admin login used to access the Distributor. Security Note When possible, prompt users to enter security credentials at run time. If you must store credentials, use the https://go.microsoft.com/fwlink/?LinkId=34733 cryptographic services provided by the Windows .NET Framework.
- distributionDB
Tipo: Microsoft.SqlServer.Replication.DistributionDatabase
A DistributionDatabase object representing the distribution database used by the Distributor.
Excepciones
Excepción | Condición |
---|---|
ApplicationException | When distribution is already installed on the server. |
ArgumentException | When distributionDB is null, or when password exceeds 128 bytes or contains null characters. |
Comentarios
You must specify a strong password for password when the Distributor has remote Publishers. If password is set to nulles una referencia NULL (Nothing en Visual Basic)., a random password is generated, and you must call ChangeDistributorPassword to reset the password when the first remote Publisher is registered at the Distributor.
This method overload must be called at the Distributor before calling InstallDistributor from a remote server.
The InstallDistributor method can only be called by a member of the sysadmin fixed server role.
The InstallDistributor method is equivalent to the sp_adddistributor (Transact-SQL) stored procedure.
Ejemplos
// 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();
}
Vea también
Referencia
Sobrecarga de InstallDistributor
Espacio de nombres Microsoft.SqlServer.Replication
Otros recursos
Cómo configurar la publicación y distribución (programación con RMO)