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

Thread: Table partioning

  1. #1
    Join Date
    Dec 2000
    Location
    Virginia, USA
    Posts
    455
    Does Table partioning really improves the performance of DataBase?

    Thanks in Advance

  2. #2
    Join Date
    Nov 2000
    Location
    greenwich.ct.us
    Posts
    9,092
    Yes
    Jeff Hunter

  3. #3
    Join Date
    Nov 2000
    Location
    greenwich.ct.us
    Posts
    9,092
    No
    Jeff Hunter

  4. #4
    Join Date
    Nov 2000
    Location
    greenwich.ct.us
    Posts
    9,092
    Partitioning is not a silver bullet for performance. It really depends on what types of queries are used and what type of partitioning you employ.

    If you are doing a lot of Full Table Scans on large subsets of data, range partitioning may improve your performance.

    If you are doing a lot of FTS for all the data, hash partitioned tables may help performance if they are distributed properly on multiple devices.

    If you access your table via index every time, no you will not see a significant increase in performance.
    Jeff Hunter

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