Created 08-10-2017 04:41 PM
Hello All,
How can I pivot record based data from columns to rows.
Here is an example of what I want to achieve:
Input:
A,B,C
M,N,O
Output:
A,B
A,C
M,N
M,O
Thanks!!
Created 08-10-2017 05:18 PM
Hi @M R
I don't believe there is an existing NiFi processor to transpose rows to columns. You would likely have to write your own script to do this, and invoke it via the NiFi processor ExecuteScript.
Created 08-10-2017 05:18 PM
Hi @M R
I don't believe there is an existing NiFi processor to transpose rows to columns. You would likely have to write your own script to do this, and invoke it via the NiFi processor ExecuteScript.
Created 08-10-2017 10:42 PM
Thanks Sonu