Class CreateErrorTableTask
This task will create a table that can store exceptions (and information about the affected records)
that occur during a data flow execution
Inheritance
CreateErrorTableTask
Namespace: ETLBox.Logging
Assembly: ETLBox.dll
Syntax
public sealed class CreateErrorTableTask : ControlFlowTask, ILoggableTask
Constructors
CreateErrorTableTask()
Declaration
public CreateErrorTableTask()
CreateErrorTableTask(IConnectionManager, string)
Declaration
public CreateErrorTableTask(IConnectionManager connectionManager, string tableName)
Parameters
CreateErrorTableTask(string)
Declaration
public CreateErrorTableTask(string tableName)
Parameters
Type | Name | Description |
---|
string | tableName | |
Properties
DropAndCreateTable
Declaration
public bool DropAndCreateTable { get; set; }
Property Value
TableName
Declaration
public string TableName { get; set; }
Property Value
TaskName
A name to identify the task or component. Every component or task comes
with a default name that can be overwritten.
Declaration
public override string TaskName { get; set; }
Property Value
Overrides
Methods
Create(IConnectionManager, string)
Declaration
public static void Create(IConnectionManager connectionManager, string tableName)
Parameters
Create(string)
Declaration
public static void Create(string tableName)
Parameters
Type | Name | Description |
---|
string | tableName | |
DropAndCreate(IConnectionManager, string)
Declaration
public static void DropAndCreate(IConnectionManager connectionManager, string tableName)
Parameters
DropAndCreate(string)
Declaration
public static void DropAndCreate(string tableName)
Parameters
Type | Name | Description |
---|
string | tableName | |
Execute()
Declaration
Implements