Subquery Optimization
You are looking at an older version of the documentation. The latest version is found here.
EXISTS
subqueries are typically rewritten toSELECT 1 FROM ...
to prevent unnecessary evaluation ofSELECT
expressions;- Quantified compare
SOME
subqueries are always turned into an equivalentIN
predicate or comparison against an aggregate value. e.g.col > SOME (SELECT col1 FROM table)
would becomecol > (SELECT min(col1) FROM table)
; - Uncorrelated
EXIST
queries and scalar subquery that are not pushed to the source can be pre-evaluated before source command formation; - Correlated subqueries used in
DELETE
orUPDATE
queries that are not pushed as part of the correspondingDELETE
/UPDATE
will cause the Data Virtuality Server to perform row-by-row compensating processing. This will only happen if the affected table has a primary key. If it does not, an exception will be thrown; WHERE
orHAVING
clauseIN
, quantified comparison, scalar subquery compare, andEXIST
predicates can take theMJ
(merge join),DJ
(dependent join), orNO_UNNEST
(no unnest) hints appearing just before the subquery. If possible, theMJ
hint directs the optimizer to use a traditional, semijoin, or anti-semi-join merge join. TheDJ
is the same as theMJ
hint, but additionally directs the optimizer to use the subquery as the independent side of a dependent join if possible. TheNO_UNNEST
hint, which supersedes the other hints, will direct the optimizer to leave the subquery in place.
Here are examples for each of them:
1. Merge join hint:SQLSELECT col1 FROM schm.tbl WHERE col2 IN /*+ MJ*/ (SELECT col1 FROM schm2.tbl2)
2. Dependent join hint:
SQLSELECT col1 FROM schm.tbl WHERE col2 IN /*+ DJ */ (SELECT col1 FROM schm2.tbl2)
2.
NO_UNNEST
hint:SQLSELECT col1 FROM schm.tbl WHERE col2 IN /*+ NO_UNNEST */ (SELECT col1 FROM schm2.tbl2)
Be sure that there is no whitespace between
/*
and+
> when using e.g./*+ MJ */.
Configure your SQL client not to remove multi-line comments.
Here is how to do this in Squirrel: Session -> Session Properties -> SQL -> Remove multi-line comment (/* ... */
).- The system property
org.teiid.subqueryUnnestDefault
controls whether the optimizer will, by default, unnest subqueries. The default is FALSE. IfTRUE
, most non-negatedWHERE
orHAVING
clause non-negatedEXISTS
orIN
subquery predicates can be converted to a traditional merge join or as antijoin or semijoin variants; WHERE
clauseEXIST
andIN
predicates that can be rewritten to a traditional join with the semantics of the semijoin can be preserved if the system propertyorg.teiid.subqueryUnnestDefault
is set toTRUE
or the subquery has anMJ
hint;- If the costing is favourable, the planner will always convert to antijoin or semijoin variants. Use a hint to override this behaviour if needed;
EXIST
and scalar subqueries that are not pushed down, and not converted to merge joins, are implicitly limited to 1 and 2 result rows, respectively;- Conversion of subquery predicates to nested loop joins is not yet available.