Type to start searching...

TransformationCursor

An ETL transformation cursor.

Properties
args : string

Space-separated list of expressions evaluating to transformation arguments.

attributeMapping : string

The attribute mapping for the input attribute names.

Example


'((firstName firstName1) (homeAddress homeAddress1))

attributes : string

The list of attributes that the cursor passes on to the next step in the pipeline.

Simple attributes or fields of complex attributes can be specified.
Example


A list of simple attributes: '(firstName lastName)
A list with a complex attribute: '(firstName (homeAddress city))

caption : string

String identifier for caption display in the UI.

description : string

Description of this TransformationCursor node.

input : string

The input cursor name.

layout : string

This attribute captures the UI layout information for rendering the model in the editor. The values change as users moves the element in the editor.

name : string

The name of the transformation cursor.

orderBy : string

The order-by list for the resulting records.

The order-by list specified here is not verified to be true. Records will be transformed in the same order they are retrieved. If this transformation modifies any of the order-by attributes, then care must be taken to ensure a correct order-by list is specified. It may be left empty to indicate no order.
transformation : string

The name of the transformation to use.

Parents
  • ETLPipeline - Pipelines gather and group cursors and commands together into related units, becoming the defining blocks of your ETL activities.