摘要:
表空间: Oracle的UNDOTBS01.DBF文件太大的解决办法 1、.禁止undo tablespace自动增长 alter database datafile 'full_path/undotbs01.dbf' autoextend off; 2.-- 创建一个新的小空间的undo tablespace create undo tablespace undotBS2 datafile 'full_path/UNDOTBS02.DBF' size 100m; -- 设置新的表空间为系统undo_tablespace alter system set und 阅读全文