A dropped table is preserved in the recycle bin until purged. : recyclebin « SQL PLUS Session Environment « Oracle PL/SQL Tutorial






SQL>
SQL>
SQL> create table myTable (col1 number primary key);

Table created.

SQL>
SQL> drop table myTable;

Table dropped.

SQL>
SQL> select object_name, original_name, type from recyclebin;

no rows selected

SQL>
SQL> purge recyclebin;

Recyclebin purged.

SQL>
SQL> select object_name, original_name, type from recyclebin;

no rows selected

SQL>
SQL>
SQL>








29.53.recyclebin
29.53.1.purge recyclebin
29.53.2.A dropped table is preserved in the recycle bin until purged.