表drop添加 purge参数

问题描述

查询生产发现有很多临时表删除的drop操作,但实际没有完全删除,发现recyclebin中存在很多东西。


一直不做清理的话,会导致recycle bin一直在增大,对生产数据库性能有一定影响

解决方案

--在drop语句中添加purge参数
drop table tablename purge

--清除对应表和索引的recyclebin信息
purge table origenal_tableName;
purge index origenal_indexName;

--查询recyclebin信息
SELECT t.object_name,t.type ,t.original_name FROM user_recyclebin t;

--直接清除recyclebin信息
PURGE recyclebin;

你可能感兴趣的:(问题记录)