更改system表空间的数据文件SYSTEM.dbf分配空间。

alter database datafile 'F:\software\oraclexe\app\oracle\oradata\XE\SYSTEM.DBF' resize 10G;

查看空间分配

select tablespace_name,sum(bytes)/1024/1024 from dba_data_files group by tablespace_name;

结果

1	SYSAUX	     660
2	UNDOTBS1     380
3	USERS	    100
4	SYSTEM	    10240

相关文章:

  • 2022-12-23
  • 2021-07-12
  • 2022-12-23
  • 2021-12-15
  • 2022-01-27
  • 2021-06-17
  • 2021-11-21
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-07-15
  • 2021-12-16
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案