查看表空间:

SELECT tablespace_name, 
file_id, 
file_name, 
round(bytes / (1024 * 1024), 0) total_space 
FROM dba_data_files 
ORDER BY tablespace_name; 

  

创建表空间:

create tablespace geoglobe 
logging 
datafile '/u01/app/oracle/oradata/data/geoglobe.dbf' 
size 1024m 
autoextend on 
next 512m maxsize 20480m 
extent management local;

  

删除表空间及文件:

drop tablespace GEOGLOBE including contents and datafiles;

  

相关文章:

  • 2021-11-04
  • 2021-11-21
猜你喜欢
  • 2021-12-22
  • 2021-12-30
  • 2022-12-23
  • 2022-12-23
  • 2021-11-19
  • 2022-01-07
  • 2021-12-19
相关资源
相似解决方案