How to see what are the privilages a USER has

Hi all,
How to see the what are the privilages a USER has.
and
In Oracle 10g, where the log files were created ?
Thanks in advance,
Pal

Hi,
You can use the "DBA_SYS_PRIVS" data dictionary view to see a user's system privileges.
You can use the "DBA_ROLE_PRIVS" data dictionary view to see a user's roles by filtering on the "GRANTEE" column.
Finally, you can see what direct grants a user has on tables, views, packages, types, procedures, functions, etc. with "DBA_TAB_PRIVS"...
Hope this helps...

Similar Messages

  • How to see what are the Tables avialable in DataBase

    Hi ,
    Is it possible to see what are the tables avialable in the Data base (I am using Oracle 10g Client )
    Thanks in advance .

    user672373773 wrote:
    Hi ,
    Is it possible to see what are the tables avialable in the Data base (I am using Oracle 10g Client )
    Thanks in advance .Learning where to look things up in the documentation is time well spent investing in your career. To that end, you should drop everything else you are doing and do the following:
    Go to tahiti.oracle.com. Drill down to your product and version.
    Spend a few minutes just getting familiar with what is available here. Take special note of the "books" and "search" tabs. Under the "books" tab you will find the complete documentation library.
    Spend a few minutes just getting familiar with what kind of documentation is available there by simply browsing the titles under the "Books" tab.
    Open the Reference Manual and spend a few minutes looking through the table of contents to get familiar with what kind of information is available there, especially the initialization parms and the data dictionary views.
    Do the same with the SQL Reference Manual.
    Do the same with the Utilities manual.
    Then set yourself a plan to dig deeper.
    - Read a chapter a day from the Concepts Manual.
    - Look in your alert log and find all the non-default initialization parms listed at instance startup. Then read up on each one of them in the Reference Manual.
    - Take a look at your listener.ora, tnsnames.ora, and sqlnet.ora files. Go to the Network Administrators manual and read up on everything you see in those files.
    - When you have finished reading the Concepts Manual, do it again.
    Give a man a fish and he eats for a day. Teach a man to fish and he eats for a lifetime.
    =================================

  • How to see what are the tablespaces in a database

    Hi..All..
    I want to see what are the tablespaces present in my database. What is the query for it..?
    Thanks in advance,
    Pal

    select * from v$tablespace;
    select tablespace_name,((sum(bytes)/1024)/1024) space_used_in_mb
    from dba_segments
    group by tablespace_name;

  • How to check what are the enhancement done for MIRO transaction

    Hi Experts,
    Please help me out, how to check what are the enhancement done for MIRO transaction.
    Thanks in advance.
    Thanks,
    Basanagouda

    Hi
    Use the BADI
    Please refer these documents: [Enhancements required in MIGO|Enhancements required in MIGO; and
    [Enhancement in MIGO for Goods Movement|Enhancement in MIGO for Goods Movement;
    Hope this helps!!
    Regards
    Vijay

  • Any report to see what are the users assigned to an org-unit ?

    Hi All,
    Is there any standard report available to see what are the users assigned to a particular org-unit?
    I'm looking for complete list of users assigned to a particular org-unit both directly and indirectly/
    Thank you so much in advance !!
    Cheers,
    Gyan.

    Hi,
    None of them actually helped.
    Trx PC00 is not available in 4.0 sytem. And from the table mentioned i don't see the org-unit value. Could you please elaborate on this.
    Thanks,
    Gyan.

  • How to know what are the privs for one custom schema?

    how to know what are the privs for one custom schema?
    please suggest me......

    Hi,
    Check this user_sys_privs
    Cheers
    Pavan Kumar N

  • What are the payment plans Apple has for international buyers

    what are the payment plans Apple has for international buyers

    There are none.  If you want to buy an iPhone, then you'll need to go and buy one from an Apple store in your country or one of the phone carriers in your country that offer iPhones.  If you live in a country that does not have an Apple store, then go to an Apple re-seller.  You may be able to purchase online if there is an Apple store online for your country.
    These are your alternatives.

  • How can find what are the customers are created in my earlier version.

    Hi all,I am trying to find out how can I check the  what are the customers are created in my earlier version of sap (i.e 4.7B)
    My client  Upgrade d the 5.0 in 2007. Now my client asking, list of WDs which are created in the 4.7B.

    Hi,
    You know when the SAP went live with the new version.
    In t.code SE16, enter table name KNA1.
    In the field created on put value of new SAP version go-live date and select a < symbol by double clicking the field. Then click on execute button, the system will provide the customer master created before the new version go-live date.
    Regards,

  • How to know what are the T Codes used by client in SAP HR module in  qualit

    hi experts,
    i have a access of quality server given by my client in SAP HR.I dont know what are the Tcodes used by client.So how i can know what are the Tcodes client is using frequently.i have to list out all TCodes urgently.
    PLZ reply ASAP.
    Thanx in advance..

    Hi
    You can do this by going to SUIM-Transactions-Executable for User
    Then give the user name/id as in user master record and execute.  Now the system will display the list of transaction codes used by that particular user.
    Regards
    Santhosh.S

  • How to find what  are the select  statements fired on a particular schema

    Hi Guys,
    I have a development box schema whose username and the password is shared across many users who are doing the developement.
    I wnat to know what are the select statement fired on it during a particular time interval.
    Thanks,
    Prafulla

    with dba user
    BEGIN
    DBMS_FGA.ADD_POLICY(object_schema => 'schemaname',
    object_name => 'CALLS',
    policy_name => 'CALLS_AUDIT',
    statement_types => 'SELECT'
    …enable => TRUE);
    END;
    then all select are viewed on table dba_fga_audit_trail
    Edited by: Adigozalov Gurban on Dec 3, 2010 11:05 AM

  • What are the minimum db user privileges required for CDC?

    What are the minimum privileges required for the source data server user in order to to successfully implement CDC
    Currently I'm getting an "Insufficient privileges" error when trying to start a CDC journal on a model. The error is happening on the step that creates a trigger on the table in the source schema.
    Here's the situation:
    The data server uses the user "ODI_TEMP" for its connection. ODI_TEMP has been granted select privileges on the desired tables in the source schema. When starting the CDC journal on the model for the source schema, ODI tries to create a trigger on the source tables. This fails since the ODI_TEMP user can't create triggers on anything outside of it's own schema. For obvious fundamental security reasons, we cannot give the ODI_TEMP user the CREATE ANY TRIGGER system privilege on the data source.
    Journalizing is set up using JKM Oracle Consistent. ODI is 11g, DB is 11g.

    Hi,
    You can go for this
    Grant CREATE ANY TRIGGER system privilege to ODI_TMP
    Start the Journal , it will create triggers in ODI_TMP schema for the tables present in your source schema.
    Now revoke CREATE ANY TRIGGER system privilege from ODI_TMP.
    It will continue to work .. only when you are restarting the journal (due to adding or removing some tables in CDC) , you will be requiring CREATE ANY TRIGGER privilege.
    Thanks,
    Sutirtha

  • How to find what are  the  support-teams map with particular componant type

    hi experts,
    i am new in solution manager.. My requirement is when creating the support message in crmd_order t-code i have to give the componant type in transaction data after that in fast entry screen i have to assign support team for that componant type .. here i have to give only valid support team which are map with particular componant type .. when save the support message here i have to check that support team is map with that particular componant type (i.e that support team is belong to that componant type ) .. thats what i have to do in abap development .. so how to find the what are all the support teams mapped with particular componant type .. whether it is stored in any table or ?.. Please give solutions ..
    Regards,
    Kumar..

    Hi Kumaresan-
    I'm not sure I fully understand your requirement but I will try to help out. If you are trying to determine / associate the relevant support team according to which component they are responsible for, this might help.
    The determination of the support team is maintained by configuring rule 13200137 in transaction PFAC_RESPO.
    Click on the Responsibilities Tab
    Create your responsibility based on your support team requirements
    Assign the appropriate Support Team, this data will be taken from the settings you have maintained when creating your org chart in ppoma_crm
    Highlight a responsibility and click Change
    In this table you will see an entry for SAP Component, this is where you identify which support team will be determined based on component

  • How to know what are the missing items in 'Collect Files' ?

    I used 'Collect Files' to gather my medias for my project, but it's giving me this error in log:
    Number of missing items:  1
    This project is pretty huge so how can I find out which items is missing ?
    I don't see any offline layers in my sequences...
    Thank you.

    Do you have a file that is bigger than 2gb in size ? I know that on some cases Collect file won't move file with size over 2gb (if i'm correct, not sure about this).
    If you are on CS4, open you collected file project and type "missing" in the search text field of the project panel, and AE will show you all the missing files.
    You can also have a look at the log file created when you collected the file to see wat file is missing.
    Hope that helps.

  • How to know what are the db changes done today

    Is there any way to know the Code changes done today in a schema. Code changes means any ddl commands / function changes / procedure changes / triggers etc. .
    Edited by: DIVI on May 29, 2012 10:08 PM

    Hi,
    If you are need of the DB Changes for which a DB Objects are Created then,
    you can use.
    SELECT *
      FROM USER_OBJECTS
    WHERE OBJECT_TYPE IN ('TABLE', 'PROCEDURE', 'PACKAGE', 'FUNCTION');But, If You need to Track Entire DDL Activites, You have to Audit the Database Changes or
    with the Use of Database Triggers.
    Thanks,
    Shankar.

  • How to find what are the columns actually used in BMM

    Hi All,
    Is there any way(Utility) in RPD to find out whether the columns present in physical layer are used in BMM layer? One option is to Rt click on physical layer tables and do 'Query related logical column'. This will not allow me to export the result into CSV or any file.
    Is there any beeter way?
    Thanks,
    Anilesh

    Anilesh,
    Try with BI Administrator - Tools -- > Utilities --> Repository Documentation --> execute give your file name (rep_doc.csv)
    Thanks -

Maybe you are looking for

  • PROCESS CODE IN RECEIVING SYSTEM

    Dear gurus, What is the process code in receving system in ALE. should we create a new process code or select the process code from exists. advise please. Cheers, R.Rajendran

  • HP 5500 Extra page printing?

    Have am HP 5500 networked printer spitting out an extra page after print jobs, has been going on for about a month now.  It does this about 3/5 print jobs.  When a user sends a document whether multi paged or not, it will print the job then prints an

  • Strange Song Title Censorship

    The Irish iTunes Store has started censoring the word "love" in song titles. It now shows up as L**e. I understand that discrepancies can arise where words have multiple meanings, but who has a problem with love?

  • I can't open indesign cc 2014 on Mac

    I'm receiving a notice to say "To open Adobe InDesign CC 2014 you need to install a Java runtime, but you are not connected to the internet". But I am connected to the internet.

  • Strange error (%SIM-3-ARP_SND_FAIL) in logging

    There is a rather annoying error in my AIR-WLC2112-K9. I upgraded to 5.1.163.0 and I changed 'ap-manager' and 'management' interfaces to untagged, but nothig helped. The only port that is connected is port 1. The error is: *Feb 10 20:24:47.744: %SIM-