As you all know Sequence Generator Transformation used to generate
unique keys and the missing values in a sequence. To generate the Primary key
we need to connect the NEXT VAL column of the Sequence Generator to the
required target columns.
If Cycle option is not
enabled then the session will get failed once the sequence reaches the maximum
value.
Hope you all are aware of
the columns like
- Start Value: Default value is zero
- Increment By: Default value is 1
- Current Value: First value that is used in the sequence
- End Value: This is the maximum value that transformation generates
Also
there is column Cache value in Sequence
Generator Transformation
Cache Value
Use this when while using
Reusable Sequence Generator, this value will decide how many sequence value
Informatica must cache at one time. This comes handy when we use the same
sequence in multiple sessions
Q1-Source:
ReplyDeleteCol1-10,20,10,30,20
Col2-2,4,5,2,1
Target Should be like this
Target:
Col1-10,40,40,150,40
Plz Tell Me the Buissness Logic
Hint-10,20*2,10*4,30*5,20*2
Q2-How many maximum dimension tables we can connect to one fact table?