Transaction Replication – Altering a Published Table Using SQL 2000


A few weeks ago I published an article
about modifying replicated tables with
SQL 7. If you haven’t read that article, I encourage you to do so before
continuing.

With SQL 2000 you can now add a column to a table (and a publication) with
very little effort. The only thing to remember is that if you want the new
column to be added to the subscribers, you MUST make the change via the ‘Filter
Columns’ tab of the publication properties. SQL still provides no help if you
want to modify an existing column. You can drop a column as long as it
is not part of the primarykey or part of a filter (thanks to Jeff Cook for
pointing this out to me).
  If you don’t want the new column to be part of any existing
publication you can add the column via Enterprise Manager or Query Analyzer.

For the following demo, I created two databases, ReplSource and
ReplDestination, both on the same machine running an instance of SQL2K Developer
Edition. I then imported the Authors table from Pubs into ReplSource and created
a standard transactional publication, using the default options. Here is the
original schema:

To use the Filter Columns tab you can either use ‘Create & Manage
Publications’ found on the Tools|Replication menu, or you can right click the
publication itself either under Databases or under Replication Monitor.

Click on Filter Columns. You’ll see the Add Column to Table button. Clicking
that brings up the following dialog. My one complaint here is that instead of
the nice editing tools you normally get when making changes through Enterprise
Manager, you have to type everything in. If you’re not sure of the syntax, make
a quick copy of the table schema and use Enterprise Manager to make the change,
then script the changes out so you can copy the DDL for the column you’re
adding. If you make a mistake here, you’ll have to apply the same process you
would with SQL 7! 

Continued

Get the Free Newsletter!

Subscribe to Cloud Insider for top news, trends & analysis

Latest Articles