Question
Oracle WITH clause
Hello,
Last week, our team have update the Coldfusion jdbc drivers from 3.3 to 3.5.
Since this update, I can't use Oracle WITH clause with many subqueries.
This example below run with Jdbc drivers 3.3 but not with 3.5
WITH X AS (
SELECT ID
FROM TABLE_1
)
, Y AS (
SELECT ID
FROM TABLE_2
)
SELECT *
FROM X, Y
WHERE X.ID = Y.ID
I try to use Query of queries, but the inner join of huge result sets is very slow.
Anyone have an idea to run a WITH clause without revert to jdbc drivers 3.3 ?
Regards.
Last week, our team have update the Coldfusion jdbc drivers from 3.3 to 3.5.
Since this update, I can't use Oracle WITH clause with many subqueries.
This example below run with Jdbc drivers 3.3 but not with 3.5
WITH X AS (
SELECT ID
FROM TABLE_1
)
, Y AS (
SELECT ID
FROM TABLE_2
)
SELECT *
FROM X, Y
WHERE X.ID = Y.ID
I try to use Query of queries, but the inner join of huge result sets is very slow.
Anyone have an idea to run a WITH clause without revert to jdbc drivers 3.3 ?
Regards.