Sorry for my bad English
I have problem with record propagation. I'm newbie in DStage, and couldn't solve it on my own, so I'm asking for your help.
I'm working on a flat file that looks like this:
id|number|range_beginning|range_end
1| 123450| 123451|123459
2| 123460| 123461|123469
What i need to do, is divide those records by they range, and make multiple values for "number", like this:
id|number|range_beginning|range_end
1| 123450| 123451|123459
1| 123451| 123451|123459
1| 123452| 123451|123459
...
1|123459| 123451|123459
Which stage I need to use, to make this work?
PS>
I'm using a FTP Enterprise stage to read data from txt file. After that there is an Transformer stage for basic type convertion, and an Oracle Enterprise stage that writes data to the database.
