Skip to content

Commit

Permalink
코드리뷰 영문적용
Browse files Browse the repository at this point in the history
  • Loading branch information
xmilex-git committed Aug 8, 2024
1 parent e56c955 commit f397238
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions en/sql/tuning.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4295,15 +4295,15 @@ Comparing the results of both queries reveals that the use of subquery cache opt

Subquery cache does not operate in the following scenarios:

* When the correlated subquery contains another correlated subquery.
* When the correlated subquery contains another correlated subquery. (The lowest level correlated subquery is cached, while the correlated subquery that includes another correlated subquery is not cached.)
* When the subquery is not in the SELECT clause.
* When the subquery includes CONNECT BY clause.
* When the subquery includes OID-related features.
* When the subquery includes the **NO_SUBQUERY_CACHE** hint.
* When storing new results exceeds the set subquery cache size (default: 2MB).
* When the subquery contains functions that change results with each execution, such as random() or sys_guid().

The following example shows the execution of a subquery cache being disabled in a scenario where a correlated subquery includes another correlated subquery.
The following example shows the case where subquery caching is applied only to the lowest level correlated subquery, while the upper level correlated subquery does not utilize subquery caching.

::

Expand Down

0 comments on commit f397238

Please sign in to comment.