How to find Privileges on Directory in Oracle

November 27, 2020
()

Find Privileges on Directory in Oracle


Oracle has introduced the concept of
DIRECTORY which is a type of object and introduced in Oracle version 8.0. DIRECTORY is a logical structure that presents a physical directory on the database server’s file system.
DIRECTORY  can be used in DATAPUMP, PL/SQL block, UTL_FILE packages, etc In Oracle.


Below is the command to find privileges on DIRECTORY in Oracle.
Click here for sample output.
 

SET LINES 333
COL GRANTEE FOR A15
COL DIRECTORY_NAME FOR A25
COL TYPE FOR A11
COL PRIVILEGE FOR A11

SELECT NAME,GRANTEE,TABLE_NAME "DIRECTORY_NAME",PRIVILEGE,TYPE FROM V$DATABASE, DBA_TAB_PRIVS 
WHERE TABLE_NAME = 'MOMO_DIR_LAB' ORDER BY GRANTEE,PRIVILEGE;
prompt$$$$$$$**Welcome to DBsGuru!**Share Learn Grow**$$$$$$$


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

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>

2 Comments

  • Excellent article team dbsguru.
    Suman sir grand salute to you and whole team for your work.
    Please continue it.
    I seriously wanted to join you in this work and wanted to learn and become part of your team.

Leave a Reply

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