1 changed file
oracle_show_dba_recyclebin.sql | ||
oracle_show_dba_recyclebin.sql
/oracle_show_dba_recyclebin.sql-9+8/oracle_show_dba_recyclebin.sql
Add comment 14 --
Add comment 15
Add comment 16 -- Oracle - Show All Users Recyclebins via DBA Recyclebin
Add comment 17 Plus --
Add comment 18 Plus -- Tested on Oracle 19c
Add comment 17 19
Add comment 18 20 SELECT
Add comment 19 Minus --owner,
Add comment 20 Minus --object_name,
Add comment 21 Minus username,
Add comment 21 Plus owner,
Add comment 22 Plus object_name,
Add comment 22 23 original_name,
Add comment 23 24 type,
Add comment 24 Minus drop_time,
Add comment 25 Minus is_parent,
Add comment 26 Minus recyclebin_name
Add comment 25 Plus droptime,
Add comment 26 Plus space
Add comment 27 FROM
Add comment 28 dba_recyclebin
Add comment 29 ORDER BY
Add comment 30 Minus --owner,
Add comment 31 Minus username,
Add comment 32 Minus drop_time
Add comment 30 Plus owner,
Add comment 31 Plus droptime
Add comment 33 32 DESC;
Add comment 34 33