Can I revoke DEBUG Privilege ?

In a database, We have a (customization) schema, say XYZ & Oracle APPS schema. The business logic are processed in XYZ then process (call) to Oracle side using API on XYZ schema, say create Oracle Order.
The XYZ's API will call the package on APPS.
My problem comes when debugging -
When I process the code from XYZ schema, I will be able to see all steps until the program call APPS' package. My guess the APPS has set to not allow debug through its programs. Is there a way to revoke it (so I will be able to see what's happening)? Possible anything to be done from XYZ schema?
Thank you for any idea!

Any one?
Thank you

Similar Messages

  • Debug privilege

    Hello how can i get debug privilege in my windows 7 home edition. in fact, i am using my computer as an administrator but i have to face this error always.plz help me

    Hello,
    The TechNet Sandbox forum is designed for users to try out the new forums functionality. Please be respectful of others, and do not expect replies to questions asked here.
    Since your post is off-topic, I am moving it to the
    off topic forum.
    Karl
    When you see answers and helpful posts, please click Vote As Helpful, Propose As Answer, and/or Mark As Answer.
    My Blog: Unlock PowerShell
    My Book:
    Windows PowerShell 2.0 Bible
    My E-mail: -join ('6F6C646B61726C406F75746C6F6F6B2E636F6D'-split'(?<=\G.{2})'|%{if($_){[char][int]"0x$_"}})

  • How to revoked 'ANY' privileges being granted to user or role

    Hi all,
    I need to be revoked all 'ANY' privileges that have been granted to all non-DBA user or Role in the database.
    To achieve this what i assume is
    1> i need to find out Role as well all user who are non-DBA
    2> For all non-DBA user i need to find out and revoked 'ANY' privileges if they would have.
    Here i need some information about all tables related to privilieges and non-DBA users
    The below are some example as a reference.
    USER Privileges
    CTXADMIN SELECT ANY TABLE
    PUBLIC MERGE ANY VIEW
    LAXORA ANALYZE ANY
    EXECUTE ANY PROCEDURE
    GRANT ANY ROLE
    INSERT ANY TABLE
    SELECT ANY TABLE
    LAX_NEW ANALYZE ANY
    CREATE ANY TABLE
    DELETE ANY TABLE
    DROP ANY TABLE
    INSERT ANY TABLE
    SELECT ANY TABLE
    USER_NEW SELECT ANY TABLE
    Thank n reagrds
    Laxman

    Hi,
    LAX_ORA wrote:
    Hi all,
    I need to be revoked all 'ANY' privileges that have been granted to all non-DBA user or Role in the database.
    To achieve this what i assume is
    1> i need to find out Role as well all user who are non-DBA
    2> For all non-DBA user i need to find out and revoked 'ANY' privileges if they would have.
    Here i need some information about all tables related to privilieges and non-DBA users
    The below are some example as a reference.
    USER Privileges
    CTXADMIN SELECT ANY TABLE
    PUBLIC MERGE ANY VIEW
    LAXORA ANALYZE ANY
    EXECUTE ANY PROCEDURE
    GRANT ANY ROLE
    INSERT ANY TABLE
    SELECT ANY TABLE
    LAX_NEW ANALYZE ANY
    CREATE ANY TABLE
    DELETE ANY TABLE
    DROP ANY TABLE
    INSERT ANY TABLE
    SELECT ANY TABLE
    USER_NEW SELECT ANY TABLE
    Thank n reagrds
    LaxmanYou can fiind out all the users and roles who have been granted system privileges by querying dba_sys_privs.
    For example:
    SELECT     grantee
    ,     privilege
    FROM     dba_sys_privs
    WHERE     privilege     LIKE '% ANY %'
    ;The grantee column includes users and roles together.
    If you want to find which users have the dba role, then query dba_role_privs.

  • Oracle recommends that you revoke EXECUTE privileges on powerful packages f

    Oracle recommends that you revoke EXECUTE privileges on powerful packages from PUBLIC
    Got on error on the home page of Enterprise Manager and read that I should run the code below to correct the problem, but when I click on the link at the bottom of EM to go to iSQL*Plus and choose to connect as sysdba I get a popup asking for me to input a password for my computer so I tried my local computer username and password, my network username and password and even my database username and password and neither lets me in. I can login under Normal but then I do not have rights to execute the command.
    revoke execute on utl_file from public;
    I know I have my computer username and password correct because I had to enter it to shutdown the database yesterday.
    And I had a problem with my listener not knowing the SID, but the error has since went away, but I do have an error on my listener saying
    Disk Utilization for 0 C: is 151.45%
    Edited by: jamesH2 on Aug 29, 2008 9:20 AM

    Hi James,
    Where you saw that Oracle recommend that? If you are refering to the Db console recomendations please take a look on this note also: Note:343620.1
    If you revoke any privilege from PUBLIC it becomes your own responsibility
    to ascertain that all your applications will keep working. The same goal can often be accomplished
    by replacing the privileges formerly granted to PUBLIC to some individual users or
    roles.
    Please take a look on this Metalink Note: 247093.1 Be Cautious When Revoking Privileges Granted to PUBLIC
    Regards,
    Francisco Munoz Alvarez
    www.oraclenz.com
    Edited by: F. Munoz Alvarez on Aug 30, 2008 1:31 AM

  • Debug privilege - is it at object level or user level or both?

    Just want to know at what level Debug privilege can be granted? At object level or user-level or both?
    I'm under the impression that if an user say 'A' is given this privilege, then he can debug all the procedures/packages/objects in his schema . I guess it's like granting the privilege at user level.
    On the other hand when we say 'grant debug on proc_name to xyz' , it's at object level.
    Please check and correct my assumptions.

    in order to debug (i.e, activate dbms_debug) in a session you need:
    debug connect session
    in order to debug objects that you are not the owner you need:
    debug any procedure
    or
    grant debug on procedure from the user that own the pl/unit
    hope it helps,
    Amiel Davis

  • HELP NEEDED: revoked all privileges on form

    how dumb can one be?
    i revoked all privileges of everyone on a form so now i cannot even delete it. is there a way to grant access to the form again?
    thank you,
    Ralf Schmitt

    I know this is an old post to update, but I found it helpful and wanted to note that Sharmila's solution does work.
    If you have problems, go to the procedure itself and follow the directions on what to pass into the procedure. I did change it to specify the variables I was passing but that is a minor change.
    Also, I had to log out of SQLNav before the change took effect, which is weird, but I have had to do that when using other API's as well so it was not entirely unexpected.

  • Is there a way to revoke DDL privileges from a user

    I would like to revoke DDL privileges from a user.
    My requirement goes like this
    1.Create a user with DDL privileges
    2. Create the required tables in that user. Fill the data.
    3. Revoke DDL privileges from that user (CREATE,ALTER,DROP).
    I was able to achieve this by creating two users where in the 1st user contains all the physical objects and data, where in the 2nd user contains only synonyms with select/execute privileges.
    Is there any other way to achieve this.
    Bcoz in SQL SERVER 2005 we have
    REVOKE ALTER TABLE FROM USER; and likewise.
    Kindly help me out!
    Thnx in advance

    You can easily satisfy all your requirements using facilities provided by the database. Here is a sample:
    SQL&gt; create user test identified by test;
    User created.
    SQL&gt; grant create session to test;
    Grant succeeded.
    SQL&gt; connect test/test
    SQL&gt; CREATE TABLE ddl_in_my_schema(x number);
    CREATE TABLE ddl_in_my_schema(x number)
    ERROR at line 1:
    ORA-01031: insufficient privileges
    -- Connect as administrator
    SQL&gt; GRANT CREATE TABLE TO test;
    Grant succeeded.
    SQL&gt; ALTER USER test QUOTA 10M ON USERS;
    User altered.
    SQL&gt; connect test/test
    Connected.
    Session altered.
    SQL&gt; CREATE TABLE ddl_table(x number);
    Table created.
    SQL&gt; INSERT INTO ddl_table SELECT OBJECT_ID FROM ALL_OBJECTS;
    4468 rows created.
    -- Connect as administrator again
    SQL&gt; REVOKE CREATE TABLE FROM test;
    Revoke succeeded.
    SQL&gt; connect test/test
    Connected.
    SQL&gt; CREATE TABLE ddl_table2(x number);
    CREATE TABLE ddl_table2(x number)
    ERROR at line 1:
    ORA-01031: insufficient privileges

  • My company have purchased one I Creative cloud for one years. But now, always my company want to buy also anthers n°3 Photoshop application from use always in our office below our comfy. Can we have a privilege cost for the company or we need to buy this

    My company have purchased one I Creative cloud for one years (It's the first time for us) Of course we have pay this product with a price of company but there are new clients adobe. But now, always my company want to buy also anthers n°3 Photoshop application from use always in our office below our account already created. Can we have a privilege cost forecast for company or we need to buy this product as if it is the first time and pay the maximum price for one years?
    Thanks

    Cloud License allows 2 activations http://www.adobe.com/legal/licenses-terms.html
    -Install on a 2nd computer http://forums.adobe.com/thread/1452292?tstart=0
    -Windows or Mac does not matter... 2 on the same operating system, or 1 on each
    -Both subscriptions MAY be in use at the same time https://forums.adobe.com/thread/1683787

  • Can't install debug version of flash player

    I have the Design Premium CS5 suite installed on the laptop I am using, which I have rented from my uni as my own was unstable.
    I have got admin rights, and I installed Flash Builder 4.
    When I tried to debug code, I got the following error [IMG]http://i52.tinypic.com/hu3w3r.png[/IMG].
    So I followed the link on the error message and downloaded from [url]http://www.adobe.com/support/flashplayer/downloads.html[/url].  I downloaded the Windows Flash Player 10.3 ActiveX control content debugger (for IE) (EXE, 3.22MB)
    Even after running it, the debug won't work and I can't view the image the sample code is supposed to display.  Is there a better version?
    I'm running a laptop with Vista.  I saw someone had success with installing safari and chrome during my searches for a solution.  I usually run firefox.  I have installed both safari and chrome, but don't see how this can help me yet.
    I found the following solution on this site: http://kb2.adobe.com/cps/831/cpsid_83106.html, but I can't find the INSTALL_DIRECTORY on this laptop.  The CS5 is installed as follows: [IMG]http://i52.tinypic.com/1zcl1g2.jpg[/IMG].  If I right click on Flash, I can't see  how to select a player or to even see which player it is set for.
    I also found a page on this site which checks what version of flash you have, and I have 10,3,181,34 with no debug.  I've tried uninstalling and reinstalling a debug version with no success.
    I am new to developing as it is for a project.  I'm creating an Augmented Reality app to display on my website, with a downloadable marker.  Is there a way to continue with developing but not using the debug function?
    If you can help I'd be very grateful.

    Install the Windows Flash Player 10.3 Plugin content debugger and see if that helps.
    You can proceed without debug by just double clicking the html file in bin-debug.
    -Anirudh

  • Why can't I debug my JSF Portlet application after inserting an IFrame

    Hi,
    1) I created a jsf portlet application
    2) I add a button in my jsf portlet application
    3) I can debug my button's action method
    4) Now I open my jsp editor and add an iframe
    <iframe height="500" id="ifWindow" name="ifWindow"/>
    5) I try to debug my button's action method but the debug cursor never reaches it like in step 3
    6) I added a messageGroup but nothing appears there
    7) I monitored "C:\Program Files\Sun\Creator2_1\SunAppServer8\domains\creator\logs\server.log" and nothing appears there
    Is this a bug in Java Studio Creator or is there a problem with iframe in jsf portlet applications?
    Why can't I debug a jsf portlet application if I put an iframe?
    Has anyone got this to work in their jsf portlet application? What can I do to debug this simple application?
    Thanks,
    Marc

    Hi,
    I figured it out. I can debug my jsf application if I placed the iframe outside the <ui:form> element. If it's inside, I cannot debug the application. Are there any books or tutorials that I can read to get rules like this in JSF development?

  • How can activate the debug?

    Hi,
    Is it possible activate the debug mode in the Visual Composer? How can do it?
    Thanks in advance,
    Regards,

    Hi,
    Yes , you can do the Debugging for VC models form the Administration Tool.
    Please lookinto the below linkf ro more details
    http://help.sap.com/saphelp_nw04/helpdata/en/c8/f77b40f7edd662e10000000a155106/frameset.htm
    Regards,
    Govindu

  • How can I revoke execution of dbms_job from users ?

    I tried "revoke execute on dbms_job from user_X ;"
    and got an error that I can not revoke permission I didn't grant .
    I don't want that anyone who wants to schedule a job every 10 seconds will be able to do that . I want to permit only users of dba role , to execute this (or other) package .
    Thanks ,
    Lior .

    dbms_job is used under the covers by several pieces of database functionality including AQ notification, AQ propagation, refreshing of materialized views etc .
    I did see a security note that recommended revoking execute on dbms_job from public, but you should be well aware of possible unintended consequences of this action i.e. don't do this on a production database without testing it on a non-production database first !
    I don't really see the security benefit of this. Anyone could write a shell script or use the Windows scheduler or cron to submit the same huge query every 2 minutes !
    The real solution here is performance monitoring, auditing and accountability.
    -Ravi

  • Revoke unnecessary privileges from public = enterpise manager problems

    Hi,
    After revoking the execute privilege on the following packages from public I have problems with enterprise manager (DB version 10.1.0.3.0) :
    UTL_SMTP
    UTL_TCP
    UTL_HTTP
    UTL_FILE
    DBMS_OBFUSCATION_TOOLKIT
    I have revoked the privileges via sqlplus:
    revoke execute on utl_smtp from public;
    If I login now on enterprise manager (user sys)
    the home tab on enterprise manager says "Status pending", the performance/administration and maintenance tabs work.
    Does anyone knows how to solve this?
    Thank You.

    I have had pretty good luck with the following - YMMV
    revoke execute on sys.utl_http from public;
    revoke execute on sys.utl_smtp from public;
    revoke execute on sys.utl_tcp from public;
    revoke execute on sys.dbms_random from public;
    revoke execute on sys.utl_file from public;
    revoke execute on sys.dbms_lob from public;
    revoke execute on dbms_job from public;
    grant execute on sys.utl_http to ORDPLUGINS;
    grant execute on sys.utl_file to xdb;

  • How can i view all privileges granted to an user?

    How can i view all privileges granted to an user? I have access to dba_ views.

    You should look at:
    http://download.oracle.com/docs/cd/B10501_01/nav/catalog_views.htm?remark=homepage#index-DBA
    Look at the views that have the letters "PRIVS" in their names:
    DBA_COL_PRIVS
    DBA_ROLE_PRIVS
    DBA_RSRC_CONSUMER_GROUP_PRIVS
    DBA_RSRC_MANAGER_SYSTEM_PRIVS
    DBA_SYS_PRIVS
    DBA_TAB_PRIVS
    ROLE_ROLE_PRIVS
    ROLE_SYS_PRIVS
    ROLE_TAB_PRIVS
    ROLE_WM_PRIVS
    SESSION_PRIVS
    Depending on what privileges you want that is where to look.
    Regards
    Tim
    You can get help from teachers, but you are going to have to learn a lot by yourself, sitting alone in a room.[]....Dr. Seus

  • Can't remote debug appliaction with jdeveloper10.1.3 deployed in JBoss 4.2

    can't remote debug appliaction with jdeveloper10.1.3 deployed in JBoss 4.2.2
    when i try to debugg with old version like jboss-4.0.3SP1 it is workking good
    but when i'm try to debugg with jboss-4.2.2.GA and add project newly libaray jboss client jars of this version i got error
    Exception in thread "main" java.lang.NoClassDefFoundError: in
    and the debugger stoped in URLClassLoader and throw NoClassDefFoundError exception, i think the reason is the client jars
    which jars should i add to project libarary to success remotely debugg application in jboss 4.2.2 GA ?

    Remote debugging with JBoss 4.2 is the same as for 4.0.
    http://www.oracle.com/webapps/online-help/jdeveloper/10.1.3?topic=rem_p_servlet_general_html

Maybe you are looking for

  • PDF simple vectors look OK in Preview, distorted in Adobe Reader?

    I am working on a document in Illustrator CS5 on Mac OS 10.5.8. The doc is meant to be viewed primarily through e-mail, possibly printed to a desktop printer. I am replacing certain letterforms with vector objects – basically, I'm using simple rectan

  • 10.6.8 update changed RSA passphrase?

    Just updated to 10.6.8 this morning and now I can't get access to my rsa keys for SSH.  I get the standard popup, but my passphrase (which is still stored in Keychain Access BTW) no longer works.  When I try to update the passphrase manually using ss

  • Content Repository Transport

    Hi We have separate Content Server for dev and Prodtn instance.. I made content repositories in oac0 T-code and transported the same to Quality and production systems.. The storage categories were copied, but the content repository names are not gett

  • Trash - How long to empty?

    I wasn't sure where to log this inquiry and I hope this category will work. I dumped a few old libraries that I no longer needed on my system drive. As a result there are about 280K files to delete. The system has been processing about 200 per hour.

  • If I bay time capsule, I can use ma tv with smart tv and wi fi to watch my films on capsule?

    If I bay time capsule, I can use ma tv with smart tv and wi fi to watch my films on capsule?