Describe 首頁/2021-05-04 here. = OCP 12C = == Notes == * Question #46Topic {{{ Which three features work together, to allow a SQL statement to have different cursors for the same statement based on different selectivity ranges? (Choose three.) A. Bind Variable Peeking B. SQL Plan Baselines C. Adaptive Cursor Sharing D. Bind variable used in a SQL statement E. Literals in a SQL statement ACD * But Correct answer is ACE ACE is the correct answer. d is wrong When using bind variables there will be only one cursor and one execution plan in the Shared Pool regardless of the value being send to the bind variable. If the bind variable is selecting from a column which is highly skewed then the execution plan may not be optimal. }}}