Pentaho

 View Only

 Return ResultSet from SQL Server Stored Procedure With Multiple Parameters

  • Pentaho
  • Kettle
  • Pentaho
  • Pentaho Data Integration PDI
Rob Burgess's profile image
Rob Burgess posted 05-17-2018 18:56

How do you return a ResultSet from a SQL Server stored procedure with multiple parameters?

I understand you can use the Table Input step but I am unsure of the syntax to execute the stored procedure with more than 1 parameter.


#Kettle
#Pentaho
#PentahoDataIntegrationPDI
Lucas Goncalez's profile image
Lucas Goncalez

Hi Rob!

In my case, i create a temp table in my stored procedure.

So i run SP in the normal way and after i make a select in the temp table.

pastedimage_0

I believe that to use parameters would be in the conventional way:

pastedimage_1

I hope it helps.

Rob Burgess's profile image
Rob Burgess

Thanks Lucas.

I will try this.