简体   繁体   中英

Can we find out directory name , path and other details related to files in oracle? If yes, what is the query for that?

SELECT * FROM DBA_DIRECTORIES; --gives all list of directory in database.
select * from DBMS_CLOUD.LIST_FILES('tmp'); --gives detail about files in tmp directory. 

Can we find out directory name, path and other details related to files in oracle?
If yes, what is the query for that?

I could be wrong, but most probably you are looking for this SQL:

SELECT * FROM DBA_DATA_FILES;

Please see this post for more details: How to find the default location in which Oracle DBF files are created?

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM