How to find all physicals files in Oracle

October 8, 2020
()

Below is command, how to find all physical files in Oracle in one short (control files, datafiles & redolog files).

Click here to get sample output of all physical files in oracle

col name for a60
set pages 999

select name from v$controlfile
union
select file_name from dba_data_files
union
select file_name from  dba_temp_files
union
select member from v$logfile;


Question: Why do we need all physical files together?

Answer: Whenever we do decommission / clone / restore / migrate etc.

We always encourage the technical person to visit section SCRIPTS to get more daily usage SQL commands.


Click here to get the SQL command for How to find all physicals files in Oracle.


Hope so you like this
script!
Please share your valuable feedback/comments/subscribe and follow us below and don’t forget to click on the bell icon to get the most recent update. Click here to know more about our pursuit.


Loading

How useful was this post?

Click on a star to rate it!

Average rating / 5. Vote count:

No votes so far! Be the first to rate this post.

As you found this post useful...

Follow us on social media!

We are sorry that this post was not useful for you!

Let us improve this post!

Tell us how we can improve this post?

<strong>Hello and welcome to DBsGuru,</strong>DBsGuru is a group of experienced DBA professionals and serves databases and their related community by providing technical blogs, projects, training. Technical blogs are the source of vast information not about databases but its related product like middleware, PL/SQL, replication methodology, and so on.Thanks for the visits!<strong>Share Learn Grow!</strong>

Leave a Reply

Your email address will not be published. Required fields are marked *