Freigeben über


HasRowVersionColumn Property

Dieses Feature wird in einer zukünftigen Version von Microsoft SQL Server entfernt. Verwenden Sie dieses Feature beim Entwickeln neuer Anwendungen nicht, und planen Sie das Ändern von Anwendungen, in denen es zurzeit verwendet wird.

The HasRowVersionColumn property specifies whether a table has a column named msrepl_tran_version.

Syntax

object
.HasRowVersionColumn

Parts

  • object
    An expression that evaluates to an object in the Applies To list
  • value
    TRUE or FALSE

Data Type

Boolean

Modifiable

Read-only

Prototype (C/C++)

HRESULT GetHasRowVersionColumn(LPBOOL pRetVal);

Hinweise

Microsoft SQL Server requires that all articles in a transactional or snapshot publication that allow updatable subscriptions contain a unique identifier column named msrepl_tran_version, which is used to track changes to the replicated data. The HasRowVersionColumn property returns TRUE if a table already has a column named msrepl_tran_version. If HasRowVersionColumn returns FALSE, the msrepl_tran_version column is added to tables in transactional or snapshot publications that allow updatable subscriptions.

ms133478.note(de-de,SQL.90).gifHinweis:
If an application calls HasRowVersionColumn on an instance of SQL Server version 7.0, FALSE is returned.

Applies To:

ReplicationTable2 Object