zoukankan      html  css  js  c++  java
  • Reclaimable Storage 可回收表空间

    Reclaimable Storage : Usage, Hints, Tips


    FYI : Why only new tablespaces ?

       • Index keys in existing tablespace point to data rows via their physical (tablespace-relative) addresses. Moving an extent of data to a new physical address, would render it's indexes unoperational


    To avoid this issue, indexes in reclaimable storage tablespace have a changed format

       • Index keys in reclaimable storage tablespaces point to data rows via logical (table-relative) addresses


    • Consider using the ADMIN_MOVE_TABLE() stored procedure to move tables to new reclaimable storage tablespaces while maximizing table availability


    • REDUCE is online, but does consume storage bandwidth. If storage bandwidth consumption is a concern, consider:
            ALTER TABLESPACE <tsname> REDUCE STOP
    then later, at a more convenient time,

           ALTER TABLESPACE <tsname> REDUCE MAX


    <From DB2 Architecture for DBAs>



  • 相关阅读:
    01:oracle sql developer配置
    删除eclipse或者MyEclipse的workspace记录
    c++特殊函数
    java类和对象的基础(笔记)
    java打印日历
    10_9 java笔记
    程序流程
    学习疑惑……
    位运算和逻辑运算
    多种类型的指针
  • 原文地址:https://www.cnblogs.com/jackhub/p/3147182.html
Copyright © 2011-2022 走看看