1、查询表空间,及表空间的大小

SELECT t.tablespace_name, round(SUM(bytes / (1024 * 1024)), 0) ts_size
FROM dba_tablespaces t, dba_data_files d
WHERE t.tablespace_name = d.tablespace_name
GROUP BY t.tablespace_name;

2、表空间的文件系统地址

select FILE_NAME from dba_data_files

3、为表空间新增新的存放文件

alter tablespace FSNEW add datafile 'f:\FSNEW.DBF' size 200M; 

4、扩充已有的表空间大小

alter database datafile 'D:\APP\ADMINISTRATOR\ORADATA\CDFS.DBF' resize 200M; 

 

相关文章:

  • 2021-04-02
  • 2021-06-15
  • 2021-12-31
  • 2022-12-23
  • 2022-12-23
  • 2021-11-19
  • 2021-11-29
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-08-19
  • 2021-12-23
  • 2021-06-29
  • 2021-06-30
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案