Cleaning up Oracle Recycle Bin
It is a good idea to keep tabs on the recycle bin in your Oracle database, especially after PeopleSoft upgrades. This info is in the dba_recyclebin view.
To check the size and number of objects
To check the size and number of objects
select count(*), sum(space)/1024/1024 AS "Size in MB" from dba_recyclebin;
To empty it
purge dba_recyclebin
This comment has been removed by a blog administrator.
ReplyDelete