Sort Transformation

Sort Transformation can be used to sort incoming data stream. In addition, the Sort Transformation distinct option can be used to remove duplicate values from the input.

Sort Transformation is a blocking transformation meaning that the input records are accumulated until the end of input. Blocking transformations affect the performance of overall dataflow because subsequent steps cannot execute until all the records have been received and processed by the blocking transformation.

Sort Transformation uses storage on the server for temporary data during sorting. The server must have enough capacity to store the entire data set and index.

Video

Usage

To add a Sort transformation, drag the Sort object from the Transformations group in the Flow toolbox and drop it on the dataflow.

../_images/Sort1.png

To configure the properties of a Sort object after it was added to the dataflow, right-click on it and select Properties from the context menu. The following properties are available:

../_images/Sort2.png

Meta Object Builder screen:

Meta Object Builder screen allows you to add or remove fields in the field layout, as well as select their data type. The fields added in Meta Object Builder will show in the Input node inside the object box.

../_images/Sort3.png

Sort Transformation Properties screen:

Return Distinct Values Only – check this option to remove duplicate values from the output.

Note: Only the combination of key fields, which you select in the grid, is checked for duplicate values. If you specify a subset of key fields instead of the entire layout, you may lose non-duplicate records when the combination of key fields returns a duplicate.

Treat Null as the Lowest Value – turn this option on to have a Null value returned first in the Ascending sort order, and conversely, have the Null value returned last in the Descending sort order.

Case Sensitive – turn this option on if you require case sensitive comparison for strings.

Finally, select key fields in the grid and apply Ascending or Descending sort order to each field.

../_images/Sort4.png

General Options screen:

This screen shares the options common to most objects on the dataflow:

Clear Incoming Record Messages

When this option is on, any messages coming in from objects preceding the current object will be cleared. This is useful when you need to capture record messages in the log generated by the current object and filter out any record messages generated earlier in the dataflow.

Do Not Process Records with Errors

When this option is on, records with errors will not be output by the object. When this option is off, records with errors will be output by the object, and a record message will be attached to the record. This record message can then feed into downstream objects on the dataflow, for example a destination file that will capture record messages, or a log that will capture the messages and as well as collect their statistics.

The Comments input allows you to enter comments associated with this object.

Example

Sort by Last Name and First Name

../_images/Sort5.png

In this example, the Full_Name field is being parsed into First Name and Last Name. It is then added to the fields for the Sort Transformation. The LastName and FirstName fields can then be used on the Sort Transformation Properties to sort the oncoming data from the Source.

https://astera.zendesk.com/attachments/token/x4R0oWENyKTxhIlq5ZFhMPC6y/?name=Sort3.png

Generic

An example of a Sort transformation in a dataflow is shown below.