Forum Discussion
Hi Philliperamos,
I created a pipeline that will keep the last 3 columns as it is and the rest of the row values will be concatenated under the value field.
Here I am attaching pipeline and sample data file.
Hope this is what you are required.
Dynamic_csv_column_change_2019_11_14.slp (10.3 KB)
sample.txt (231 Bytes)
@nsingam it works great! Thanks!
So my file doesn’t have header info, so now I’m just trying to set a header name to fieldX , fieldY and fieldZ
Thanks again!
- pranil2k26 years agoContributor
finally i achived it using Mapper, Aggregator.
- pranil2k26 years agoContributor
Hi,
Please someone advice on this one.
Thanks
- Supratim6 years agoContributor III
Go to Oracle Marge view and add output view. After that use aggregate snap for count.
- SpiroTaleski6 years agoValued Contributor
Hi @pranil2k2
You can try by opening the error view for Oracle Merge Snap(meaning that all the error rows will be routed in that view). In that way you will isolate the pipeline from failing.
As an output of the Oracle Merge Snap you will get all successful records.
To count the records from output you can use :
- snap.out.totalCount - you will get total number of documents that have passed through.
- Use Aggregate Snap(function Count) on some unique column(field).
Regards,
Spiro
- pranil2k26 years agoContributor
Hi Spiro,
Thanks for the reply.