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

Thread: Table storage

  1. #1
    Join Date
    Aug 2007
    Posts
    62

    Table storage

    Hi,

    Currently, i have 3 tables - A, B, C under a single tablespace. These 3 tables are most heavily accessed by the users.

    Will having a separate tablespace for each of the tables help to improve IO access?

    Thanks!

  2. #2
    Join Date
    Sep 2002
    Location
    England
    Posts
    7,334
    no, spreading all your IO across devices out will

  3. #3
    Join Date
    Aug 2007
    Posts
    62
    Thanks!

    In this case, the new tablespaces created need to stripped on different disks to improve IO access. Is this correct?

    Are there other ways to improve the situation? Will appreciate if you van provide me with a link or two. Thanks!

  4. #4
    Join Date
    Nov 2002
    Location
    Mooresville, NC
    Posts
    349
    Yes, you can place these tables in different tablespaces and these tablespaces should have separate mount points.
    You may consider the partitioning option.
    You need to gather stats at regular interval.

    You can pull out top queries from statspack/AWR report and try to analyze how you can tune.
    http://www.perf-engg.com
    A performance engineering forum

  5. #5
    Join Date
    Nov 2002
    Location
    Mooresville, NC
    Posts
    349
    Code:
    to move tables seperate tablespace using
    alter table tablename move tablespace newtablespacename
    First understand the question.
    Then try to answer.
    http://www.perf-engg.com
    A performance engineering forum

  6. #6
    Join Date
    Dec 2007
    Posts
    16
    Quote Originally Posted by malay_biswal
    Code:
    to move tables seperate tablespace using
    alter table tablename move tablespace newtablespacename
    First understand the question.
    Then try to answer.
    thank u

  7. #7
    Join Date
    Mar 2007
    Location
    Ft. Lauderdale, FL
    Posts
    3,555
    Quote Originally Posted by gxangel
    In this case, the new tablespaces created need to stripped on different disks to improve IO access. Is this correct?

    Are there other ways to improve the situation? Will appreciate if you van provide me with a link or two. Thanks!
    You don't even have to create new tablespaces.
    Read again what Dave said.
    All you have to do is have your datafiles sitting on different devices; a tablespace is an abstraction, not a real object.
    Pablo (Paul) Berzukov

    Author of Understanding Database Administration available at amazon and other bookstores.

    Disclaimer: Advice is provided to the best of my knowledge but no implicit or explicit warranties are provided. Since the advisor explicitly encourages testing any and all suggestions on a test non-production environment advisor should not held liable or responsible for any actions taken based on the given advice.

  8. #8
    Join Date
    Aug 2007
    Posts
    62
    I got what you mean. Thanks for all the help!

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