Below is a query wrapped inside a Tcl variable. When we ran the Query
Extractor, this query had not been picked up. Should Query Extractor
pick up this query?
set sql "
select ...
nvl(e.name, a.name) as name,
...
"
To make it run on postgreSQL, I commented it out and used
set sql "
select ...
coalesce(e.name, a.name) as name,
...
"
After replacing the original query by this, PostgreSQL works fine. But
I guess this will not run on Oracle database. So, what should I do?