Oracle 10+ Recyclebin

From WickyWiki
Revision as of 09:23, 11 January 2012 by Wilbert (talk | contribs) (Created page with " Oracle 10 maintains a 'recyclebin' for dropped tables, 'used' space will be freely overwritten by new tables if you are out of unused space. Names of dropped tables are prefixed...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Oracle 10 maintains a 'recyclebin' for dropped tables, 'used' space will be freely overwritten by new tables if you are out of unused space. Names of dropped tables are prefixed with ‘BIN$’. You can disable this function if you want all traces of the dropped tables gone.

Empty the trash:

PURGE recyclebin;

Disable for session:

alter session set recyclebin=off;

Disable for system:

alter system set recyclebin=off;