Login  Register

Database size after Duplicat

classic Classic list List threaded Threaded
4 messages Options Options
Embed post
Permalink
big
Reply | Threaded
Open this post in threaded view
| More
Print post
Permalink

Database size after Duplicat

big
97 posts
Reply | Threaded
Open this post in threaded view
| More
Print post
Permalink

Re: Database size after Duplicat

ErmanArslansOracleBlog
Administrator
4485 posts
Check the OS.. Filesystem size report depends from OS to Os.. From Filesytem to filesystem...

Check the DB size using SQL ...
big
Reply | Threaded
Open this post in threaded view
| More
Print post
Permalink

Re: Database size after Duplicat

big
97 posts
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.
Reply | Threaded
Open this post in threaded view
| More
Print post
Permalink

Re: Database size after Duplicat

ErmanArslansOracleBlog
Administrator
4485 posts
what do you mean by supplementary expired datafiles?
use v$datafile to check your datafiles.