IEtlTaskExecutionEvents.OnStartBlock

Syntax

OnStartBlock(Task: IEtlTask; Object: IEtlObject);

Parameters

Task. ETL task.

Object. ETL task object.

Description

The OnStartBlock method implements the event that occurs on ETL task block start.

Comments

ETL task block is a set of two objects and a link between them in the ETL task. The event occurs for the block's first object, which will be available in the Object parameter. After executing the object according to its purpose, records are redirected to the second object, with which the first object is linked into one block.

Example

The method use is given in the example for IEtlTaskExecutionEvents.OnEndBlock.

See also:

IEtlTaskExecutionEvents