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
System.Object
CreateErrorTableTask
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.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 |
---|
System.String | tableName | |
Properties
DropAndCreateTable#
Declaration
public bool DropAndCreateTable { get; set; }
Property Value
Type | Description |
---|
System.Boolean | |
TableName#
Declaration
public string TableName { get; set; }
Property Value
Type | Description |
---|
System.String | |
TaskName#
Declaration
public override string TaskName { get; set; }
Property Value
Type | Description |
---|
System.String | |
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 |
---|
System.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 |
---|
System.String | tableName | |
Execute()#
Declaration
Implements#