DBAsupport.com Forums - Powered by vBulletin
Results 1 to 8 of 8

Thread: Range partitioning

  1. #1
    Join Date
    Oct 2000
    Posts
    139

    Range partitioning

    Hi

    We want to partition some of our tables and indexes. We are going to hash partition our tables since the data distribution is not very uniform, i.e no logical range.

    However we want to GLOBAL partition our indexes because this is a OLTP database. Many of indexes have no logical range neither. My question if I want to use logical ranges I will end up having partitions of different size, for example

    account_no between 1 and 100000 I will have 400000 rows
    account_no between 100001 and 200000 I will have 100000 rows

    and so on

    Does this affect performance?

    I have another way to distribute the data uniformly using range partition however my range will be very "DODGY"

    something like this

    Code:
            NT    MIN(ID)    MAX(ID)   COUNT(*) MAX(ID)-MIN(ID)
    ---------- ---------- ---------- ---------- ---------------
             1          1     175108     984025          175107
             2     175108     310148     984025          135040
             3     310148     445173     984025          135025
             4     445173     586530     984025          141357
             5     586530     773611     984025          187081
             6     773611    1004361     984025          230750
             7    1004362    1220448     984025          216086
             8    1220449    1533474     984025          313025
             9    1533474    1814891     984025          281417
            10    1814891    2081213     984025          266322
            11    2081214    2317213     984025          235999
            12    2317213    2549731     984025          232518
            13    2549731    2771108     984025          221377
            14    2771108    2973580     984024          202472
            15    2973580    3259862     984024          286282
    To distribute the number of rows uniformly across partitions I have to use min(id) and max(id) as ranges... As you can see number of rows is uniform however range not...

    Which way is better?

  2. #2
    Join Date
    Nov 2000
    Location
    greenwich.ct.us
    Posts
    9,092
    Are you planning on doing a lot of partition scans?
    Jeff Hunter

  3. #3
    Join Date
    Oct 2000
    Posts
    139
    Hi

    Most of the time this is OLTP so many index scans (so small partition scan I guess?). However there are also batch jobs

  4. #4
    Join Date
    Aug 2002
    Location
    Colorado Springs
    Posts
    5,253
    So why do you want to use partitioning? ie. What problem are you trying to solve?
    David Aldridge,
    "The Oracle Sponge"

    Senior Manager, Business Intelligence Development
    XM Satellite Radio
    Washington, DC

    Oracle ACE

  5. #5
    Join Date
    Oct 2000
    Posts
    139
    Hi

    We have heavy contention problems, buffer busy waits, cache buffer chains latches. We have rebuilt the tables and indexes and increased the number of freelists and initrans with no improvement!

  6. #6
    Join Date
    Aug 2002
    Location
    Colorado Springs
    Posts
    5,253
    Have you read Metalink note 34405.1 for further information on the cause?
    David Aldridge,
    "The Oracle Sponge"

    Senior Manager, Business Intelligence Development
    XM Satellite Radio
    Washington, DC

    Oracle ACE

  7. #7
    Join Date
    Oct 2000
    Posts
    139
    Hi

    I had a look that note a few weeks back when we were trying to fix these contentions. I followed what note suggested, isolating the objects and increased freelists, increased pctfree, increased initrans but with not much improvement. Basically we have problems with 3 tables which are accesed by 800 users concurrently

  8. #8
    Join Date
    Aug 2002
    Location
    Colorado Springs
    Posts
    5,253
    did you isolate the cause of the waits, through the methodology suggested by the note? What was the predominant reason code? What is your current value of freelists?
    David Aldridge,
    "The Oracle Sponge"

    Senior Manager, Business Intelligence Development
    XM Satellite Radio
    Washington, DC

    Oracle ACE

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  


Click Here to Expand Forum to Full Width