DB2中如何查询一个数据库中有多少张表

DB2中如何查询一个数据库中有多少张表,第1张

数据库中还有大量系统表的,所以我觉得你查某些模式下的表比较好:

select count(*) from syscat.tables where tabschema='GP'

GP为某用户模式。

当然也可以用

select count(*) from syscat.tables where tabschema='GP'

查出所有表的数量。

再查出有多少张系统表,就是在SYSIBM、SYSTOOLS下的表数目。相减就可以了。

我用的是DB2 V9.7。

select

name

from

sysibm.systables

where

type='t'

and

creator='db2admin'

type:数据库表用t表示;数据库视图用v表示

creator:数据库对象的创建者

select

tabname

from

syscat.tables

where

tabschema

=

current

schema

//

获取当前模式下面的所有用户表

但是这样报错了哦!

select name from sysibm.systables where type='T' and creator='DB2ADMIN'

creator是用户名吧?

Exception in thread "main" com.ibm.db2.jcc.c.SqlException: DB2 SQL error: SQLCODE: -243, SQLSTATE: 36001, SQLERRMC: SQL_CURSH200C1


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/9974205.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-03
下一篇 2023-05-03

发表评论

登录后才能评论

评论列表(0条)

保存