在 Informix 中使用 onspaces 命令将块添加到 dbspace 时如何将块标记为可扩展?
How can I mark a chunk to extendable while adding a chunk to dbspace using onspaces command in Informix?
我想知道在使用 onspaces
命令本身将块添加到 dbspace 时是否可以将块标记为可扩展。在sysmaster 数据库的syschunks table 中有一个名为is_extendable 的列。在将块添加到 dbspace 时如何启用它?
看看 Automatic space management,它仅在 11.70 后可用。
特别是,Marking a chunk as extendable or non-extendable 表示您不使用 onspaces
,而是使用(例如)DB-Access 来执行管理功能:
To mark a chunk as extendable:
Run the admin()
or task()
function with the modify chunk extendable argument, as follows:
EXECUTE FUNCTION task("modify chunk extendable", "chunk number");
To mark a chunk as not extendable:
Run the admin()
or task()
function with the modify chunk extendable off argument, as follows:
EXECUTE FUNCTION task("modify chunk extendable off", "chunk number");
我想知道在使用 onspaces
命令本身将块添加到 dbspace 时是否可以将块标记为可扩展。在sysmaster 数据库的syschunks table 中有一个名为is_extendable 的列。在将块添加到 dbspace 时如何启用它?
看看 Automatic space management,它仅在 11.70 后可用。
特别是,Marking a chunk as extendable or non-extendable 表示您不使用 onspaces
,而是使用(例如)DB-Access 来执行管理功能:
To mark a chunk as extendable:
Run the
admin()
ortask()
function with the modify chunk extendable argument, as follows:EXECUTE FUNCTION task("modify chunk extendable", "chunk number");
To mark a chunk as not extendable:
Run the
admin()
ortask()
function with the modify chunk extendable off argument, as follows:EXECUTE FUNCTION task("modify chunk extendable off", "chunk number");