Search notes:

Oracle: DBA_RECYCLEBIN

dba_recyclebin shows the tables and their associated objects such as indexes, triggers, sequences (in case of identity columns) etc that are in the dba_recyclebin.
This view comes in the variants user_recyclebin, dba_recyclebin and cdb_recyclebin.
alter session set recyclebin = on;

create table tq84_waste (
  a varchar2(4000),
  b varchar2(4000)
);

begin
  for i in 1 .. 100 loop
    insert into tq84_waste values (rpad('x', 4000, 'x'), rpad('y', 4000, 'y'));
  end loop;
end;
/

commit;

drop table tq84_waste;

select
  object_name,
  operation,
  can_undrop,
  can_purge,
  type,
  createtime,
  droptime
--dropscn
from
  user_recyclebin
where
  original_name = 'TQ84_WASTE';
--
-- OBJECT_NAME                    OPERATION CAN CAN TYPE                      CREATETIME          DROPTIME           
-- ------------------------------ --------- --- --- ------------------------- ------------------- -------------------
-- BIN$QQO3UMqKNDzgU1HeGazS5Q==$0 DROP      YES YES TABLE                     2016-11-11:11:27:31 2016-11-11:11:27:31


purge recyclebin;
Github repository Oracle-Patterns, path: /Installed/data-dictionary/recyclebin/example-01.sql

See also

The SQL*Plus command show recyclebin.
The init parameter recyclebin.
recyclebin is a special synonym for user_recyclebin.
data dictionary

Index

Fatal error: Uncaught PDOException: SQLSTATE[HY000]: General error: 8 attempt to write a readonly database in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php:78 Stack trace: #0 /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php(78): PDOStatement->execute(Array) #1 /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php(30): insert_webrequest_('/notes/developm...', 1758199732, '216.73.216.150', 'Mozilla/5.0 App...', NULL) #2 /home/httpd/vhosts/renenyffenegger.ch/httpsdocs/notes/development/databases/Oracle/installed/data-dictionary/recyclebin(90): insert_webrequest() #3 {main} thrown in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php on line 78