--按照数据行数排序
select table_name,blocks,num_rows
from dba_tables
where owner not like '%SYS%' and table_name not like '%$%' and num_rows is not null
order by num_rows desc;
--按照表占用的数据块
select table_name,blocks,num_rows
from dba_tables
where owner not like '%SYS%' and table_name not like '%$%' and blocks is not null
order by blocks desc;

相关文章:

  • 2021-12-30
  • 2022-12-23
  • 2021-06-25
  • 2022-12-23
  • 2022-03-08
  • 2021-10-27
  • 2022-12-23
  • 2021-12-18
猜你喜欢
  • 2021-12-23
  • 2021-09-29
  • 2021-12-31
  • 2022-12-23
  • 2021-12-04
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案