Grant execute on DBMS_REPUTIL fails

Hello

I just installed Oracle Database 11 g Release 11.2.0.4.0 - 64 bit Production, and I need to run on DBMS_REPUTIL of user for the compatibility of the trigger. I get the error:

SQL > GRANT EXECUTE ON DBMS_REPUTIL to THE PUBLIC;

GRANT EXECUTE ON DBMS_REPUTIL TO THE PUBLIC

*

ERROR on line 1:

ORA-00942: table or view does not exist

SQL > grant execute on DBMS_REPUTIL to webusr

*

ERROR on line 1:

ORA-00942: table or view does not exist

What is the problem with the grant command? Can anyone suggest how to grant execute on this package?

Here is my version of oracle:

SQL > select * from v version $;

BANNER

--------------------------------------------------------------------------------

Oracle Database 11 g Release 11.2.0.4.0 - 64 bit Production

PL/SQL Release 11.2.0.4.0 - Production

CORE Production 11.2.0.4.0

AMT for Linux: Version 11.2.0.4.0 - Production

NLSRTL Version 11.2.0.4.0 - Production

Thank you!

USER issuing the GRANT doesn't have a necessary privilege.

SQL > connect scott/tiger

Connected.

SQL > GRANT EXECUTE ON DBMS_REPUTIL TO THE PUBLIC;

GRANT EXECUTE ON DBMS_REPUTIL TO THE PUBLIC

*

ERROR on line 1:

ORA-01031: insufficient privileges

SQL > connect / as sysdba

Connected.

SQL > GRANT EXECUTE ON DBMS_REPUTIL TO THE PUBLIC;

Grant succeeded.

Tags: Database

Similar Questions

  • error in grant execute to the public on the package

    Hello
    I have a package that works with my user but when I try to run on this package that I receive
      
    declare
          v_id number;
         begin
              v_id := liste_pkg_lista.liste_lista_func(9);
            dbms_output.put_line(v_id);
    end;
    SQL> /
    9
    
    PL/SQL procedure successfully completed.
    
    SQL> grant execute on liste_pkg_lista.liste_lista_func to public;
    grant execute on liste_pkg_lista.liste_lista_func to public
                                     *
    ERROR at line 1:
    ORA-04042: procedure, function, package, or package body does not exist
    can you tell me how to run on it to the public?

    Thank you

    Coco wrote:
    Hello
    I have a package that works with my user but when I try to run on this package that I receive

    
    declare
    v_id number;
    begin
    v_id := liste_pkg_lista.liste_lista_func(9);
    dbms_output.put_line(v_id);
    end;
    SQL> /
    9
    
    PL/SQL procedure successfully completed.
    
    SQL> grant execute on liste_pkg_lista.liste_lista_func to public;
    grant execute on liste_pkg_lista.liste_lista_func to public
    *
    ERROR at line 1:
    ORA-04042: procedure, function, package, or package body does not exist
    

    can you tell me how to run on it to the public?

    Thank you

    Grant execute on liste_pkg_lista to public;

  • You can grant execute on the package to the role?

    Is it possible to run on a package for a role? The following excerpt (run as SYS AS SYSDBA) illustrates my problem.
    SET SERVEROUTPUT ON SIZE 1000000;
    
    CREATE USER foo_user IDENTIFIED BY foo;
    GRANT CONNECT, UNLIMITED TABLESPACE TO foo_user;
    
    CREATE USER bar_user IDENTIFIED BY bar;
    GRANT CONNECT, UNLIMITED TABLESPACE TO bar_user;
    
    CREATE OR REPLACE PACKAGE foo_user.foo_package AS
        PROCEDURE foo_procedure;
    END;
    /
    
    CREATE OR REPLACE PACKAGE BODY foo_user.foo_package AS
        PROCEDURE foo_procedure AS
        BEGIN
            DBMS_OUTPUT.PUT_LINE('Ran foo_user.foo_package.foo_procedure');
        END foo_procedure;
    END;
    /
    
    CREATE ROLE bar_role;
    GRANT bar_role TO bar_user;
    GRANT EXECUTE ON foo_user.foo_package TO bar_role;
    
    CREATE TABLE bar_user.bar_table(bar_column NUMBER);
    
    CREATE OR REPLACE TRIGGER bar_user.bar_table_bit
    BEFORE INSERT ON bar_user.bar_table
    FOR EACH ROW 
    BEGIN
        foo_user.foo_package.foo_procedure;
    END; 
    /
    
    INSERT INTO bar_user.bar_table (bar_column) VALUES (1);
    Grant execute on foo_user.foo_package to bar_role works, however, the creation of the trigger based on the grant does not work. If, however, I replace the grant to bar_role with a grant to bar_user the creation of the trigger works very well. Therefore replacement
    CREATE ROLE bar_role;
    GRANT bar_role TO bar_user;
    GRANT EXECUTE ON foo_user.foo_package TO bar_role;
    with
    GRANT EXECUTE ON foo_user.foo_package TO bar_user;
    works very well.

    Am I doing something wrong or is not possible to grant enforcement on a package for a role?

    Hello

    Roles do not count inside stored procedures. So that bar_user to foo_user.foo_package of references within a stored procedure, EXECUTE privileges on foo_user.foo_package must be granted directly to the bar_user (or PUBLIC), and not only a role that bar_user has.

  • Why I can't grant execute on a directory?

    Why I can't grant run in a directory?

    I realized the following:

    Connect as SYS

    Prove that the oracle directory exists SELECT * from all_directories WHERE the directory_name = "nom_repertoire";

    GRANT EXECUTE ON nom_repertoire TO role-name DIRECTORY.

    The following documentation to the following address says I can grant to run:

    http://www.morganslibrary.org/reference/directories.html

    And yet when I realized the administrator to do and when I query the database to see if he did, it shows me that he has done:
    GRANTOR                        GRANTEE                        TABLE_SCHEMA                   TABLE_NAME                     PRIVILEGE                                GRANTABLE HIERARCHY 
    ------------------------------ ------------------------------ ------------------------------ ------------------------------ ---------------------------------------- --------- --------- 
    SYSTEM                         role_name                    SYS                            dir_name                     EXECUTE                                  NO        NO        
    SYSTEM                         role_name                    SYS                            dir_name                     READ                                     NO        NO        
    SYSTEM                         role_name                    SYS                            dir_name                     WRITE                                    NO        NO        
    
    3 rows selected
    When I try in my environment of xe, it throws the error:
    Error starting at line 1 in command:
    GRANT EXECUTE ON DIRECTORY dir_name TO role_name
    Error report:
    SQL Error: ORA-22928: invalid privilege on directories
    22928. 00000 -  "invalid privilege on directories"
    *Cause:    An attempt was made to grant or revoke an invalid privilege on a
               directory.
    *Action:   Only CREATE, DELETE, READ and WRITE privileges can be granted or
               revoked on directories. Do not grant or revoke other privileges.
    What is going on?

    Benton

    Benton says:
    Why I can't grant run in a directory?

    Because you cannot, according to the 10 g documentation...

    http://download.Oracle.com/docs/CD/B19306_01/server.102/b14200/statements_9013.htm#BGEJEBCJ

    However, in 11g, it can be done...

    http://download.Oracle.com/docs/CD/E11882_01/server.112/e17118/statements_9013.htm#BGBCIIEG

  • Grant execute on a package in another schema of users

    I need the ability to grant enforcement on a package in another schema of users...

    i.e. User_1 a Package pkg_package1

    User_2 should be able to grant execute on user_1.pkg_package1 to other users.

    I know you can give any procedure (I think) to user_2 and - it must be able to do.

    The problem is - I don't want user_2 can grant execute on any procedure in the database - just a diagram of user_1.

    Is there a way to do this?

    Hello

    FOT individual packages, you can tell

    GRANT   EXECUTE  ON pkg_package1
    TO      user2
    WITH GRANT OPTION;
    

    Alternatively, you can write a procedure in the schema of user_1 which grants privileges and give privileges to EXECUTE user_2 on the procedure.

  • May not grant execute on UTL_FILE even user with the DBA role

    Hi all

    I have a problem - I can not grant execute on UTL_FILE to < some_user >, even if I am logged in as a user with the DBA role.
    grant execute on UTL_FILE to seesat_stg;
    ORA-00942: table or view does not exist

    Is the synonym PUBLIC:
    select owner, object_name, object_type from all_objects where object_name = 'UTL_FILE'
    Returns:
    SYS          UTL_FILE     PACKAGE
    SYS          UTL_FILE     PACKAGE BODY
    PUBLIC          UTL_FILE     SYNONYM
    FLOWS_030100     UTL_FILE     SYNONYM
    Any ideas what I am doing wrong? It's about Oracle XE.

    It works if you open a session as SYS?

    I suspect that your user with the DBA role not really has the right to grant permissions execute on UTL_FILE.

  • Grant Exception offline process fails - DC Acrobat pro continuous track / Customization Wizard 15.0.16.20039

    Scenario:

    We would like to change the Acrobat Pro DC classic track to track continuous.

    I've already prepared the AIP , including patches, but I can't make a new STD with the Customization Wizard (Wizard-Version 15.016.20039)

    Meanwhile I tried this on Windows 7 and Windows 10 times with different results in the log file , but both will fail, however.

    The instaler in our in the license portal was a classic DC Acrobat installer.

    Even if I try to use the MST file existing conventional track (made with an old Assistant 15.07) there is no chance to grant an exception again offline.

    Problem:

    And that's the point, I can still deploy the classic Adobe follow with the MST file flawlessly, but fail to deploy continuous track because the installation program stops to enter a valid serial number.

    Issues related to the:

    If it is not allowed to go to the track from classic to continue with the same serial number?

    Why the wizard maintains not to create a new exception offline while he was working for an older version of (Acrobat DC and Assistant)

    How to solve this problem?

    Logifle Windows 7

    02/09/16 16:27:13:547 | [INFO] |  |  |  | Adobe PRTK |  |  | 7104 | __OOBELIB_LOG_FILE__
    02/09/16 16:27:13:548 | [INFO] |  |  |  | Adobe PRTK |  |  | 7104 | START the Adobe PRTK tool *.
    02/09/16 16:27:13:548 | [INFO] |  |  |  | Adobe PRTK |  |  | 7104 | Adobe called PRTK tool VolumeSerialize
    02/09/16 16:27:13:549 | [ERROR] |  |  |  | Adobe PRTK |  |  | 7104 | C:\Users\heinz\AppData\Local\Temp\CusA3EB1100
    02/09/16 16:27:13:550 | [INFO] |  |  |  | Adobe PRTK |  |  | 7104 | creation C:\Users\heinz\AppData\Local\Temp\CusA3EB1100\prov.xml
    02/09/16 16:27:13:551 | [INFO] |  |  |  | OOBELib |  |  | 7104 | OOBELib Session begins *.
    02/09/16 16:27:13:551 | [INFO] |  |  |  | OOBELib |  |  | 7104 | Version 9.0.0.301,7.0

    02/09/16 16:27:13:551 | [INFO] |  |  |  | PCDService |  |  | 7104 | Service of PCD in non threaded mode
    02/09/16 16:27:13:552 | [INFO] |  |  |  | DispatchClientLib |  |  | 7104 | Dispatch table of path: C:\Users\heinz\AppData\Local\Temp\CusA3EB.tmp\dispatchtable.xml
    02/09/16 16:27:13:553 | [INFO] |  |  |  | DispatchClientLib |  |  | 7104 | (re) load Local Dispatch Table-[0] status.
    02/09/16 16:27:13:553 | [INFO] |  |  |  | DispatchClientLib |  |  | 7104 | Scope: [2].
    02/09/16 16:27:13:554 | [INFO] |  |  |  | DispatchClientLib |  |  | 7104 | Scope of setting for GM
    02/09/16 16:27:13:792 | [ERROR] |  |  |  | OPMWrapper |  |  | 7104 | A failed by getting the value of key in OPMGetValueForKey
    02/09/16 16:27:13:792 | [INFO] |  |  |  | OOBELib |  |  | 7104 | Failed to get the user name for Proxy in OPM DB
    02/09/16 16:27:13:792 | [INFO] |  |  |  | AXFBLicensing |  |  | 7104 | Unable to load axlibv7.dll, try again
    02/09/16 16:27:13:792 | [INFO] |  |  |  | AXFBLicensing |  |  | 7104 | Unable to load axlibv7.dll, try again with axlib in ACF
    02/09/16 16:27:13:893 | [INFO] |  |  |  | AXFBLicensing |  |  | 7104 | All function pointers managed to recover
    02/09/16 16:27:13:893 | [INFO] |  |  |  | OOBELib |  |  | 7104 | Received Params for posting online: Driver: {AcrobatCont-12-Win-GM, calling V7: 3
    02/09/16 16:27:13:893 | [INFO] |  |  |  | OOBELib |  |  | 7104 | receipt LEID: V7 {} AcrobatCont-12-Win-GM
    02/09/16 16:27:13:893 | [INFO] |  |  |  | OOBELib |  |  | 7104 | Support for locale: all THE
    02/09/16 16:27:13:893 | [INFO] |  |  |  | OOBELib |  |  | 7796 | OOBELib ValidateSerialOnline
    02/09/16 16:27:13:893 | [INFO] |  |  |  | DispatchClientLib |  |  | 7796 | Scope: [2].
    02/09/16 16:27:13:893 | [INFO] |  |  |  | DispatchClientLib |  |  | 7796 | Scope of setting for GM
    02/09/16 16:27:13:893 | [INFO] |  |  |  | OOBELib |  |  | 7796 | Validation using the driver LEID: V7 {} AcrobatCont-12-Win-GM, App LEID: white >, SN: 970787043745062042938331
    02/09/16 16:27:13:902 | [ERROR] |  |  |  | OOBELib |  |  | 7796 | Unable to get the proxy by default system in setProxyCredentialsForIALSession
    02/09/16 16:27:13:902 | [INFO] |  |  |  | OOBELib |  |  | 7796 | Unable to set the credentials of proxy for a session during the serial number validation
    02/09/16 16:27:13:903 | [INFO] |  |  |  | OOBELib |  |  | 7796 | IALClient IAL_SetCaller-[0] took-[0.00] ms.
    02/09/16 16:27:13:903 | [INFO] |  |  |  | DispatchClientLib |  |  | 7796 | Endpoint asked: [AES]
    02/09/16 16:27:13:903 | [INFO] |  |  |  | DispatchClientLib |  |  | 7796 | Length of the URL: [51]
    02/09/16 16:27:13:903 | [INFO] |  |  |  | DispatchClientLib |  |  | 7796 | Return of getEndpointAddr: [0]
    02/09/16 16:27:13:903 | [INFO] |  |  |  | DispatchClientLib |  |  | 7796 | Endpoint asked: [AES]
    02/09/16 16:27:13:903 | [INFO] |  |  |  | DispatchClientLib |  |  | 7796 | Length of the URL: [51]
    02/09/16 16:27:13:903 | [INFO] |  |  |  | DispatchClientLib |  |  | 7796 | URL found [https://lm.licenses.adobe.com/aes/aes/v1/serialInfo]
    02/09/16 16:27:13:903 | [INFO] |  |  |  | DispatchClientLib |  |  | 7796 | Return of getEndpointAddr: [0]
    02/09/16 16:27:13:913 | [INFO] |  |  |  | OOBELib |  |  | 7796 | HTTPCommunicationAgent::processMessage is https://lm.licenses.adobe.com/aes/aes/v1/serialInfo (= extURL)
    02/09/16 16:27:15:009 | [INFO] |  |  |  | OOBELib |  |  | 6516. The request HTTP 200 status code.
    02/09/16 16:27:15:009 | [INFO] |  |  |  | OOBELib |  |  | 7796 | HTTPCommunicationAgent - Return Code: [0] size [213] response catch-[1096.57] time ms.
    02/09/16 16:27:15:009 | [ERROR] |  |  |  | OOBELib |  |  | 7796 | Has received the server error-[16].
    02/09/16 16:27:15:009 | [ERROR] |  |  |  | OOBELib |  |  | 7796 | ErrDesc of the server: no LEID in common for serial number pilot leid combination...
    02/09/16 16:27:15:010 | [INFO] |  |  |  | OOBELib |  |  | 7796 | Validate the status-[528] series took-[1106.48] ms.
    02/09/16 16:27:15:010 | [INFO] |  |  |  | OOBELib |  |  | 7796 | IALClient IAL_SetCaller-[0] took-[0.00] ms.
    02/09/16 16:27:15:010 | [ERROR] |  |  |  | OOBELib |  |  | 7796 | OOBELib IAL common VSN found LEID
    02/09/16 16:27:15:010 | [ERROR] |  |  |  | OOBELib |  |  | 7796 | OOBELib IAL ValidateSerial call failed: 528
    02/09/16 16:27:15:010 | [ERROR] |  |  |  | OOBELib |  |  | 7796 | Combining Driver/ALL scenario SNs off line/invalid
    02/09/16 16:27:15:010 | [ERROR] |  |  |  | OOBELib |  |  | 7796 | Valid SN for the AAMEE mode
    02/09/16 16:27:15:010 | [INFO] |  |  |  | OOBELib |  |  | 7796 | OOBELib stat = 257
    02/09/16 16:27:15:895 | [ERROR] |  |  |  | Adobe PRTK |  |  | 7104 | Impossible to validate the serial number

    02/09/16 16:27:15:895 | [INFO] |  |  |  | Adobe PRTK |  |  | 7104 | Return code 14
    02/09/16 16:27:15:895 | [INFO] |  |  |  | Adobe PRTK |  |  | 7104 | Adobe PRTK tool END *.
    02/09/16 16:27:19:926 | [INFO] |  |  |  | Adobe PRTK |  |  | 6608 | START the Adobe PRTK tool *.
    02/09/16 16:27:19:926 | [INFO] |  |  |  | Adobe PRTK |  |  | 6608 | Adobe called PRTK tool VolumeSerialize
    02/09/16 16:27:19:927 | [ERROR] |  |  |  | Adobe PRTK |  |  | 6608 | C:\Users\heinz\AppData\Local\Temp\CusBD211100
    02/09/16 16:27:19:927 | [INFO] |  |  |  | Adobe PRTK |  |  | 6608 | creation C:\Users\heinz\AppData\Local\Temp\CusBD211100\prov.xml
    02/09/16 16:27:19:928 | [INFO] |  |  |  | OOBELib |  |  | 6608 | OOBELib Session begins *.
    02/09/16 16:27:19:928 | [INFO] |  |  |  | OOBELib |  |  | 6608 | Version 9.0.0.301,7.0

    02/09/16 16:27:19:928 | [INFO] |  |  |  | PCDService |  |  | 6608 | Service of PCD in non threaded mode
    02/09/16 16:27:19:929 | [INFO] |  |  |  | DispatchClientLib |  |  | 6608 | Dispatch table of path: C:\Users\heinz\AppData\Local\Temp\CusBD21.tmp\dispatchtable.xml
    02/09/16 16:27:19:930 | [INFO] |  |  |  | DispatchClientLib |  |  | 6608 | (re) load Local Dispatch Table-[0] status.
    02/09/16 16:27:19:930 | [INFO] |  |  |  | DispatchClientLib |  |  | 6608 | Scope: [2].
    02/09/16 16:27:19:931 | [INFO] |  |  |  | DispatchClientLib |  |  | 6608 | Scope of setting for GM
    02/09/16 16:27:19:969 | [ERROR] |  |  |  | OPMWrapper |  |  | 6608 | A failed by getting the value of key in OPMGetValueForKey
    02/09/16 16:27:19:969 | [INFO] |  |  |  | OOBELib |  |  | 6608 | Failed to get the user name for Proxy in OPM DB
    02/09/16 16:27:19:969 | [INFO] |  |  |  | AXFBLicensing |  |  | 6608 | Unable to load axlibv7.dll, try again
    02/09/16 16:27:19:969 | [INFO] |  |  |  | AXFBLicensing |  |  | 6608 | Unable to load axlibv7.dll, try again with axlib in ACF
    02/09/16 16:27:19:970 | [INFO] |  |  |  | AXFBLicensing |  |  | 6608 | All function pointers managed to recover
    02/09/16 16:27:19:970 | [INFO] |  |  |  | OOBELib |  |  | 6608 | Received Params for posting online: Driver: {AcrobatCont-12-Win-GM, calling V7: 3
    02/09/16 16:27:19:970 | [INFO] |  |  |  | OOBELib |  |  | 6608 | receipt LEID: V7 {} AcrobatCont-12-Win-GM
    02/09/16 16:27:19:970 | [INFO] |  |  |  | OOBELib |  |  | 6608 | Support for locale: all THE
    02/09/16 16:27:19:970 | [INFO] |  |  |  | OOBELib |  |  | 5612. OOBELib ValidateSerialOnline
    02/09/16 16:27:19:971 | [INFO] |  |  |  | DispatchClientLib |  |  | 5612. Scope: [2].
    02/09/16 16:27:19:971 | [INFO] |  |  |  | DispatchClientLib |  |  | 5612. Scope of setting for GM
    02/09/16 16:27:19:971 | [INFO] |  |  |  | OOBELib |  |  | 5612. Validation using the driver LEID: V7 {} AcrobatCont-12-Win-GM, App LEID: white >, SN: 970787043745062042938331
    02/09/16 16:27:19:979 | [ERROR] |  |  |  | OOBELib |  |  | 5612. Unable to get the proxy by default system in setProxyCredentialsForIALSession
    02/09/16 16:27:19:979 | [INFO] |  |  |  | OOBELib |  |  | 5612. Unable to set the credentials of proxy for a session during the serial number validation
    02/09/16 16:27:19:979 | [INFO] |  |  |  | OOBELib |  |  | 5612. IALClient IAL_SetCaller-[0] took-[0.00] ms.
    02/09/16 16:27:19:980 | [INFO] |  |  |  | DispatchClientLib |  |  | 5612. Endpoint asked: [AES]
    02/09/16 16:27:19:980 | [INFO] |  |  |  | DispatchClientLib |  |  | 5612. Length of the URL: [51]
    02/09/16 16:27:19:980 | [INFO] |  |  |  | DispatchClientLib |  |  | 5612. Return of getEndpointAddr: [0]
    02/09/16 16:27:19:980 | [INFO] |  |  |  | DispatchClientLib |  |  | 5612. Endpoint asked: [AES]
    02/09/16 16:27:19:981 | [INFO] |  |  |  | DispatchClientLib |  |  | 5612. Length of the URL: [51]
    02/09/16 16:27:19:981 | [INFO] |  |  |  | DispatchClientLib |  |  | 5612. URL found [https://lm.licenses.adobe.com/aes/aes/v1/serialInfo]
    02/09/16 16:27:19:981 | [INFO] |  |  |  | DispatchClientLib |  |  | 5612. Return of getEndpointAddr: [0]
    02/09/16 16:27:19:985 | [INFO] |  |  |  | OOBELib |  |  | 5612. HTTPCommunicationAgent::processMessage is https://lm.licenses.adobe.com/aes/aes/v1/serialInfo (= extURL)
    02/09/16 16:27:21:133 | [INFO] |  |  |  | OOBELib |  |  | 6536 | The request HTTP 200 status code.
    02/09/16 16:27:21:133 | [INFO] |  |  |  | OOBELib |  |  | 5612. HTTPCommunicationAgent - Return Code: [0] size [213] response catch-[1148.80] time ms.
    02/09/16 16:27:21:134 | [ERROR] |  |  |  | OOBELib |  |  | 5612. Has received the server error-[16].
    02/09/16 16:27:21:134 | [ERROR] |  |  |  | OOBELib |  |  | 5612. ErrDesc of the server: no LEID in common for serial number pilot leid combination...
    02/09/16 16:27:21:134 | [INFO] |  |  |  | OOBELib |  |  | 5612. Validate the status-[528] series took-[1154.13] ms.
    02/09/16 16:27:21:134 | [INFO] |  |  |  | OOBELib |  |  | 5612. IALClient IAL_SetCaller-[0] took-[0.00] ms.
    02/09/16 16:27:21:134 | [ERROR] |  |  |  | OOBELib |  |  | 5612. OOBELib IAL common VSN found LEID
    02/09/16 16:27:21:134 | [ERROR] |  |  |  | OOBELib |  |  | 5612. OOBELib IAL ValidateSerial call failed: 528
    02/09/16 16:27:21:134 | [ERROR] |  |  |  | OOBELib |  |  | 5612. Combining Driver/ALL scenario SNs off line/invalid
    02/09/16 16:27:21:134 | [ERROR] |  |  |  | OOBELib |  |  | 5612. Valid SN for the AAMEE mode
    02/09/16 16:27:21:134 | [INFO] |  |  |  | OOBELib |  |  | 5612. OOBELib stat = 257
    02/09/16 16:27:21:973 | [ERROR] |  |  |  | Adobe PRTK |  |  | 6608 | Impossible to validate the serial number

    02/09/16 16:27:21:973 | [INFO] |  |  |  | Adobe PRTK |  |  | 6608 | Return code 14
    02/09/16 16:27:21:973 | [INFO] |  |  |  | Adobe PRTK |  |  | 6608 | Adobe PRTK tool END *.

    Windows 10 log file (1607 / 1511)

    02/09/16 16:16:55:986 | [INFO] |  |  |  | Adobe PRTK |  |  | 6068. __OOBELIB_LOG_FILE__
    02/09/16 16:16:55:986 | [INFO] |  |  |  | Adobe PRTK |  |  | 6068. START the Adobe PRTK tool *.
    02/09/16 16:16:55:986 | [INFO] |  |  |  | Adobe PRTK |  |  | 6068. Adobe called PRTK tool VolumeSerialize
    02/09/16 16:16:55:986 | [ERROR] |  |  |  | Adobe PRTK |  |  | 6068. C:\Users\kheadmin\AppData\Local\Temp\Cus71181100
    02/09/16 16:16:55:986 | [INFO] |  |  |  | Adobe PRTK |  |  | 6068. creation C:\Users\kheadmin\AppData\Local\Temp\Cus71181100\prov.xml
    02/09/16 16:16:56:002 | [INFO] |  |  |  | OOBELib |  |  | 6068. OOBELib Session begins *.
    02/09/16 16:16:56:002 | [INFO] |  |  |  | OOBELib |  |  | 6068. Version 9.0.0.301,7.0

    02/09/16 16:16:56:002 | [INFO] |  |  |  | PCDService |  |  | 6068. Service of PCD in non threaded mode
    02/09/16 16:16:56:002 | [INFO] |  |  |  | DispatchClientLib |  |  | 6068. Dispatch table of path: C:\Users\kheadmin\AppData\Local\Temp\Cus7118.tmp\dispatchtable.xml
    02/09/16 16:16:56:002 | [INFO] |  |  |  | DispatchClientLib |  |  | 6068. (re) load Local Dispatch Table-[0] status.
    02/09/16 16:16:56:002 | [INFO] |  |  |  | DispatchClientLib |  |  | 6068. Scope: [2].
    02/09/16 16:16:56:002 | [INFO] |  |  |  | DispatchClientLib |  |  | 6068. Scope of setting for GM
    02/09/16 16:16:56:518 | [ERROR] |  |  |  | OPMWrapper |  |  | 6068. A failed by getting the value of key in OPMGetValueForKey
    02/09/16 16:16:56:518 | [INFO] |  |  |  | OOBELib |  |  | 6068. Failed to get the user name for Proxy in OPM DB
    02/09/16 16:16:56:518 | [INFO] |  |  |  | AXFBLicensing |  |  | 6068. Unable to load axlibv7.dll, try again
    02/09/16 16:16:56:518 | [INFO] |  |  |  | AXFBLicensing |  |  | 6068. Unable to load axlibv7.dll, try again with axlib in ACF
    02/09/16 16:16:56:518 | [INFO] |  |  |  | AXFBLicensing |  |  | 6068. Could not load axlibv7.dll of ACF
    02/09/16 16:16:56:518 | [INFO] |  |  |  | OOBELib |  |  | 6068. Received Params for posting online: Driver: {AcrobatCont-12-Win-GM, calling V7: 3
    02/09/16 16:16:56:518 | [INFO] |  |  |  | OOBELib |  |  | 6068. receipt LEID: V7 {} AcrobatCont-12-Win-GM
    02/09/16 16:16:56:518 | [INFO] |  |  |  | OOBELib |  |  | 6068. Support for locale: all THE
    02/09/16 16:16:56:518 | [INFO] |  |  |  | OOBELib |  |  | 9680. OOBELib ValidateSerialOnline
    02/09/16 16:16:56:518 | [INFO] |  |  |  | DispatchClientLib |  |  | 9680. Scope: [2].
    02/09/16 16:16:56:518 | [INFO] |  |  |  | DispatchClientLib |  |  | 9680. Scope of setting for GM
    02/09/16 16:16:56:518 | [INFO] |  |  |  | OOBELib |  |  | 9680. Validation using the driver LEID: V7 {} AcrobatCont-12-Win-GM, App LEID: white >, SN: 970787043745062042938331
    02/09/16 16:16:56:533 | [ERROR] |  |  |  | OOBELib |  |  | 9680. Unable to get the proxy by default system in setProxyCredentialsForIALSession
    02/09/16 16:16:56:533 | [INFO] |  |  |  | OOBELib |  |  | 9680. Unable to set the credentials of proxy for a session during the serial number validation
    02/09/16 16:16:56:533 | [INFO] |  |  |  | OOBELib |  |  | 9680. IALClient IAL_SetCaller-[0] took-[0.00] ms.
    02/09/16 16:16:56:533 | [INFO] |  |  |  | DispatchClientLib |  |  | 9680. Endpoint asked: [AES]
    02/09/16 16:16:56:533 | [INFO] |  |  |  | DispatchClientLib |  |  | 9680. Length of the URL: [51]
    02/09/16 16:16:56:533 | [INFO] |  |  |  | DispatchClientLib |  |  | 9680. Return of getEndpointAddr: [0]
    02/09/16 16:16:56:533 | [INFO] |  |  |  | DispatchClientLib |  |  | 9680. Endpoint asked: [AES]
    02/09/16 16:16:56:533 | [INFO] |  |  |  | DispatchClientLib |  |  | 9680. Length of the URL: [51]
    02/09/16 16:16:56:533 | [INFO] |  |  |  | DispatchClientLib |  |  | 9680. URL found [https://lm.licenses.adobe.com/aes/aes/v1/serialInfo]
    02/09/16 16:16:56:533 | [INFO] |  |  |  | DispatchClientLib |  |  | 9680. Return of getEndpointAddr: [0]
    02/09/16 16:16:56:533 | [INFO] |  |  |  | OOBELib |  |  | 9680. HTTPCommunicationAgent::processMessage is https://lm.licenses.adobe.com/aes/aes/v1/serialInfo (= extURL)
    02/09/16 16:16:57:643 | [INFO] |  |  |  | OOBELib |  |  | 9632. The request HTTP 200 status code.
    02/09/16 16:16:57:643 | [INFO] |  |  |  | OOBELib |  |  | 9680. HTTPCommunicationAgent - Return Code: [0] size [213] response catch-[1109.29] time ms.
    02/09/16 16:16:57:643 | [ERROR] |  |  |  | OOBELib |  |  | 9680. Has received the server error-[16].
    02/09/16 16:16:57:643 | [ERROR] |  |  |  | OOBELib |  |  | 9680. ErrDesc of the server: no LEID in common for serial number pilot leid combination...
    02/09/16 16:16:57:643 | [INFO] |  |  |  | OOBELib |  |  | 9680. Validate the status-[528] series took-[1117.29] ms.
    02/09/16 16:16:57:643 | [INFO] |  |  |  | OOBELib |  |  | 9680. IALClient IAL_SetCaller-[0] took-[0.00] ms.
    02/09/16 16:16:57:643 | [ERROR] |  |  |  | OOBELib |  |  | 9680. OOBELib IAL common VSN found LEID
    02/09/16 16:16:57:643 | [ERROR] |  |  |  | OOBELib |  |  | 9680. OOBELib IAL ValidateSerial call failed: 528
    02/09/16 16:16:57:643 | [ERROR] |  |  |  | OOBELib |  |  | 9680. Combining Driver/ALL scenario SNs off line/invalid
    02/09/16 16:16:57:643 | [ERROR] |  |  |  | OOBELib |  |  | 9680. Valid SN for the AAMEE mode
    02/09/16 16:16:57:643 | [INFO] |  |  |  | OOBELib |  |  | 9680. OOBELib stat = 257
    02/09/16 16:16:58:537 | [ERROR] |  |  |  | Adobe PRTK |  |  | 6068. Impossible to validate the serial number

    02/09/16 16:16:58:537 | [INFO] |  |  |  | Adobe PRTK |  |  | 6068. Return code 14
    02/09/16 16:16:58:537 | [INFO] |  |  |  | Adobe PRTK |  |  | 6068. Adobe PRTK tool END *.

    In the order of Q and R:

    1. isn't is it possible to go to the track from classic to continue with the same serial number?

    Response: No, it is not allowed.  They are two different applications (classic version and build ongoing) builds and they need different serial numbers.

    2. why the wizard maintains not to create a new exception offline while he was working for an older version of (Acrobat DC and Assistant)

    Response:  Because the generation continues app that you are trying to grant the exception with the Adobe Customization Wizard DC offline is powered evil (aka version of classic construction) type of serial number for a continuous build version.

    3. How do I fix this?

    Response:  In order to get an exception for the continuous offline, man you will need to obtain a continuous series build number and then follow the procedure to get it with the Adobe Customization Wizard DC.

  • Grant execute for sequence

    Is it possible to give Grant statement for the sequence execution?

    Hello

    You want to SELECT , not EXECUTE privileges:

    GRANT  SELECT  ON seq_x TO user_y;
    

    EXECUTION privileges apply only to the types and stored procedures. (I know, it's not intuitive).

  • grant execute on procedures problem

    Oracle 10.2.0.4 on Windows 2003. I run granted on GENERAL for a developer. When the developer connection, it remains impossible to perform these procedures. Why is this? What Miss me?
    Thanks for any help.
    S.

    What did I miss?

    GRANT CREATE PROCEDURE FOR USERA

  • script executed manually, but failing in Cron

    Hi all

    Nice day..

    Some scripts does not work, I ran the manually and they work but when put in cron, they will not.

    I checked the password also, it has not expired.
    What could be the reason for this...

    database is on the oracle 9.2 version.


    -Karan

    I use below syntax to run cron jobs. Here ' / tmp/rman_hot_backup_unolpdev.log ' display error messages that could report the problem.

    # Calendar RMAN backup hot - UNOLPDEV
    00 07 26 10 * /usr/local/oracle/admin/UNOLTDEV/scripts/rman_hot_backup.sh UNOLPDEV > /tmp/rman_hot_backup_unolpdev.log 2 > & 1

    Also include '-vx' option at the beginning of your unix script. It really helps debug the code.

    #! / usr/bin/ksh - vx

    Hope that helps!

    Kind regards
    Naren

  • Grant permission to select the function but not executed in a PL/SQL block

    Hello.

    I know that there are only two permissions on procedures/functions - RUN and DEBUG.

    But I want to grant EXECUTE permissions for a user so that the user can Select the function to double or to any other request, but not to run(to prevent the user to trigger the update of LMD - insertion, etc.) inside a BEGIN-END block.

    I know that we can revoke access to tables etc. But that access has to give. The user must be able to perform the DML operation, but just not through a function.

    Can someone please help?

    I know that there are only two permissions on procedures/functions - RUN and DEBUG.

    Fix - so give one or both of those who depend on your use case.

    
    But I want to grant the EXECUTE permission to a user in such a way that the user can select the function using dual or any other query but not execute( to prevent the user from firing DMLs - Insert, update etc) inside any BEGIN-END block.
     
    

    You already know that there is NO "select" privileges for functions. a query such as "select the function of double" RUNS the function. That's all what you can do with the functions is execute them.

    I know that we can revoke access to tables etc. But that access has to be given. The user should be able to do perform DML operation, but just not through a function.
    

    Then revoke execute on the service. Then the user cannot run the service either directly or in the context of a dml statement.

  • EXECUTE privilege is not granted on the following SYS packages: UTL_FILE

    Hi brothers and sisters.

    Hope that you are well. I installed Oracle Developer Suite 10 g on Windows 7 successfully and that it works correctly.

    I created a new user with the following script:

    Grant
    resource,
    connect,
    create session,
    create the table,
    create view.
    create sequences,
    create a synonym,
    create database link,
    create the role
    Create the procedure
    to orcdesign;

    And then he GRANTS the following privileges:

    Grant execute on dbms_lock to orcdesign;
    Grant execute on dbms_pipe to orcdesign;
    Grant execute on dbms_rls to orcdesign;
    Grant select on dba_rollback_segs to orcdesign;
    Grant select on dba_segments to orcdesign;
    Grant select on parameter v_$ orcdesign;
    Grant select on sys.v_$ nls_parameters to orcdesign with the option grant.

    When I connect to the repository Administration utility, click on install and then start button in order to install an instance of repository, an error pops up with the message: ' EXECUTE privilege is not granted on the following SYS packages: UTL_FILE'.

    Please help me what should I do to be able to successfully run Oracle Designer?

    Noor

    Noor ul Huda wrote:
    When I connect to the repository Administration utility, click on install and then start button in order to install an instance of repository, an error pops up with the message: ' EXECUTE privilege is not granted on the following SYS packages: UTL_FILE'.

    Hi, Noor
    As salamu Asalam

    Try this SQL

    GRANT EXECUTE ON SYS.UTL_FILE TO orcdesign WITH GRANT OPTION;
    

    I hope this works...

    If anyone has the answer is useful or appropriate mark it.

  • Store functions/procedures in BI Publisher - failed to load XML

    Hello world

    I am trying to call a function to return a set of rows with BI Publisher. When I want to look at the data on the 'Data' tab, I get "Failed to load XML".

    Here are the steps I took:

    Step 1: created a type

    create type numset_t as table of number;
    

    Step 2: Creating the function

    create or replace function f1(x number) return numset_t pipelined is
    begin
    for i in 1..x loop
    pipe row(i);
    end loop;
    return;
    end;
    

    Step 3: Under "Data sets", I created a SQL query with the following options/code

    Code:

    select * from table(f1(3))
    

    Options: Data Source - my selected schema

    SQL type: Non-standard SQL

    Name of tag line: test

    How can I check my data using the button "data"?

    Thank you

    Here's the steps/documentation on how to call a function from BI Publisher:

    #1) make sure you use SYS_REFCURSOR.

    (#2) create your function as below:

    CREATE OR REPLACE FUNCTION FUNC1 (P1 VARCHAR2) RETURN SYS_REFCURSOR IS
    
       XDO_CURSOR SYS_REFCURSOR;
    BEGIN
     IF P1 = 'USA' THEN
     OPEN XDO_CURSOR FOR
     'SELECT  TO_CHAR(SYSDATE,''MM-DD-YYYY'') AS CURRENT_DATE, X.STATE FROM SchemaName.XX1 X WHERE X.ID IN (100,200,400)';
     RETURN XDO_CURSOR;
     ELSE
     OPEN XDO_CURSOR FOR
     'SELECT  TO_CHAR(SYSDATE,''MM-DD-YYYY'') AS CURRENT_DATE, X.STATE FROM SchemaName.XX1 X WHERE X.ID IN (300,500,600)';
     RETURN XDO_CURSOR;
     END IF ;
    END FUNC1;
    

    (#3) connect as system and grant execute the user to BI

    GRANT EXECUTE ON SchemaName.FUNC1 TO BI_USER;
    

    (#4) under the data model, create a data set with the following (as for example):

    BI requires the variable xdo_cursor as the output, so do not change the name of the variable.

    DECLARE
       type refcursor is REF CURSOR;
       xdo_cursor refcursor;
    BEGIN
       :xdo_cursor := SchemaName.func1(:P1);
    END;
    

    Type of SQL procedure call =

    Thank you. I hope that everything that troubleshoot you.

  • Dbms_Scheduler.Set_Scheduler_Attribute fails for email_server_credential

    I use an Oracle 11 g XE DB (11.2.0.2.0). I want to set up a job to send e-mail messages if the status of the job change.

    I use the following procedure:

    Procedure Config_E_Mail is

    V_Server Varchar2 (50): = "smtp.mail.com:587";

    V_Sender Varchar2 (70): = ' [email protected] '; 

    V_Recipients Varchar2 (100): = ' [email protected] ';

    V_Events Varchar2 (200): = "job_failed, job_broken, job_stopped, job_disabled;

    Begin

    Start

    Dbms_Scheduler.drop_Credential (Credential_Name = > 'my_cred12345', force = > true);

    exception

    while others then

    null;

    end;

    Dbms_Scheduler.Create_Credential (Credential_Name = > 'my_cred12345', username = > ' [email protected]", password = >"12345678 ");

    Dbms_Scheduler.Set_Scheduler_Attribute ("email_server_credential", "my_cred12345");  -Code fails on this line

    Dbms_Scheduler.Set_Scheduler_Attribute ('email_server', V_Server);

    Dbms_Scheduler.Set_Scheduler_Attribute ('email_sender', V_Sender);

    Dbms_Scheduler.Add_Job_Email_Notification

    (

    Job_Name = > P_Job_Name,

    Recipients = > V_Recipients,

    Events = > V_Events

    );

    End;

    Copy the following code compile OK. I give this user the following privileges:

    create jobs, PLANNER of MANAGING & SCHEDULER_ADMIN ROLE.

    It is, when running, the code does not work in the highlighted line (i.e. Dbms_Scheduler.Set_Scheduler_Attribute ('email_server_credential'...))

    Error is:

    ERROR on line 1:

    ORA-27486: insufficient privileges

    ORA-06512: at "SYS." DBMS_ISCHED', line 4609

    ORA-06512: at "SYS." DBMS_SCHEDULER', line 3245

    ORA-06512: at "PEGA.INT_CREATE_JOB", line 56

    ORA-06512: at "PEGA.INT_CREATE_JOB", line 73

    ORA-06512: at line 1

    Any help would be greatly appreciated.

    Well, I checked the documentation to this procedure, and here's what he says (in bold underlined):

    'email_server_credential':The schema and the name of the existing credentials of object which SYS has execute object privileges on. Default value is NULL . The user name and password stored in these credentials are used to authenticate with the e-mail server when sending notifications by e-mail.

    Then, do the following after you have created the credentials (after line DBMS_OUTPUT. PUT_LINE('50');):

    RUN IMMEDIATELY "GRANT EXECUTE ON cred_rohan_123 TO sys";

  • Silent install OEM 12 c fails

    I use a response file for installation in silent mode for 12.1.0.4 CC OEM but it fails in the next step:

    ..

    ..

    Successful installation

    Apply the patches required from time to time.

    2015-01-05_06-40-26-am: Configuration Wizard "Plugins Prerequisites Check" is underway.

    2015-01-05_06-40-42-am: Configuration Wizard "Plugins Prerequisites Check" succeeded.

    2015-01-05_06-40-42-am: Configuration Wizard "Repository Configuration" is underway.

    Call the EMSCHEMA MANAGER: CREATE

    Processing of command line...

    Repository creation utility - check the prerequisites

    Checking prerequisites Global

    Repository creation utility - check the prerequisites

    Verification of prerequisite components

    Repository creation utility - creating storage spaces

    Validation and the creation of storage spaces

    Repository creation utility - create

    Creating current repository.

    RCU - 6130:Action failed - RCU - 6134:Error then that he was trying to execute the action of JDBC.

    Repository creation utility: create - completion summary

    Information on the database:

    Connect descriptor: (DESCRIPTION = (ADDRESS_LIST = (ADDRESS = (PROTOCOL = TCP) (HOST = server-fqdn)(PORT=8192))) (CONNECT_DATA = (SID = ORA_SID)))

    Logged in as: SYS

    RCU Logfile: / local/grid/em_cloud3/who/sysman/log/schemamanager/m_010515_0640_AM/m_010515_0640_AM. CREATE/rcu.log

    Purpose of Checkpoint RCU: / opt/app/oracle/product/em_cloud3/who/sysman/log/schemamanager / / RCUCheckpointObj

    Of component schemas that you created:

    Status Logfile element

    Configuration of creation for the repository EM failure/local/grid/em_cloud3/who/sysman/log/schemamanager/m_010515_0640_AM/m_010515_0640_AM. CREATE/em_repos_config.log

    EM local/grid/em_cloud3/who/sysman/log/schemamanager/m_010515_0640_AM/m_010515_0640_AM repository Init Configuration success. CREATE/em_repos_init.log

    EM local/grid/em_cloud3/who/sysman/log/schemamanager/m_010515_0640_AM/m_010515_0640_AM repository shared success. CREATE/em_repos_common.log

    Repository creation utility - create: finished

    Check the logs of the repository Configuration Wizard to: / opt/app/oracle/product/em_cloud3/who/sysman/log/schemamanager

    The installation was successful, but some configuration wizards have been stranded or cancelled or skipped. ***

    Warning: the following configuration scripts must be run as user 'root '.

    /opt/app/Oracle/product/em_cloud3/OMS/allroot.sh

    ..

    ..

    Logfile says:

    ..

    ..

    function mgmt_dm_gen_ph_usa_wy_fh (RID varchar2, varchar2, varchar2 p_buff column_name)

    return varchar2;

    function mgmt_dm_scramble (RID varchar2, varchar2, varchar2 p_buff column_name)

    return varchar2;

    END DM_FMTLIB;

    ]

    java.sql.SQLException: ORA-01435: user does not exist

    ..

    ..

    I tried to uninstall and install and run the preliminary checks once more, but it's still the same problem.

    My DB is a SMALL DB on another server (no pre-creation) & watch users & the following tablespaces:

    Users:

    SYSMAN

    SYSMAN_RO

    Storage space:

    MGMT_TABLESPACE

    MGMT_ECM_DEPOT_TS

    MGMT_AD4J_TS

    Now when I try emctl status WHO he says "No attached host WHO".

    I will try all abandonment & re-creation of the repository by using the RepManager or y at - it something wrong with my installation:

    Here is my response file:

    RESPONSEFILE_VERSION = 2.2.1.0.0

    UNIX_GROUP_NAME = "dba".

    INVENTORY_LOCATION = "/ opt/app/oracle/product/oraInventory.

    SECURITY_UPDATES_VIA_MYORACLESUPPORT = FALSE

    DECLINE_SECURITY_UPDATES = TRUE

    ' MYORACLESUPPORT_USERNAME = ' [email protected] "" "

    MYORACLESUPPORT_PASSWORD = "password"

    INSTALL_UPDATES_SELECTION = 'skip '.

    STAGE_LOCATION = < unspecified value >

    MYORACLESUPPORT_USERNAME_FOR_SOFTWAREUPDATES = < unspecified value >

    MYORACLESUPPORT_PASSWORD_FOR_SOFTWAREUPDATES = < unspecified value >

    PROXY_USER = < unspecified value >

    PROXY_PWD = < unspecified value >

    Hote_proxy = < unspecified value >

    PROXY_PORT = < unspecified value >

    ORACLE_MIDDLEWARE_HOME_LOCATION = "/ opt/app/oracle/product/middleware.

    ORACLE_HOSTNAME = 'Server-full domain name.

    AGENT_BASE_DIR = "/ opt/app/oracle/product/agent12c.

    WLS_ADMIN_SERVER_USERNAME = "weblogic.

    WLS_ADMIN_SERVER_PASSWORD = "Passwd".

    WLS_ADMIN_SERVER_CONFIRM_PASSWORD = "Passwd".

    NODE_MANAGER_PASSWORD = "Passwd".

    NODE_MANAGER_CONFIRM_PASSWORD = "Passwd".

    ORACLE_INSTANCE_HOME_LOCATION = "/ opt/app/oracle/product/oem12chome.

    CONFIGURE_ORACLE_SOFTWARE_LIBRARY = true

    SOFTWARE_LIBRARY_LOCATION = "/ opt/app/oracle/product/oem12clib.

    DATABASE_HOSTNAME = "remote-server-FQDN name.

    LISTENER_PORT = "8192"

    SERVICENAME_OR_SID = "DB_SID".

    SYS_PASSWORD = "passwd".

    SYSMAN_PASSWORD = "Passwd".

    SYSMAN_CONFIRM_PASSWORD = "Passwd".

    DEPLOYMENT_SIZE = "SMALL".

    MANAGEMENT_TABLESPACE_LOCATION="/FS-path/databases/ORA_SID/Mgmt.dbf".

    CONFIGURATION_DATA_TABLESPACE_LOCATION="/FS-path/databases/ORA_SID/mgmt_ecm_depot1.dbf".

    JVM_DIAGNOSTICS_TABLESPACE_LOCATION="/FS-path/databases/ORA_SID/mgmt_deepdive.dbf".

    AGENT_REGISTRATION_PASSWORD = "Passwd".

    AGENT_REGISTRATION_CONFIRM_PASSWORD = "Passwd".

    STATIC_PORTS_FILE = < unspecified value >

    "FROM_LOCATION ="... / oms/Disk1/stage/products.xml ".

    DEINSTALL_LIST = {"Oracle.SYSMAN.Top.OMS", "12.1.0.4.0"}

    REMOVE_HOMES = < unspecified value >

    b_upgrade = false

    EM_INSTALL_TYPE = "NOSEED".

    CONFIGURATION_TYPE = "ADVANCED".

    TOPLEVEL_COMPONENT = {"Oracle.SYSMAN.Top.OMS", "12.1.0.4.0"}

    Note that:

    / opt/app/oracle/product/em_cloud3->/local/grid/em_cloud3

    / opt/app/oracle/product/em_agent3->/local/grid/em_agent3

    & software seem to install correctly.

    & I solved this error:

    java.sql.SQLException: ORA-06550: line 237, column 6:

    PLS-00905: SYSMAN object. EM_UPGSOLN_UTIL is not valid

    ORA-06550: line 237, column 3:

    PL/SQL: Statement ignored

    by:

    Grant execute on SYS. DBMS_XMLGEN to the PUBLIC;

    Grant execute on SYS. UTL_INADDR to the PUBLIC;

    (I tried to compile these packages using SYSMAN & figured subsidies).

    I have found no documentation suggesting that DBSNMP there & PUBLIC privileges explicitly above two. (rest is 11.2.0.3 DB & OEM s/w is 12.1.0.4). I'll close the message as it is solved now. Maybe it helps someone like me.

Maybe you are looking for