Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi
I have created a job like
DBInput---> row1(main)--->tFlowIterate-->DBinput
I wanted to use the result of first query as input parameter to the second query.
I posted the schema of first schema column and the second schema query is like
SELECT * FROM myTable where COUNT(1) = " + ((Integer)globalMap.get("row1.count_group")) + ");
Getting error as: Error near row1
Can anyone help me out what am I missing?
Thanks in advance,
Meghana.
The problem I could see is the datatype of column in table is numeric
And when I use globalMap.get(row1.count_group) is not fetching.
I tried writing select * from myTable where columName = CAST(globalMap.get(row1.count_group) AS numeric);
But, the error is not fixed.
Is that the problem due to numeric type, because varchar(string) column types are working fine
Thanks,
Meghana
How do I write query..
Select * from where myColumn = '" + globalMap.get("something") + "';
Here myColumn is of numeric type.
I hope, If we knew how to write might solve my error.
when I do select '" + globalMap.get("something") + "' from dual, it is showing string '" + globalMap.get("something") + "'
Thanks,
Meghana
Yes still I am working on that.
No progress.
Actually globalMap.get is not reading data
Here it is.
First of all globalMap is not reading data from row1
I have attached query and row1 config