Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
Can we dynamically input query to tDBInput.
I mean to say, I will store list of queries in a file having same output schema.
tFileInputExcel--->row1(main)--->tFlowTolerate--->iterate-->tDBInput
So, query part of tDBInput has to take query from the iteration.
I tried putting " '" + globalMap.get("row1.SqlQuery") + "' "
Am I going wrong, anyway I got error doing this way.
Can I have some alternate solution?
Thanks in advance,
Meghana.
Issue solved.
The solution is
(String)globalMap.get("row2.SqlQuery")
without double quotes.
Thanks,
Meghana.
Try to replace globalMap.get("row1.SqlQuery") by (String)globalMap.get("row1.SqlQuery")
Getting error as Invalid SQL type: sqlKind = UNINITIALIZED
Thanks,
Meghana.
How Can we guess what your SQL query looks like?
I am trying with simple sql query on experiment.
Select 2 from dual------> This is what I have in my excel sheet.
Thanks,
Meghana.
And your schema is contains...
Share as many details as you can if you want someone to help you.
Getting compile time error saying
Syntax error on token "SqlQuery", AssignmentOperator expected after this token
Try with the following query:
select 2 Val from dual