1.找到数据库命名表的空间tablespace
2.找到对应的file_Name,查看所有当前数据库的表空间大小,执行sql如下
select tablespace_name, file_id, file_name,round(bytes/(1024*1024),0) total_space from dba_data_files order by tablespace_name
3.重置空间大小,执行sql,重置空间大小为20480m
alter database datafile '/oracle/oradata/ora16/DATA01.dbf' resize 20480m
本文介绍如何通过SQL查询来查找数据库表空间的信息,并提供步骤来调整表空间文件的大小。
5027

被折叠的 条评论
为什么被折叠?



