ANALYZE TABLE BASEINFO COMPUTE STATISTICS;
select * from organizations;
SELECT blocks, empty_blocks, num_rows
FROM user_tables
WHERE table_name = 'BASEINFO';
alter table BASEINFO enable row movement
alter table BASEINFO shrink space cascade;
alter table BASEINFO disable row movement;
select * from organizations;
SELECT blocks, empty_blocks, num_rows
FROM user_tables
WHERE table_name = 'BASEINFO';
alter table BASEINFO enable row movement
alter table BASEINFO shrink space cascade;
alter table BASEINFO disable row movement;
本文深入探讨了在数据库管理中如何使用SQL语句进行组织表、查询表结构信息、调整空间使用效率,并对BASEINFO表进行了启用行移动、收缩空间和禁用行移动的操作,旨在提升数据存储与查询性能。
1359

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



