MS SQL Server Row GUID Column

后端 未结 5 1681
春和景丽
春和景丽 2020-12-24 13:34

I apologize for asking what seems like a tired question, but no forum response or documentation I\'ve read seems to provide an adequate answer.

What is the purpose o

5条回答
  •  醉梦人生
    2020-12-24 13:58

    RowGUID column is used for replication. It allows the replication engine to merge correctly. When replication is enabled this column will be added to tables that do not already have a RowGUID column.

    You will not gain anything by using it unless you are planning to implement replication. It is equivalent to setting newsequentialid() as the default value for a column.

提交回复
热议问题