Reputation: 3
how to use procedure call in Apache Nifi ExecuteSQL processor (with both in and out parameter) specially for talking out parameter.
Upvotes: 0
Views: 6774
Reputation: 12083
Not with ExecuteSQL, but with ExecuteProcess you could run a command-line utility like sqlplus, here's an example of someone who got that working:
Also the post hints at possibly using ExecuteScript to achieve this, I have a blog post that shows the basic setup, although you'd be looking to use a CallableStatement at that point: http://funnifi.blogspot.com/2016/04/sql-in-nifi-with-executescript.html
Upvotes: 2