I have created a transformation in Pentaho Kettle (5.2 CE), and it is pulling some table data from a data source and dumping into a destination data source. In input table query I am using two named variables (para1 and para2):
select col1, col2,col3 from table_ds1 where col1='${para1}' and col2='${para2}';
But it seems like the named parameters are not being substituted in the query. I am running the transformation like below:
./pan.sh -file='/dir../pull_data.ktr' -param:para1=hello -param:para2=world -Level=Basic > /dir../etl.log
My Question: Is it possible to use named variables within the same transformation? If not, how to pass named variables from outside?