千家信息网

db2 reorg,runstats

发表于:2024-11-22 作者:千家信息网编辑
千家信息网最后更新 2024年11月22日,db2 -x "select 'reorgchk update statistics on table ' || rtrim(tabschema)||'.'||rtrim(tabname) || ';
千家信息网最后更新 2024年11月22日db2 reorg,runstats

db2 -x "select 'reorgchk update statistics on table ' || rtrim(tabschema)||'.'||rtrim(tabname) || ';' from syscat.tables where type = 'T' " > reorgchk.sql
db2 -x "select 'reorgchk current statistics on table ' || rtrim(tabschema)||'.'||rtrim(tabname) || ';' from syscat.tables where type = 'T' " > reorgchk.sql
db2 -tvf reorgchk.out

db2 -x "select 'runstats on table ' || rtrim(tabschema)||'.'||rtrim(tabname) || ' on all columns with distribution on all columns and indexes all allow write access;'from syscat.tables where type = 'T' " > runstats.sql
db2 -tvf runstats.sql

db2 -x "select 'rebind package ' || trim(PKGSCHEMA) || '.' || trim(PKGNAME) || ';' from syscat.packages" > rebind.sql
db2 -tvf rebind.sql db2 reorgchk current statistics on table all

0