数据库为10G。
问题就是出在dba_free_space上。
是回收站的问题。
解决过程:
1、使用sys用户登录
2、SQL>select count(*) from sys.recyclebin$;
3464
SQL>select count(*) from recyclebin;
0
3、SQL>purge recyclebin; 当前用户
Done.
4、SQL>select count(*) from recyclebin;
0
SQL>select count(*) from sys.recyclebin$;
3457
5、SQL>purge dba_recyclebin; 所有用户
Done
6、SQL>select count(*) from recyclebin;
0
SQL>select count(*) from sys.recyclebin$;
0
再查询表空间利用率就快了。
阅读(849) | 评论(0) | 转发(0) |