I am new to informatica and I was given an assignment to design the mapping in order to achieve this. Your help is really appreciated. We are using informatica 7.11
We have a source table where the data looks like: (all blanks are nulls)
These are the conditions/constraints:
The Column 1 is the KEY for a target table.
The column 4 can be null.
There should not be two values in column 2 (X, E) for a unique column-1 (for 1). (This is a business condition). Same case with other columns.
No joins/lookups should be used.
Performance is more IMPORTANT as the table is very large in size.
Source Table:
Column 1 Column 2 Column 3 Column 4
1 X
1 X
1 X
2 Y
2 Y
2 Y
1 E
3 Z
3 Z
3
Target Table:
This is the target table should be achieved.
2 Y Y Y
3 Z Z
This is the error file should look like:
ERROR TABLE/FILE
1 X X X
1 E X X
We have a source table where the data looks like: (all blanks are nulls)
These are the conditions/constraints:
The Column 1 is the KEY for a target table.
The column 4 can be null.
There should not be two values in column 2 (X, E) for a unique column-1 (for 1). (This is a business condition). Same case with other columns.
No joins/lookups should be used.
Performance is more IMPORTANT as the table is very large in size.
Source Table:
Column 1 Column 2 Column 3 Column 4
1 X
1 X
1 X
2 Y
2 Y
2 Y
1 E
3 Z
3 Z
3
Target Table:
This is the target table should be achieved.
2 Y Y Y
3 Z Z
This is the error file should look like:
ERROR TABLE/FILE
1 X X X
1 E X X