Timestamp Columns in SQL Server Peer to Peer Replication

replicationsql serversql-server-2012

According to MSDN post https://msdn.microsoft.com/en-us/library/ms151196(v=sql.105).aspx Timestamp columnns are restricted in Peer to Peer replication.
Does this mean that we can't use Timestamp columns in database that we are going to replicate ?

Best Answer

Tested it myself. TimeStamp columns are not allowed. You can't replicate a table if it contains a TimeStamp column.

I got the following message when I tried:

The table cannot be published because it contains a timestamp column. Timestamp columns are not supported in Peer-to-Peer publication.

enter image description here