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
object
CreateErrorTableTask
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
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
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