问题现象:
DB2 reorg列式存储表报错 SQL1667N
db2 reorg table t1
SQL1667N The operation failed because the operation is not supported with the type of the specified talbe. Specified table: "T1". Table type: "ORGANIZE BY COLUMN". Operation: "REORG TABLE". SQLSTATE=42858
问题解决:
reorg table的时候加上 reclaim extents:
db2 reorg table t1 reclaim extents
参考:
在尝试对DB2的列式存储表T1执行REORGTABLE操作时遇到SQL1667N错误,表示该操作不支持此类表。为解决问题,可以使用`db2reorgtable1reclaimextents`命令来完成重组织操作。此方法是根据IBM官方文档的建议。

1万+

被折叠的 条评论
为什么被折叠?



