我想知道在使用onspaces
命令本身向dbspace添加块时是否可以将块标记为可扩展。 sysmaster数据库的syschunks表中有一个名为 is_extendable 的列。如何在向数据库空间添加块时启用它?
答案 0 :(得分:3)
查看Automatic space management,它仅在11.70之后可用。
特别是,Marking a chunk as extendable or non-extendable表示您不使用onspaces
,但使用(例如)DB-Access来执行管理功能:
将块标记为可扩展:
使用modify chunk extendable参数运行
admin()
或task()
函数,如下所示:EXECUTE FUNCTION task("modify chunk extendable", "chunk number");
将块标记为不可扩展:
使用modify chunk extendable off参数运行
admin()
或task()
函数,如下所示:EXECUTE FUNCTION task("modify chunk extendable off", "chunk number");