oracle怎么查看表空間?
可以通過PL/SQL查看。
1. 查看所有表空間大小 select tablespace_name,sum(bytes)/1024/1024 from dba_data_files group by tablespace_name;
2. 未使用的表空間大小 select tablespace_name,sum(bytes)/1024/1024 from dba_free_space group by tablespace_name; 補充回答: 查看當前用戶每個表占用空間的大小: Select Segment_Name,Sum(bytes)/1024/1024 From User_Extents Group By Segment_Name