苏泽湛 发表于 2016-11-16 08:14:26

db2系统编目表的实践

  一 根据此命令导出全部需要进行统计的表
--导出runstats命令
SELECT 'runstats on table  "' || trim(owner)||'"."'||tabNAME  || '"with distribution and  detailed indexes all;'
 from syscat.tables  WHERE  tabschema=' ' and owner=''
  二 根据次命令导出需要进行export数据的表
  --导出export命令
SELECT 'EXPORT TO   '||tabNAME  || '.IXF MESSAGES exp.log SELECT * FROM '||tabNAME  ||' ;'
 from syscat.tables   WHERE  tabschema=' ' and owner=''
页: [1]
查看完整版本: db2系统编目表的实践