Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何使用 DB2 命令增加特定表的分配表大小。或者是否有另一种方法可以一次将所有表的内存增加 5mb。
您不会增加表的内存,而是增加它所在的表空间。
select tbspace from syscat.tables where tabname = 'MYTAB'
db2 "alter tablespace tbspace extend (all 100000)