PreCreationOption Enumeration
SQL Server 2012
Enumerates the commands that are executed prior to subscription initialization when a published table already exists in the subscription database.
Namespace: Microsoft.SqlServer.Replication
Assembly: Microsoft.SqlServer.Rmo (in Microsoft.SqlServer.Rmo.dll)
| Member name | Description | |
|---|---|---|
| None | No action is taken on the existing table. | |
| Drop | A DROP TABLE statement is executed. This value is required to support SQL Server Compact Subscribers. | |
| Delete | A DELETE statement is executed to remove individual rows based on the WHERE clause in the subset filter. | |
| Truncate | A TRUNCATE TABLE statement is executed to remove all rows from the table. |