Enum PreAction
- Namespace
- Wolfgang.Etl.SqlBulkCopy
- Assembly
- Wolfgang.Etl.SqlBulkCopy.dll
Specifies the action to execute before the bulk copy loading operation begins.
public enum PreAction
Fields
CustomAction = 3Invokes the user-supplied PreLoadCustomAction delegate before loading.
DeleteAllRecords = 1Executes
DELETE FROM [Schema].[Table]to remove all records from the destination table before loading.None = 0No pre-load action is executed.
TruncateTable = 2Executes
TRUNCATE TABLE [Schema].[Table]to remove all records and reset identity columns before loading.