Hi All,
I want to purge dba_recyclebin, before that i want to check the size of all objects residing in dba_recyclebin.
I am using below query to goup by tablespace.
SELECT TS_NAME, SUM(SPACE*1024)/1024/1024/1024 AS "Size in GB" FROM DBA_RECYCLEBIN GROUP BY TS_NAME order by 2 desc
Kindly inform me is the correct way to check it. for example if the 10gb space is shown from this query, will i able to see 10GB free space after purging. Kindly confirm
Thanks
Krishna