Quick tip - suppose you need the result set of a MySQL stored procedure in your Pentaho Data
Integration (a.k.a. Kettle) Transformation, what do you
do?
A Call DB Procedure sounds promising, but as it
turns out, you can't use it to retrieve any result sets. Rather,
this type of step is meant have an input stream from another
source:
-
- drive stored procedure execution presumably for some useful
side-effect
- invoke a database stored function and obtain the scalar
result
So, what can we do? The answer is simpler than might be
expected.
Just use an ordinary …