106
Aggregator Stage : Definition : Aggregator classifies data rows from a single input link into groups and calculates totals or other aggregate functions for each group. The summed totals for each group are output from the stage thro' output link. Group is a set of record with the same value for one or more columns. Example : Transaction records might be grouped by both day of the week and by month. These groupings might show the busiest day of the week varies by season.

77650126 DataStage Stages Working Principle

Embed Size (px)

DESCRIPTION

ABC

Citation preview

Page 1: 77650126 DataStage Stages Working Principle

Aggregator Stage :

Definition : Aggregator classifies data rows from a single input link into groups and calculates totals or other aggregate functions for each group. The summed totals for each group are output from the stage thro' output link.

Group is a set of record with the same value for one or more columns.

Example : Transaction records might be grouped by both day of the week and by month. These groupings might show the busiest day of the week varies by season.

Page 2: 77650126 DataStage Stages Working Principle

Input & View data :

The INPUT page shows you the metadata of the incoming data.

The input data look like this…

Page 3: 77650126 DataStage Stages Working Principle

Properties :

Here, we group by "Gender".

The column to aggregate.

User defined column to collect the aggregated values.

When "Aggregation Type = Calculation" …

Page 4: 77650126 DataStage Stages Working Principle

Output & View data :

The OUTPUT page shows only those columns used to group and aggregate.

As we have grouped by "Gender", the incomes of Males and Females are summed up and shown here.

Page 5: 77650126 DataStage Stages Working Principle

Execution Mode :

Note :

The Aggregator stage can have only one output link.

Page 6: 77650126 DataStage Stages Working Principle

Properties :

Here, we group by "Gender".

The column to be counted.

When "Aggregation Type = Count Rows" …

Page 7: 77650126 DataStage Stages Working Principle

Output & View data :

The OUTPUT page shows only the grouping column and the column to be counted.

As we have grouped by "Gender", the number of records in Males and Females are totaled and shown here.

Page 8: 77650126 DataStage Stages Working Principle

Execution Mode :

Note :

The Aggregator stage can have only one output link.

Page 9: 77650126 DataStage Stages Working Principle

Properties :

Here, we group by "Gender".

The column to preserver the summary of Recalculation.

When "Aggregation Type = Re-calculation" …

Note :

When the "Aggregation Type = Re-calculation" then place an extra aggregator to aggregate a column, first. The second aggregator will re-calculate the previously

calculated column.

Page 10: 77650126 DataStage Stages Working Principle

Output & View data :

The OUTPUT page shows only the grouping column and the column for recalculation.

The column "MaxVal” is recalculated as "SumOfMaxVal"

Page 11: 77650126 DataStage Stages Working Principle

Execution Mode :

Note :

The Aggregator stage can have only one output link.

Page 12: 77650126 DataStage Stages Working Principle

Change Apply Stage :

Definition : Takes the change data set, that contains the changes in the before and after data sets, from the Change Capture stage and applies the encoded change operations to a before data set to compute an after data set.

The Change Apply stage read a record from the change data set and from the before data set, compares their key column values, and acts accordingly.

Page 13: 77650126 DataStage Stages Working Principle

Change Capture Property :

Change Apply Property :

Page 14: 77650126 DataStage Stages Working Principle

Input (Before Changes) :

Input (After Changes) :

Output :

Page 15: 77650126 DataStage Stages Working Principle

Job :

Page 16: 77650126 DataStage Stages Working Principle

Compress Stage :

The Compress stage uses the UNIX compress or GZIP utility to compress a data set. It converts a data set from a sequence of records into a stream of raw binary data.

Naresh
HighLight
Naresh
HighLight
Page 17: 77650126 DataStage Stages Working Principle

Steps :

Set the Stage Properties : "Command = Uncompress"

Load the Metadata in the Output tab…

Naresh
Note
Command-Compress
Page 18: 77650126 DataStage Stages Working Principle

Example :

Limitations :

A compressed data set cannot be processed by many stages until it is expanded, i.e., until its rows are returned to their normal format. Stages that do not perform column based processing or reorder the rows can operate on compressed data sets. For example, you can use the copy stage to create a copy of the compressed data set.

Page 19: 77650126 DataStage Stages Working Principle

Expand Stage :

The Expand stage uses the UNIX compress or GZIP utility to expand the data set. It converts a data set from a stream of raw binary data into sequence of records.

Page 20: 77650126 DataStage Stages Working Principle

Steps :

Set the Stage Properties : "Command = Uncompress"

Load the Metadata in the Output tab…

Page 21: 77650126 DataStage Stages Working Principle

Example Job :

Page 22: 77650126 DataStage Stages Working Principle

Filter Stage :

Definition : The Filter stage transfers, unmodified, the records of the input data set which satisfy the specified requirements and filters out all other records.

Filter stage can have a single input link and a any number of output links and, optionally, a single reject link. You can specify different requirements to route rows down different output links. The filtered out records can be routed to a reject link, if required.

Page 23: 77650126 DataStage Stages Working Principle

Simple Job :

Page 24: 77650126 DataStage Stages Working Principle

Criteria to Filter :

Note : Only if the "Output Rejects=True" the rejected rows are collected separately, otherwise those rows that fails to satisfy the criteria will be ignored.

Page 25: 77650126 DataStage Stages Working Principle

Input :

Output : Reject Rows :

Criteria : Salary>30000

Page 26: 77650126 DataStage Stages Working Principle

Complex Job :

Page 27: 77650126 DataStage Stages Working Principle

Criteria to Filter :

Note : "Output Row Only Once=False" means, every single input row is forced to satisfy each and every criteria given. In other words, Row that satisfies a criteria is forced to undergo another criteria. In such case, every row gets more than a single chance to output.

Page 28: 77650126 DataStage Stages Working Principle

Input Data

Criteria 1 : Salary>30000 Criteria 2 : Number>1

Criteria 3 : Number=3 Reject Rows :

Page 29: 77650126 DataStage Stages Working Principle

Criteria to Filter :

Note : "Output Row Only Once=True" means, every single input row is not forced to undergo each and every criteria given. In other words, Rows that satisfy at least one criteria is not forced to satisfy another criteria. In such case, every row gets a single chance to output.

Page 30: 77650126 DataStage Stages Working Principle

Input Data

Criteria 1 : Salary>30000 Criteria 2 : Number>1

Criteria 3 : Number=3 Reject Rows :

Note : Though there is a row that satisfies this criteria, it is not outputted as it is already been outputted for satisfying the Criteria – 1.

Page 31: 77650126 DataStage Stages Working Principle

Funnel Stage :

Definition : Funnel Stage copies multiple input data sets to a single output data set. This operation is useful for combining separate data sets into a single large data set. The stage can have any number of input links and a single output link.

Page 32: 77650126 DataStage Stages Working Principle

Type – 1 : Continuous Funnel

Note : This type of Funnel combines the records of the input data in no guaranteed order. It takes one record from each input link in turn. If data is not available on an input link, the stage skips to the next link rather than waiting.

Page 33: 77650126 DataStage Stages Working Principle

Output view data :

Input - 1 view data : Input - 2 view data :

Continuous Funnel type …

Page 34: 77650126 DataStage Stages Working Principle

Type – 2 : Sequence

Note : This type of Funnel copies all records from the first input data set to the output data set, then all the records from the second input data set, and so on.

Page 35: 77650126 DataStage Stages Working Principle

Output view data :

Input - 1 view data : Input - 2 view data :

Sequence type …

Page 36: 77650126 DataStage Stages Working Principle

Type – 3 : Sort Funnel

Note : This type of Funnel combines the input records in the order defined by the value(s) of one or more key columns and the order of the output records is determined by these sorting keys.

Page 37: 77650126 DataStage Stages Working Principle

Output view data :

Input - 1 view data : Input - 2 view data :

Sort Funnel type …

Page 38: 77650126 DataStage Stages Working Principle

Job :

Page 39: 77650126 DataStage Stages Working Principle

Join Stage :

Definition : Join Stage performs join operations on two or more data sets input to the stage and then outputs the resulting data set.

The input data sets are notionally identified as the "right" set and the "left" set, and "intermediate" sets. It has any number of input links and a single output link.

Page 40: 77650126 DataStage Stages Working Principle

Join Type = Full Outer

Job :

Page 41: 77650126 DataStage Stages Working Principle

Left Input : Right Input :

Output :

Page 42: 77650126 DataStage Stages Working Principle

Join Type = Inner

Job :

Page 43: 77650126 DataStage Stages Working Principle

Left Input : Right Input :

Output :

Page 44: 77650126 DataStage Stages Working Principle

Join Type = Left Outer

Job :

Page 45: 77650126 DataStage Stages Working Principle

Left Input : Right Input :

Output :

Page 46: 77650126 DataStage Stages Working Principle

Join Type = Right Outer

Job :

Page 47: 77650126 DataStage Stages Working Principle

Left Input : Right Input :

Output :

Page 48: 77650126 DataStage Stages Working Principle

Lookup Stage :

Definition : Lookup Stage used to perform lookup operations on a data set read into memory from any other Parallel job stage that can output data.

It can also perform lookups directly in a DB2 or Oracle database  or in a lookup table contained in a Lookup File Set stage.

Page 49: 77650126 DataStage Stages Working Principle

Mappings :

Page 50: 77650126 DataStage Stages Working Principle

Input :

References :

Output :

Reject :

Page 51: 77650126 DataStage Stages Working Principle

Job :

Page 52: 77650126 DataStage Stages Working Principle

Merge Stage :

Definition : Join Stage combines a sorted master data set with one or more update data sets. The columns from the records in the master and update data sets are merged so that the output record contains all the columns from the master record plus any additional columns from each update record.

A master record and an update record are merged only if both of them have the same values for the merge key column(s) that you specify. Merge key columns are one or more columns that exist in both the master and update records.

The data sets input to the Merge stage must be key partitioned and sorted. This ensures that rows with the same key column values are located in the same partition and will be processed by the same node.

Page 53: 77650126 DataStage Stages Working Principle

Unmatched Masters Mode = Drop

Job :

Page 54: 77650126 DataStage Stages Working Principle

Master :

Updates :

Output :

Reject :

Page 55: 77650126 DataStage Stages Working Principle

Job :

Unmatched Masters Mode = Keep

Page 56: 77650126 DataStage Stages Working Principle

Master :

Updates :

Output :

Reject :

Page 57: 77650126 DataStage Stages Working Principle

Note : If the options "Warn on Reject Updates = True" and "Warn on Unmatched Masters = True" then the log file shows the warnings on Reject Updates and Unmatched Data from Masters.

Page 58: 77650126 DataStage Stages Working Principle

Note : If the options "Warn on Reject Updates = False" and "Warn on Unmatched Masters = False" then the log file do not shows the warnings on Reject Updates and Unmatched Data from Masters.

Page 59: 77650126 DataStage Stages Working Principle

Modify Stage :

Definition : The Modify stage alters the record schema of its input data set. The modified data set is then output. It is a processing stage.

It can have a single input and single output.

Page 60: 77650126 DataStage Stages Working Principle

Job (before handling):

Null Handling:Null Handling:

Page 61: 77650126 DataStage Stages Working Principle

Null Handling…

Step – 1:

"NULL" value has to be handled…

Page 62: 77650126 DataStage Stages Working Principle

Step – 2:

Null Handling

Syntax : Column_Name=Handle_Null('Column_Name',Value)

Input Link Columns Output Link Columns

Null Handling…

Page 63: 77650126 DataStage Stages Working Principle

Step – 3:

"NULL" value has been handled…

Null Handling…

Page 64: 77650126 DataStage Stages Working Principle

Job (after execution):

Null Handling…

Page 65: 77650126 DataStage Stages Working Principle

Job (before execution):

Drop Column(s):Drop Column(s):

Page 66: 77650126 DataStage Stages Working Principle

Step – 1:

The column "MGR" has to be dropped…

Drop Columns …

Page 67: 77650126 DataStage Stages Working Principle

Step – 2:

Dropping Column

Syntax : DROP Column_Name

Input Link Columns Output Link Columns

Drop Columns …

Page 68: 77650126 DataStage Stages Working Principle

Step – 3:

The column "MGR" has

been dropped…

Drop Columns …

Page 69: 77650126 DataStage Stages Working Principle

Job (after execution):

Drop Columns …

Page 70: 77650126 DataStage Stages Working Principle

Job (before execution):

Keep Column(s):Keep Column(s):

Page 71: 77650126 DataStage Stages Working Principle

Step – 1:

The column "EmpNo" has to be kept…

Keep Columns …

Page 72: 77650126 DataStage Stages Working Principle

Step – 2:

Keeping Column

Syntax : KEEP Column_Name

Input Link Columns Output Link Columns

Keep Columns …

Page 73: 77650126 DataStage Stages Working Principle

Step – 3:

The column "EmpNo" is

kept…

Keep Columns …

Page 74: 77650126 DataStage Stages Working Principle

Job (after execution):

Keep Columns …

Page 75: 77650126 DataStage Stages Working Principle

Job (before execution):

Type Conversion:Type Conversion:

Page 76: 77650126 DataStage Stages Working Principle

Step – 1:

The column "HireDate" has to

converted to Date…

Type Conversion …

Page 77: 77650126 DataStage Stages Working Principle

Step – 2:

Type Conversio

n

Syntax : Column_Name=type_conversion('Column_Name')

Input Link Columns Output Link Columns

Type Conversion …

Page 78: 77650126 DataStage Stages Working Principle

Step – 3:

The column "HireDate" has

been converted to Date…

Type Conversion …

Page 79: 77650126 DataStage Stages Working Principle

Job (after execution):

Type Conversion …

Page 80: 77650126 DataStage Stages Working Principle

Job (before execution):

Multiple Specifications:Multiple Specifications:

Page 81: 77650126 DataStage Stages Working Principle

Step – 1:

The column "HireDate"

has to converted to

Date…

The column "MGR" has to

be Null handled…

Multiple Specification …

Page 82: 77650126 DataStage Stages Working Principle

Step – 2:

Null Handling

Type Conversio

n

Input Link Columns Output Link Columns

Multiple Specification …

Page 83: 77650126 DataStage Stages Working Principle

Step – 3:

The column "HireDate" has been

converted to Date…

The column "MGR" has been Null handled…

Multiple Specification …

Page 84: 77650126 DataStage Stages Working Principle

Job (after execution):

Multiple Specification …

Page 85: 77650126 DataStage Stages Working Principle

Pivot Stage converts columns in to rows.

Eg., Mark-1 and Mark-2 are two columns.

Task : Convert all the columns in to one column.

Implication : Can be used to co SCD Type-3 to Type-2.

Using Methodology : In the deviation field of the output column change the input columns in to one column.

Eg., Column Name – "Marks".

Derivation : Mark-1 and Mark-2.

Note : Column "Marks" is derived from the input columns Mark-1 and Mark-2.

Pivot Stage :

Naresh
HighLight
Naresh
HighLight
Page 86: 77650126 DataStage Stages Working Principle

Job (before execution):

Page 87: 77650126 DataStage Stages Working Principle

Source File

Input metadata

Output Metadata:

Note the change in the derivation …

Page 88: 77650126 DataStage Stages Working Principle

Job (after execution) :

Output file:

Page 89: 77650126 DataStage Stages Working Principle

Remove Duplicates Stage:

Definition : The Remove Duplicates stage takes a single sorted data set as input, removes all duplicate records, and writes the results to an output data set.

Removing duplicate records is a common way of cleansing a data set before you perform further processing. Two records are considered duplicates if they are adjacent in the input data set and have identical values for the key column(s).

Page 90: 77650126 DataStage Stages Working Principle

Last duplicate row dropped…

Output view data :Input view data :

Selecting Key & Retrain Row : Sorting Column :

Page 91: 77650126 DataStage Stages Working Principle

First duplicate row dropped…

Output view data :

Selecting Key & Retrain Row :

Input view data :

Page 92: 77650126 DataStage Stages Working Principle

Job (after execution) :

Page 93: 77650126 DataStage Stages Working Principle

Surrogate Key Generator Stage :

Definition : The Surrogate Key stage generates key columns for an existing data set.

User can specify certain characteristics of the key sequence. The stage generates sequentially incrementing unique integers from a given starting point. The existing columns of the data set are passed straight through the stage.

If the stage is operating in parallel, each node will increment the key by the number of partitions being written to.

Page 94: 77650126 DataStage Stages Working Principle

Job (before execution):

Page 95: 77650126 DataStage Stages Working Principle

Input :

Output :

Property :

Page 96: 77650126 DataStage Stages Working Principle

Job (after execution):

Page 97: 77650126 DataStage Stages Working Principle

Switch Stage :

Definition : The switch stage takes a single data set as input and assigns each input row to an output data set based on the value of a selector field.

It can have a single input link, up to 128 output links and a single rejects link. This stage performs an operation similar to a C switch statement. Rows that satisfy none of the cases are output on the rejects link.

Page 98: 77650126 DataStage Stages Working Principle

Property :

Page 99: 77650126 DataStage Stages Working Principle

Input :

Output - 1 :

Reject :

Output - 2 :

Output - 3 :

Page 100: 77650126 DataStage Stages Working Principle

Job (after execution):

Page 101: 77650126 DataStage Stages Working Principle

Property :

Page 102: 77650126 DataStage Stages Working Principle

Input :

Output - 1 :

Output - 2 :

Output - 3 :

Page 103: 77650126 DataStage Stages Working Principle

Job (after execution):

Page 104: 77650126 DataStage Stages Working Principle

Property :

Page 105: 77650126 DataStage Stages Working Principle

Input :

Output - 1 :

Reject :

Output - 2 :

Output - 3 :

Page 106: 77650126 DataStage Stages Working Principle

Job (after execution):