Oracle Performance Optimization-sorting area Adjustment

Source: Internet
Author: User
Tags sorts

Oracle Performance Optimization-sort area adjustment: select name, value from v $ sysstat where name like '% sort %'; sorts (memory) indicates the memory sort volume, sorts (disk) indicates the disk order. Www.2cto.com Failure Rate = sort (disks)/sorts (memory) × 100% the failure rate of the sorting area cannot be less than 5%. Otherwise, you must increase the sort_area_size so that Oracle uses memory sorting as much as possible. Disk IO adjustment is to place data files on multiple different disks. Reduce the number of IO operations to reduce the CPU requirements. The following are some of my actual operations: alter system db_cache_size = 256000000 scope = spfile; alter system open_cursors = 800 scope = spfile; alter system pga_aggregate_target = 128000000 scope = spfile; alter system sort_area_size = 52428800 scope = spfile; alter system sga_max_size = 1024000000 scope = spfile; alter system shared_pool_size = 256000000 scope = spfile; restart Oracle. Note that the memory configured here is 4 GB.
 

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.