|
Hi,
Yes thank you.
===============on DEV========================================
SQL> select sum (bytes/(1024*1024*1024)) from v$datafile;
SUM(BYTES/(1024*1024*1024))
---------------------------
508.529297
=========================On PROD=================================
SQL> select sum (bytes/1024*1024*1024)) from v$datafile;
SUM(BYTES/(1024*1024*1024))
---------------------------
509.592773
Then they are nearly the same if not mistaken. So on DEV we have some supplementary expired dbf files.
How can I identify and delete them without risk for our DB?
Thanks.
|