Oracle 查看表空间操作示例
查看表空间大小:
SELECT tablespace_name, sum (bytes) / 1024 / 1024 FROM dba_data_files GROUP BY tablespace_name;
扩大表空间
alter tablespace USERS add datafile 'D:\DB.DBF' size 2048M;