exam questions

Exam 1z0-078 All Questions

View all questions & answers for the 1z0-078 exam

Exam 1z0-078 topic 1 question 58 discussion

Actual exam question from Oracle's 1z0-078
Question #: 58
Topic #: 1
[All 1z0-078 Questions]

Examine this query and output:

Performance analysis revealed severe SQ enqueue contention on the SEQ1 sequence.
The SEQ1 sequence is incremented from all instances equally and is frequently used.
Which two statements should you execute to reduce SQ enqueue contention? (Choose two.)

  • A. exec sys.dbms_shared_pool.keep(‘SEQ1’,’Q’)
  • B. alter sequence seq1 cache 10000;
  • C. alter sequence seq1 noorder;
  • D. alter sequence seq1 keep;
  • E. alter sequence seq1 order;
Show Suggested Answer Hide Answer
Suggested Answer: BC 🗳️

Comments

Chosen Answer:
This is a voting comment (?). It is better to Upvote an existing comment if you don't have anything to add.
Switch to a voting comment New
shaw2000
2 days, 21 hours ago
Selected Answer: BC
To reduce SQ enqueue contention on a frequently used RAC sequence, you should: ✔ Increase the CACHE size Larger cache reduces how often instances must acquire the SQ enqueue. ✔ Disable ORDER ORDER forces global ordering across RAC nodes, which dramatically increases SQ enqueue contention. NOORDER allows each instance to allocate cached ranges independently.
upvoted 1 times
...
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.

SaveCancel
Loading ...