Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Snapshot Replication and IDENTITY columns

Status
Not open for further replies.

btturner

Programmer
May 17, 2001
175
US
For Snapshot Replication of source (PUBLISHED) tables containing IDENTITY columns, do I need to proactively do "anything" to ensure the propagation of these columns contents as is?

In this table of 3 rows (ID values = 1,2,3)

CREATE TABLE [dbo].[Application] (
[ID] [int] IDENTITY (1, 1) NOT NULL ,
[Name] [nvarchar] (100) NOT NULL ,
[Status] [nchar] (10) NOT NULL
) ON [PRIMARY]

Will the subscribing table receive the ID values 1,2,3 in the default setup of SNAPSHOT Replication?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top