01-25-2024 07:45 AM - edited 03-06-2024 11:34 AM
Hello,
I have a pipeline that uses two different stored procedures. The issue I'm having is that I need to incorporate the output of the second stored procedure (ranges) into every object of the first stored procedure output (risks).
The output of the first stored procedure(risks) is:
Output of second stored procedure and mapper - (ranges)
@koryknick- this post has been out there for a while and I was wondering if you might be able to have a look. Your help is always appreciated!
Thank you,
Max
Solved! Go to Solution.
03-06-2024 11:42 AM
@Max - what you're asking for is a Cartesian Product between the first and second outputs - basically every record from one path combined with every record from the other. You can do this using a Join snap configured as follows:
Hope this helps!
03-06-2024 11:42 AM
@Max - what you're asking for is a Cartesian Product between the first and second outputs - basically every record from one path combined with every record from the other. You can do this using a Join snap configured as follows:
Hope this helps!
03-06-2024 12:32 PM - edited 03-06-2024 12:33 PM
@koryknick- Works perfectly, Thank you so much!!