Article.DatabaseName Propriedade
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Obtém ou define o nome do banco de dados que contém os dados e os objetos publicados no artigo.
public:
property System::String ^ DatabaseName { System::String ^ get(); void set(System::String ^ value); };
public string DatabaseName { get; set; }
member this.DatabaseName : string with get, set
Public Property DatabaseName As String
Valor da propriedade
O nome do banco de dados de publicação.
Exceções
Quando você tenta definir a DatabaseName propriedade para um artigo existente.
Quando você define a DatabaseName propriedade como um null
valor, para um valor com null
caracteres ou para um valor maior que 128 caracteres Unicode.
Exemplos
// Define the Publisher, publication, and article names.
string publisherName = publisherInstance;
string publicationName = "AdvWorksProductTran";
string publicationDbName = "AdventureWorks2012";
string articleName = "Product";
string schemaOwner = "Production";
TransArticle article;
// Create a connection to the Publisher.
ServerConnection conn = new ServerConnection(publisherName);
// Create a filtered transactional articles in the following steps:
// 1) Create the article with a horizontal filter clause.
// 2) Add columns to or remove columns from the article.
try
{
// Connect to the Publisher.
conn.Connect();
// Define a horizontally filtered, log-based table article.
article = new TransArticle();
article.ConnectionContext = conn;
article.Name = articleName;
article.DatabaseName = publicationDbName;
article.SourceObjectName = articleName;
article.SourceObjectOwner = schemaOwner;
article.PublicationName = publicationName;
article.Type = ArticleOptions.LogBased;
article.FilterClause = "DiscontinuedDate IS NULL";
// Ensure that we create the schema owner at the Subscriber.
article.SchemaOption |= CreationScriptOptions.Schema;
if (!article.IsExistingObject)
{
// Create the article.
article.Create();
}
else
{
throw new ApplicationException(String.Format(
"The article {0} already exists in publication {1}.",
articleName, publicationName));
}
// Create an array of column names to remove from the article.
String[] columns = new String[1];
columns[0] = "DaysToManufacture";
// Remove the column from the article.
article.RemoveReplicatedColumns(columns);
}
catch (Exception ex)
{
// Implement appropriate error handling here.
throw new ApplicationException("The article could not be created.", ex);
}
finally
{
conn.Disconnect();
}
' Define the Publisher, publication, and article names.
Dim publisherName As String = publisherInstance
Dim publicationName As String = "AdvWorksProductTran"
Dim publicationDbName As String = "AdventureWorks2012"
Dim articleName As String = "Product"
Dim schemaOwner As String = "Production"
Dim article As TransArticle
' Create a connection to the Publisher.
Dim conn As ServerConnection = New ServerConnection(publisherName)
' Create a filtered transactional articles in the following steps:
' 1) Create the article with a horizontal filter clause.
' 2) Add columns to or remove columns from the article.
Try
' Connect to the Publisher.
conn.Connect()
' Define a horizontally filtered, log-based table article.
article = New TransArticle()
article.ConnectionContext = conn
article.Name = articleName
article.DatabaseName = publicationDbName
article.SourceObjectName = articleName
article.SourceObjectOwner = schemaOwner
article.PublicationName = publicationName
article.Type = ArticleOptions.LogBased
article.FilterClause = "DiscontinuedDate IS NULL"
' Ensure that we create the schema owner at the Subscriber.
article.SchemaOption = article.SchemaOption Or _
CreationScriptOptions.Schema
If Not article.IsExistingObject Then
' Create the article.
article.Create()
Else
Throw New ApplicationException(String.Format( _
"The article {0} already exists in publication {1}.", _
articleName, publicationName))
End If
' Create an array of column names to remove from the article.
Dim columns() As String = New String(0) {}
columns(0) = "DaysToManufacture"
' Remove the column from the article.
article.RemoveReplicatedColumns(columns)
Catch ex As Exception
' Implement appropriate error handling here.
Throw New ApplicationException("The article could not be created.", ex)
Finally
conn.Disconnect()
End Try
Comentários
A DatabaseName propriedade é uma propriedade de leitura/gravação.
A DatabaseName propriedade deve ser definida antes que o Create método seja chamado para criar o artigo no servidor. Tentar definir essa propriedade para um artigo existente gera uma exceção.
A DatabaseName propriedade deve ser definida como o nome do banco de dados de distribuição para publicações não SQL Server.
A DatabaseName propriedade pode ser recuperada por membros da sysadmin
função de servidor fixa no Publicador e no Assinante (para republicar Assinantes). Ele também pode ser recuperado por membros da db_owner
função de banco de dados fixa no banco de dados de publicação e por usuários que são membros do PAL. Para um MergeArticle objeto , essa propriedade também pode ser recuperada por membros da replmonitor
função de banco de dados fixa no Distribuidor.
A DatabaseName propriedade pode ser definida por membros da sysadmin
função de servidor fixa no Publicador. Ele também pode ser definido por membros da db_owner
função de banco de dados fixa no banco de dados de publicação.
A recuperação DatabaseName é equivalente à execução de sp_helparticle (Transact-SQL) para replicação transacional ou de instantâneo ou execução de sp_helpmergearticle (Transact-SQL) para replicação de mesclagem.
A configuração DatabaseName é equivalente à execução de sp_addarticle (Transact-SQL) para replicação transacional ou de instantâneo ou à execução de sp_addmergearticle (Transact-SQL) para replicação de mesclagem.