![]() |
|
|
|
By: Greg Robidoux | Read Comments (8) | Related Tips: More > Replication |
Problem
When setting up replication there are many things to think about and many options you can choose from when setting up your publications and subscriptions. In most cases replication is an after thought and not part of the original database or application design, so there may be some required changes that need to be done when replication is setup. The most important part is that the table has a primary key. All tables should have a primary key when they are created, but sometimes this is not addressed and for replication to work this needs to be setup. In addition, if you are using merge replication you need to have a RowGuid column. Also, if you use identity columns you need to make sure the not for replication parameter is turned on.
Luckily when setting up replication SQL Server will handle the RowGuid and the not for replication settings for your identity columns. but the primary key issue is something you still need to address manually. Although it is great that SQL Server handles the not for replication setting for you, what is the process to turn this off or turn this on for tables?
Solution
The "Not For Replication" setting for identity columns allows replication to pass the ID value from the publisher to the subscriber without the subscriber creating a new ID. Since identity columns will always generate a new number when records are inserted, this setting allows you to ensure the values on both your publisher and subscribers stay in synch.
For SQL Server 2005 this option can be set when designing or creating a new table as shown below in the highlighted section.

For SQL Server 2000 this option can be set when designing or creating a new table as shown below in the highlighted section.

To create a table with the not for replication syntax using a script you would do something as follows:
| CREATE TABLE [dbo].[Table_1]( [ProductID] [int] IDENTITY(1,1) NOT FOR REPLICATION NOT NULL, [ProductName] [varchar](50) COLLATE SQL_Latin1_General_CP1_CI_AS NULL, [ProductDescription] [varchar](100) COLLATE SQL_Latin1_General_CP1_CI_AS NULL, CONSTRAINT [PK_Table_1] PRIMARY KEY CLUSTERED |
As mentioned above replication is not always thought about when tables are first created and therefore this "Not For Replication" option is not usually set to YES. Also, I mentioned that when replication is setup these options are changed for you by the replication setup process. But if you remove replication this setting stays as yes or if you need to keep a development schema (which is not replicated) in synch with your production schema (which is replicated) how can you do this without having to manually change each table via the table designer?
SQL Server 2005
In SQL Server 2005 a new system stored procedure has been created to allow you to turn on or turn off this "Not For Replication" setting. This new stored procedure is sys.sp_identitycolumnforreplication. Following is the code of this new SP. As you can see it makes a call to a some process %%ColumnEx which is a bit cryptic.
SET ANSI_NULLS ON |
By using this new SP along with the sp_msforeachtable which iterates through all tables you can turn this on for all tables or off for all tables as follows:
This script turns it YES for all tables that have an identity column.
|
EXEC sp_msforeachtable @command1 = ' |
This script turns it NO for all tables that have an identity column.
|
EXEC sp_msforeachtable @command1 = ' |
SQL Server 2000
In SQL Server 2000 it is not quite as simple to make this change. There is not a stored procedure like there is for SQL Server 2005. The following code snippet will allow you to change this value across the board for all tables in a database as well, but this is updating the system table syscolumns directly. Most of what you read will tell you not to update the system tables directly.
This script turns it YES for all tables that have an identity column.
| xupdate syscolumns set colstat = colstat | 0x0008 where colstat & 0x0008 = 0 -- ie not already "not for replication" and colstat & 0x0001 <> 0 -- ie identity column |
When trying to run this you may get the following error message. You need to make this change in order to run these queries.
| Server: Msg 259, Level 16, State 2, Line 1 Ad hoc updates to system catalogs are not enabled. The system administrator must reconfigure SQL Server to allow this. |
Next Steps
| Tuesday, November 02, 2010 - 8:50:42 AM - Alias John Brown | Read The Tip |
|
Hello Greg,
You said that the replication process will change the "Not for replication" property of an identity column for you. Are you sure? When I tried to set up replication on SQL Server 2000, it omitted the tables with identity columns with a warning. |
|
| Tuesday, November 02, 2010 - 9:26:31 AM - Greg Robidoux | Read The Tip |
|
For SQL 2005 and SQL 2008 replication will add the "NOT FOR REPLICATION" setting. I am not sure about SQL 2000. Thanks for pointing this out in the article. |
|
| Tuesday, August 21, 2012 - 3:18:38 PM - Ryan | Read The Tip |
|
Hello, If a database has been replicated before and then the replication has been removed, the identity columns will still have "Not For Replication" option set to Yes. Then if the database is replicated again, will there be any problem at subscriber during inserting in the identity columns? I am facing this problem with a database with "Explicit value must be specified for identity column in table tb1 either when IDENTITY_INSERT is set to ON or when a replication user is inserting into a NOT FOR REPLICATION identity column." even though the table at subscriber has the option set to Yes. So in this case (when a database has been replicated before), do I need to chnage this option to No for all identity columns before replicating the database again? Thanks.
|
|
| Wednesday, August 22, 2012 - 9:14:24 AM - Greg Robidoux | Read The Tip |
|
Hi Ryan, if the columns are already set for "not for replication" this should not be an issue if you try to setup replication again for these tables. You don't need to set it to "no" first. |
|
| Wednesday, August 22, 2012 - 2:57:38 PM - Ryan | Read The Tip |
|
Hello Greg, Thanks for your reply. Well it seems the problem was created by some triggers that were updating the table at subscriber. So I disabled the triggers, so its working now. Is it safe to disable the triggers at subscriber, if only the replication agent will update the subscriber database? Its a one way pull transactional replication. Thanks. |
|
| Wednesday, August 22, 2012 - 4:47:27 PM - Greg Robidoux | Read The Tip |
|
Sure you could drop the triggers on the subscriber if you do not want them to fire again. You can also use the NOT FOR REPLICATION option for triggers. Take a look at this: http://msdn.microsoft.com/en-us/library/ms152529(v=sql.105).aspx |
|
| Wednesday, November 14, 2012 - 9:58:14 AM - Rantu | Read The Tip |
|
I can't create this procedure for MS SQL 2005
Msg 102, Level 15, State 1, Line 1 Incorrect syntax near '%'. Msg 102, Level 15, State 1, Procedure sp_identitycolumnforreplication, Line 41 Incorrect syntax near '%'.
Why? Thanks |
|
| Wednesday, April 03, 2013 - 12:37:17 PM - Vlad | Read The Tip |
|
Great article, solve my problem. |
|
|
privacy | disclaimer | copyright | advertise | about authors | contribute | feedback | giveaways | user groups Some names and products listed are the registered trademarks of their respective owners. Edgewood Solutions LLC | MSSharePointTips.com | MSSQLTips.com |