appendnode properties
The Append node concatenates sets of records. It's useful for combining datasets with similar structures but different data.
Example
node = stream.create("append", "My node")
node.setPropertyValue("match_by", "Name")
node.setPropertyValue("match_case", True)
node.setPropertyValue("include_fields_from", "All")
node.setPropertyValue("create_tag_field", True)
node.setPropertyValue("tag_field_name", "Append_Flag")
appendnode properties |
Data type | Property description |
---|---|---|
match_by
|
Position
Name
|
You can append datasets based on the position of fields in the main data source or the name of fields in the input datasets. |
match_case
|
flag | Enables case sensitivity when matching field names. |
include_fields_from
|
Main
All
|
|
create_tag_field
|
flag | |
tag_field_name
|
string |