http://topic.csdn.net/u/20091127/19/a8a805b6-7b49-4371-919e-6e1668a9fff7.html
呵呵,找到了,
select * from sysstat.TABLES (view)
或者
SELECT * FROM SYSCAT.TABLES WHERE TABSCHEMA=’TEST’ 列出表中信息,CARD为表中数据总条数
值在CARD列,
帖子在http://www.wamam.cn/2008/08/190.html
—————————————————————————–
schema 说明;
SYSIBM: 所有的系统表都在这个schema里面
SYSCAT: 一些视图,方便管理员察看数据字典
SYSSTAT: 统计信息的视图
有用的SQL查询语句(我都测试过,在我的9.5版本上面好使)
select * from SYSIBM.TABLES 显示表
select * from sysibm.columns 显示列
list tables 显示当前用户所有表
list tables for system 列出所有的系统表
list tables for user 列出所有的用户表
list tables for schema TEST 列出schema为TEST的所有表
list tables for all 列出所有的表,(用户表和系统表)
SELECT * FROM SYSCAT.TABLES WHERE TABSCHEMA=’TEST’ 列出表中信息,CARD为表中数据总条数
SYSCAT.TABLES中查询出来的属性的说明参见 http://www.cppblog.com/prayer/archive/2009/04/01/78562.html
select * from sysstat.TABLES (view) 显示表中的信息,包含表中的数据条数
runsats可以搜集表的信息(做这些维护操作的时候,最好能停止应用了,或者没有应用使用到对应的表的时候)
runstats on table [模式名].[表名] with distribution and detailed indexes all 对表做runstats
REORGCHK这个命令,可以根据统计公式计算表是否需要重整。
reorgchk on table all 确定是否需要对表进行重组。这对于对所有表自动执行 runstats很有用。
reorgchk update statistics on table system 针对系统表进行REORGCHK
reorgchk update statistics on table user 针对用户表进行REORGCHK
原创文章,作者:奋斗,如若转载,请注明出处:https://blog.ytso.com/4394.html