DB2表空间管理
1.查询表所属表空间
select tabname,tbspace from syscat.tables where tabname='大写表名'
2.查看所有表空间及tablespaceID
db2 list tablespaces
3.获取表空间对应的容器信息
db2 list tablespace container for 数字
4.查看数据库信息
db2 get db cfg for tablespaceID
5.查看日志文件详细信息
db2pd -db 数据库 -tablespaces tablespaceID
转载于:https://www.cnblogs.com/atwanli/articles/4312056.html