Which two queries’ results cannot be cached?

Which two queries’ results cannot be cached? (Choose two.)

Which two queries’ results cannot be cached? (Choose two.)

A.
queries having the GROUP BY clause

B.
queries having the ORDER BY clause

C.
the query on dictionary and temporary tables

D.
queries having SYSDATE and SYS_TIMESTAMP SQL functions



Leave a Reply 3

Your email address will not be published. Required fields are marked *


Leo Yu

Leo Yu

Help why C)?
D): psudo column could not be tracked so the result of query with pseudo column could not be cached.
C) is correct, but what’s the cause, if the result in SYSTEM OR TEMP table space could be tracked, why the result could not be cached?

jasn

jasn

CD
The result of a SQL query will not be cached if the SQL includes dictionary views, temporary tables, SYS-owned tables, sequences, pseudo columns (such as CURRVAL, NEXTVAL, SYSDATE, LEVEL, ROWNUM and so on), or non-deterministic PL/SQL functions.