创建表的原则;
将不同的表放在不用的表空间中
使用本地管理的表空间避免系统表空间碎片
在表中使用若干标准extent尺寸以减少表空间的碎片
创建本地管理的表空间上的表时可以在后面添加 tablespace tablespace_name子句。在数据字典管理的表空间上创建表时可以同时制定存储参数。
storage(initial 100k next 100k pctincrease 0 minextents 1 maxextents 100) tablespace tablespace_name;另外还可以使用pctfree,pctused,initrans,maxtrans等参数
时间: 2024-10-12 12:52:34