Share via


TransArticle Object

Microsoft SQL Server의 이후 버전에서는 이 기능이 제거됩니다. 새 개발 작업에서는 이 기능을 사용하지 않도록 하고, 현재 이 기능을 사용하는 응용 프로그램은 수정하십시오.

The TransArticle object represents a table or a stored procedure published using a transactional or a snapshot publication.

현재 개체를 보여 주는 SQL-DMO 개체 모델

주의

With the TransArticle object, you can:

  • Add a table or stored procedure article to a transactional publication.

  • Change the properties of an existing table or stored procedure article of a transactional publication.

  • Add a table or stored procedure article to a snapshot publication.

  • Change the properties of an existing table or stored procedure article of a snapshot publication.

[!참고]

The TransArticle object is compatible with instances of SQL Server versions 7.0 and later. However, the TransArticle2 object extends the functionality of the TransArticle object for use with features that were introduced in SQL Server 2000.

To add a table article to a transactional publication

  1. Create a new TransArticle object.

  2. Set the Name property to the name of the new article.

  3. Set the SourceObjectName property to the name of a table.

  4. Set the SourceObjectOwner property to the owner of the table.

  5. Add the TransArticle object to the TransArticles collection of a connected TransPublication object containing a transactional publication.

To add a stored procedure article to a transactional publication

  1. Create a new TransArticle object.

  2. Set the Name property to the name of the new article.

  3. Set the SourceObjectName property to the name of a stored procedure.

  4. Set the SourceObjectOwner property to the owner of the stored procedure.

  5. Set the ArticleType property to SQLDMORep_ProcExecution or SQLDMORep_SerializableProcExecution.

  6. Set the CreationScriptOptions property to SQLDMOCreationScript_PrimaryObject.

  7. Add the TransArticle object to the TransArticles collection of a connected TransPublication object containing a transactional publication.

To alter an existing table article of an existing transactional publication

  1. Get a TransArticle object containing a table article from the TransArticles collection of a connected TransPublication object.

  2. Use the BeginAlter method to mark the beginning of the changes.

  3. Set the TransArticle object properties to reflect the changes to the table article.

  4. Use the DoAlter method to submit the changes to Microsoft SQL Server.

To alter an existing stored procedure article of an existing transactional publication

  1. Get a TransArticle object containing a stored procedure article from the TransArticles collection of a connected TransPublication object.

  2. Use the BeginAlter method to mark the beginning of the changes.

  3. Set the TransArticle object properties to reflect the changes to the stored procedure article.

  4. Use the DoAlter method to submit the changes to SQL Server.

To add a table article to a snapshot publication

  1. Create a new TransArticle object.

  2. Set the Name property to the name of the new article.

  3. Set the SourceObjectName property to the name of a table.

  4. Set the SourceObjectOwner property to the owner of the table.

  5. Add the TransArticle object to the TransArticles collection of a connected TransPublication object containing a snapshot publication.

To add a stored procedure article to a snapshot publication

  1. Create a new TransArticle object.

  2. Set the Name property to the name of the new article.

  3. Set the SourceObjectName property to the name of a stored procedure.

  4. Set the SourceObjectOwner property to the owner of the stored procedure.

  5. Set the ArticleType property to SQLDMORep_ProcExecution or SQLDMORep_SerializableProcExecution.

  6. Add the TransArticle object to the TransArticles collection of a connected TransPublication object containing a snapshot publication.

To alter an existing table article of an existing snapshot publication

  1. Get a TransArticle object containing a table article from the TransArticles collection of a connected TransPublication object containing a snapshot publication.

  2. Use the BeginAlter method to mark the beginning of the changes.

  3. Set the TransArticle object properties to reflect the changes to the table article.

  4. Use the DoAlter method to submit the changes to SQL Server.

To alter an existing stored procedure article of an existing snapshot publication

  1. Get a TransArticle object containing a stored procedure article from the TransArticles collection of a connected TransPublication object containing a snapshot publication.

  2. Use the BeginAlter method to mark the beginning of the changes.

  3. Set the TransArticle object properties to reflect the changes to the stored procedure article.

  4. Use the DoAlter method to submit the changes to SQL Server.

참고 항목

참조