Need to impliment

Post questions here relative to DataStage Enterprise/PX Edition for such areas as Parallel job design, Parallel datasets, BuildOps, Wrappers, etc.

Moderators: chulett, rschirm, roy

Post Reply
nareshketepalli
Participant
Posts: 36
Joined: Mon Jun 28, 2010 11:24 pm
Location: seepz

Need to impliment

Post by nareshketepalli »

Table A
10
20
30


Table B
40
50
60

Like this and i want out put like

Table1
10
20
30

Table 2
40
50
60

Table 3
10
20
30
40
50
60

In a single job.How is it possible ,any suggestions


Ragards,
Naresh
NARESHKUMAR
ray.wurlod
Participant
Posts: 54607
Joined: Wed Oct 23, 2002 10:52 pm
Location: Sydney, Australia
Contact:

Post by ray.wurlod »

Funnel stage.
IBM Software Services Group
Any contribution to this forum is my own opinion and does not necessarily reflect any position that IBM may hold.
nareshketepalli
Participant
Posts: 36
Joined: Mon Jun 28, 2010 11:24 pm
Location: seepz

Post by nareshketepalli »

ray.wurlod wrote:Funnel stage. ...
Last edited by nareshketepalli on Fri Mar 11, 2011 4:04 am, edited 1 time in total.
NARESHKUMAR
Ravi.K
Participant
Posts: 209
Joined: Sat Nov 20, 2010 11:33 pm
Location: Bangalore

Post by Ravi.K »

Please refer documentation and find same in the below.

The Funnel stage is a processing stage. It 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.
Cheers
Ravi K
ray.wurlod
Participant
Posts: 54607
Joined: Wed Oct 23, 2002 10:52 pm
Location: Sydney, Australia
Contact:

Post by ray.wurlod »

Funnel DOES support two input links. I use it frequently. Please justify your assertion to the contrary.
IBM Software Services Group
Any contribution to this forum is my own opinion and does not necessarily reflect any position that IBM may hold.
smart2786
Premium Member
Premium Member
Posts: 14
Joined: Sun Mar 11, 2007 10:16 pm
Location: India

Re: Need to impliment

Post by smart2786 »

Please follow below design

TableA--->copy--2links---> 1.Table A output
2.Table A output goes to Funnel

TableB--->copy--2links---> 1.Table B output
2.Table B output goes to Funnel

Now the output from funnel contains both table A,Table B Data

This is achievable in single job

Note:Funnel accepts many inputs links with similar metedata but gives only one output.
nareshketepalli
Participant
Posts: 36
Joined: Mon Jun 28, 2010 11:24 pm
Location: seepz

Re: Need to impliment

Post by nareshketepalli »

smart2786 wrote:Please follow below design

TableA--->copy--2links---> 1.Table A output
2.Table A output goes to Funnel

TableB--->copy--2links---> 1.Table B output
2.Table B output goes to Funnel

Now the output from funnel contains both table A,Table B Data

This is achievable in single job

Note:Funnel accepts many inputs links with similar metedata but gives only one output.


Thanks alot
NARESHKUMAR
Post Reply