zoukankan      html  css  js  c++  java
  • [SAP BASIS]brtool 日常工作应用

    1. 扩展表空间
    2. 删除表空间
    3. 表空间重组
    4. 表空间重命名
    5. 表的信息统计更新

    1.扩展表空间

    brspace -c force -function tscreate -tablespace PSAPES750X -class none -data both -size 8000 -compress yes -autoextend no
    brspace -c force -function tsextend -tablespace PSAPES750X -size 8000 -autoextend no

     2.删除表空间

    brspace -c force -f tsdrop -t PSAPP01750
    brspace -u / -c force -f tsdrop -t PSAPEL731

    3.表空间重组

    select TABLE_NAME from dba_tables where TABLESPACE_NAME='PSAPES740';
    brspace -c force -f tbreorg -s psapes740 -t "*" -n psapes750x

    4.表空间重命名

    brspace -u // -c force -f tsalter -a rename -t PSAPCBTAB -n PSAPBTAB -f

    5.表的信息统计更新

    brconnect -u // -c -f stats -force collect,allsel -t USH02
    brconnect -u // -c -f stats -force collect,allsel -t PCL2
    brconnect -u // -c -f stats -force collect,allsel -t PPDIX
    brconnect -u // -c -f stats -t system_stats
    brconnect -u // -c -f stats -t  oradict_stats
    每天进步一点点,多思考,多总结 版权声明:本文为CNblog博主「zaituzhong」的原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接及本声明。
  • 相关阅读:
    windows 7 codepage id name 名称
    最大团
    三分的多种写法及对应的精度 三分套三分原理
    AC自动机
    c++ queue
    lca 欧拉序+rmq(st) 欧拉序+rmq(线段树) 离线dfs 倍增
    node *p,*q
    dfs序和欧拉序
    P3861 8月月赛A
    洛谷P3862 8月月赛B
  • 原文地址:https://www.cnblogs.com/tingxin/p/12172640.html
Copyright © 2011-2022 走看看