Error in Package DBMS_METADATA_UTIL unable to run expdp

Dear All,
My Database is 11gR2 on Linux.
While running expdp I got this error: UDE-00018: Data Pump client is incompatible with database version 11.2.0.1.0
While looking in the details I found that package DBMS_METADATA_UTIL has errors.
Error(362,16): PLS-00201: identifier 'SYS.KU$_SOURCE_LIST_T' must be declared
Error(376,16): PLS-00201: identifier 'SYS.KU$_SOURCE_T' must be declared
Error(402,16): PLS-00201: identifier 'SYS.KU$_AUDIT_LIST_T' must be declared
Error(411,16): PLS-00201: identifier 'SYS.KU$_AUDIT_DEFAULT_LIST_T' must be declared
I just want to re-create this package using the script files in rdbms/admin ... I just want to know which file i must execute to re-create this package. I tried dbmsmeta.sql but didnt work.
Thanks,
Imran

misterimran wrote:
Dear All,
My Database is 11gR2 on Linux.
While running expdp I got this error: UDE-00018: Data Pump client is incompatible with database version 11.2.0.1.0
While looking in the details I found that package DBMS_METADATA_UTIL has errors.
Error(362,16): PLS-00201: identifier 'SYS.KU$_SOURCE_LIST_T' must be declared
Error(376,16): PLS-00201: identifier 'SYS.KU$_SOURCE_T' must be declared
Error(402,16): PLS-00201: identifier 'SYS.KU$_AUDIT_LIST_T' must be declared
Error(411,16): PLS-00201: identifier 'SYS.KU$_AUDIT_DEFAULT_LIST_T' must be declared
I just want to re-create this package using the script files in rdbms/admin ... I just want to know which file i must execute to re-create this package. I tried dbmsmeta.sql but didnt work.
Thanks,
Imran
Hi,
It is $ORACLE_HOME/rdbms/admin/utlrp
Cheers

Similar Messages

  • FRM-41214: Unable ro run report while calling a report from a form in 9iDS

    Am in the process of migrating from Developer 6i client/server to Developer 9iDS on Windows 2000.
    I have read through the various postings on this issue & have made changes accordingly. I also referred to the white paper on the Forms/Reports integration.
    As I am trying to do a prototype, am compiling my forms/reports on my local machine & not on the apps. server.
    I installed a report server on my local machine as,
    rwserver -install 9irep
    I have defined this as a NT service and it is up & running & so is my OC4J instance.
    I have defined a reports object in my Form Builder & set Report Server=9irep,
    Destype=Cache,
    Execution mode=runtime
    Communication_mode=synchronous.
    I also removed the /security tag from the <report server>.conf file as suggested in the white paper. Also set the single sign-on to NO for the reports service.
    I have replaced my run_product with the run_report_object built-in as follows.
    Declare
    report_id      REPORT_OBJECT;
    report_status VARCHAR2(255);
    rep_job_id      VARCHAR2(255);
    Begin
    report_id := FIND_REPORT_OBJECT('KS'); --Created in form under node "Reports"
    SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_FILENAME,'C:\Kalpana\9i_Prototype\ISSMDLCUST.rdf');
    rep_job_id := RUN_REPORT_OBJECT(report_id);
    report_status := REPORT_OBJECT_STATUS(rep_job_id);
    WHILE report_status in ('RUNNING','OPENING_REPORT','ENQUEUED')
    LOOP
    report_status := REPORT_OBJECT_STATUS(rep_job_id);
    END LOOP;
    message(report_status); pause;
    IF report_status='FINISHED' THEN
    Web.Show_Document('http://houwdisndgd01:8888/reports/server/getjobid='
    ||rep_job_id||'?server=ks');
    END IF;
    End;
    I get an error message "FRM 41214: Unable to run report" right after the call to run_report_object.
    Can someone please tell me where am going wrong with my run_report_object built-in? (I also need help writing my web.show document to point it to my local machine/folders).
    Thanks
    Kalpana

    How I have implemented the same and works
    Local OC4J is running.
    I established a reports server "repserver90" as a service.
    I created a report named "C:\TMP\TMP\test_report.rdf"
    I created a form with a Reports object with properties:
    Name: "EMP"
    Filename: "C:\TMP\TMP\test_report.rdf"
    Execution mode "Batch"
    Communication mode "Sychronous"
    Report Destination Type "Cache"
    Report Destination Format "HTML"
    Report Server "repserver90"
    I call the report with the procedure:
    PROCEDURE TEST_REPORT IS
    repid REPORT_OBJECT;
    v_rep VARCHAR2(100);
    rep_status VARCHAR2(20);
    BEGIN
    repid := find_report_object('EMP');
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_EXECUTION_MODE,BATCH);
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_COMM_MODE,SYNCHRONOUS);
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESTYPE,CACHE);
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESFORMAT,'html');
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_SERVER,'repserver90');
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_OTHER,'paramform=no pdeptno='||:dept.deptno);
    v_rep := RUN_REPORT_OBJECT(repid);
    rep_status := REPORT_OBJECT_STATUS(v_rep);
    WHILE rep_status in ('RUNNING','OPENING_REPORT','ENQUEUED')
    LOOP
    rep_status := report_object_status(v_rep);
    END LOOP;
    IF rep_status = 'FINISHED' THEN
    /*Display report in the browser*/
    WEB.SHOW_DOCUMENT('http://localhost:8888/reports/rwservlet/getjobid'||substr(v_rep,instr(v_rep,'_',-1)+1)||'?'||'server=repserver90','_blank');
    ELSE
    message('Error when running report');
    END IF;
    END;
    Minas

  • DA0003: Exception CS, Unable to run the query execute

    Hi all,
    I try to use a stored procedure as data provider but i get this error
    DA0003: Exception CS, Unable to run the query execute
    I use BusObj Full Client 6.5 pointing to SQL2005.
    I choose stored procedure as data providers of a new report, then choose the Oledb connection to the database in which the sproc is saved (this sproc executes some queries, all on the same db). Then I fill in the parameter of the sproc and when i click OK I get this error.
    The sp works fine if executed from a query tool. Basically it queries BusObj Security Domain in order to get the documents a single user has linked (both enabled and disabled). It doesn't do nothing exceptionall except using some table variables... I tried also with this simple func:
    CREATE FUNCTION [dbo].[Yesterday] (@date int)
    RETURNS int AS BEGIN
       DECLARE @Yesterday int
       SET @yesterday = convert(varchar, DATEADD(dd, -1, convert(datetime, str(@date), 112) ), 112)
       RETURN(@Yesterday)
    END;
    But it returns the same error!
    I tried changing middleware to the DB from oleDB to ODBC but in this case it doesn't prompt me for parameters and when i click execute it fails saying the sproc expects a parameter...
    I have no idea of what the cause may be... Can anybody help please?

    Hi Alberto,
    Could you please test the following solutions to resolve the issue.
    Solution1:
    Test the issue by inserting the following parameter in .SBO file.
    <Parameter Name="Force SQLExecute">Always</Parameter> .
    Solution2
    Just put SET NOCOUNT OFF in the end of the stored procedure SQL.
    If the above doesnu2019t works then please try the following solution.
    Solution3
    Make the new connection from the scratch using ODBC connection and test the issue.
    I hope this will help you.
    Regards,
    Sarbhjeet Kaur

  • Error on upgrade from 3.2 to 4 [Unable to run page sentry in application 45

    Hi Folks,
    To upgrade from 3.2 to Apex 4, I logged-in as sys and ran
    apexins SYSAUX SYSAUX TEMP /i/
    After installation when I tried accessing apex in browser, I am getting following error message
    * ORA-06508: PL/SQL: could not find program unit being called*
    * Unable to run page sentry in application 4500.*
    * Return to application.*
    * Application Express 4.0.0.00.46*
    * Workspace: User: *
    * Language: en | Copyright © 1999, 2010, Oracle. All rights reserved.*
    This statement is returning INVALID status
    SELECT STATUS FROM DBA_REGISTRY
    WHERE COMP_ID = 'APEX'
    The log is showing errors
    Errors for PACKAGE BODY SYS.WWV_DBMS_SQL:
    LINE/COL ERROR
    218/5 PL/SQL: Statement ignored
    218/5 PLS-00306: wrong number or types of arguments in call to
    'PARSE_AS_USER'
    256/5 PL/SQL: Statement ignored
    256/5 PLS-00306: wrong number or types of arguments in call to
    'PARSE_AS_USER'
    574/6 PL/SQL: Statement ignored
    574/6 PLS-00306: wrong number or types of arguments in call to
    'PARSE_AS_USER'
    Can someone here guide me how to resolve this? Shall I reinstalled APEX 4 or rollback to 3.2 or do I need to run any other file.
    Thanks in advance
    Aali

    Hi.
    I have the same problem too.
    i found this:
    http://forums.oracle.com/forums/thread.jspa?messageID=4390780
    The problem is by the oracle version. (al least in my case)
    apex 4.0 needs 10.2.0.3 and i have 10.2.0.1
    I'm going to deinstall, upgrade 10g and reinstall...
    Edited by: Andres Vilallave on 02-jul-2010 11:36

  • Error while logging in  `ERR-10740 Unable to run custom post-auth process.'

    Hi there,
    I get the following error only with specific users; some can login, some can't. There is consistency is who receives this error.
    Error      ERR-10740 Unable to run custom post-auth process.
    the text of the "Post-Authentication Process" field in the my authentication schemes is as follows:
    begin
    bare_auth.session_init;
    end;
    The bare_auth package has no errors:
    select object_type, status
    from user_objects
    where object_name = 'BARE_AUTH';
    OBJECT_TYPE STATUS
    PACKAGE VALID
    PACKAGE BODY VALID
    2 rows selected
    The error message isn't very helpful and I can't see why Apex can't run it. Why is Apex unable to run the custom post-auth process?
    Robert

    Thats just the message when you get when there is an unhandled exception in your post-auth process. Apex wraps your code with its own and if you hit any error it just raises that error to the screen. If you were to go into your post-auth and do:
    declare
      v number;
    begin
      v:= 1/0;
    end;You can see that it raises the same error message to the screen instead of an excepted pl/sql exception about dividing by zero.

  • Unable to run the local bussiness server - Error during startup of BPA

    When i installed the BPA tool and started the 'LOCAL' server in oracle BPA Network. I am getting an error saying 'Unable to run the local bussiness server'. Then i checked the log and found the foolowing errors. Please suggest !
    LoG File 1:-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    2009-03-10 22:18:53,199     [ ARIS Server Site Startup process ]
    2009-03-10 22:18:53,199     
    2009-03-10 22:18:53,324     Started profile Private@17057
    2009-03-10 22:18:53,324     Started profile Public@17055
    2009-03-10 22:18:53,324     Started profile Agent@17058
    2009-03-10 22:18:53,339     
    2009-03-10 22:18:53,339     Starting ARIS Nameservice 10.1.3.4.271679(Public)
    2009-03-10 22:18:53,339     
    2009-03-10 22:18:53,339     Starting ARIS Eventservice 10.1.3.4.271679(Private)
    2009-03-10 22:18:53,355     
    2009-03-10 22:18:53,355     Starting ARIS Nameservice 10.1.3.4.271679(Private)
    2009-03-10 22:18:53,355     
    2009-03-10 22:18:53,355     Starting DB event initialisation 10.1.3.4.271679(Private)
    2009-03-10 22:18:53,417     - event channel is created
    2009-03-10 22:18:53,433     
    2009-03-10 22:18:53,433     Starting Aris LockService 10.1.3.4.271679(Private)
    2009-03-10 22:18:53,433     - using mapping 'com.idsscheer.aris.server.dl.mapimpl.ora.AMapping'
    2009-03-10 22:18:53,448     - using url 'jdbc:oracle:thin:@LOCALHOST:1521:orcl'
    2009-03-10 22:21:53,459     Launch of Aris LockService failed!
    2009-03-10 22:21:53,459     
    2009-03-10 22:21:53,459     [ There have been ERRORS, ARIS Server Site is going down ... ]
    2009-03-10 22:21:53,459     Terminating ARIS Server Site ...
    2009-03-10 22:21:53,459     Shutting down DB event initialisation ...
    2009-03-10 22:21:53,475     Shutting down ARIS Nameservice ...
    2009-03-10 22:21:53,475     Shutting down ARIS Eventservice ...
    2009-03-10 22:21:53,475     Shutting down ARIS Nameservice ...
    2009-03-10 22:21:55,487     ARIS Server Site terminated!
    2009-03-10 22:21:55,487     
    2009-03-10 22:21:55,487     [ ARIS Server Site is down ]
    2009-03-10 22:21:55,487     
    2009-03-10 22:21:58,498     Terminating ARIS Server Site ...
    2009-03-10 22:21:58,498     ARIS Server Site terminated!
    2009-03-10 22:59:48,606     
    2009-03-10 22:59:48,606     ARIS Server Site
    2009-03-10 22:59:48,606     (c) 2005 IDS Scheer
    2009-03-10 22:59:48,606     
    2009-03-10 22:59:48,606     
    2009-03-10 22:59:48,606     [ ARIS Server Site Startup process ]
    2009-03-10 22:59:48,606     
    2009-03-10 22:59:48,762     Started profile Private@17057
    2009-03-10 22:59:48,762     Started profile Public@17055
    2009-03-10 22:59:48,762     Started profile Agent@17058
    2009-03-10 22:59:48,762     
    2009-03-10 22:59:48,762     Starting ARIS Nameservice 10.1.3.4.271679(Public)
    2009-03-10 22:59:48,777     
    2009-03-10 22:59:48,777     Starting ARIS Eventservice 10.1.3.4.271679(Private)
    2009-03-10 22:59:48,793     
    2009-03-10 22:59:48,793     Starting ARIS Nameservice 10.1.3.4.271679(Private)
    2009-03-10 22:59:48,793     
    2009-03-10 22:59:48,793     Starting DB event initialisation 10.1.3.4.271679(Private)
    2009-03-10 22:59:48,855     - event channel is created
    2009-03-10 22:59:48,855     
    2009-03-10 22:59:48,871     Starting Aris LockService 10.1.3.4.271679(Private)
    2009-03-10 22:59:48,871     - using mapping 'com.idsscheer.aris.server.dl.mapimpl.ora.AMapping'
    2009-03-10 22:59:48,887     - using url 'jdbc:oracle:thin:@LOCALHOST:1521:orcl'
    2009-03-10 23:02:49,309     Launch of Aris LockService failed!
    2009-03-10 23:02:49,309     
    2009-03-10 23:02:49,309     [ There have been ERRORS, ARIS Server Site is going down ... ]
    2009-03-10 23:02:49,309     Terminating ARIS Server Site ...
    2009-03-10 23:02:49,309     Shutting down DB event initialisation ...
    2009-03-10 23:02:49,309     Shutting down ARIS Nameservice ...
    2009-03-10 23:02:49,309     Shutting down ARIS Eventservice ...
    2009-03-10 23:02:49,309     Shutting down ARIS Nameservice ...
    2009-03-10 23:02:51,321     ARIS Server Site terminated!
    2009-03-10 23:02:51,321     
    2009-03-10 23:02:51,321     [ ARIS Server Site is down ]
    2009-03-10 23:02:51,321     
    2009-03-10 23:02:54,332     Terminating ARIS Server Site ...
    2009-03-10 23:02:54,332     ARIS Server Site terminated!
    Error Log 2:Exception
    2009-03-10 18:19:39,019     com.idsscheer.aris.server.Exceptions - Launch failed!
    com.idsscheer.aris.server.launcher.AArisLauncher.trystart(AArisLauncher.java:368)
    com.idsscheer.aris.server.common.launch.AFatalLaunchableInitException: Launch of Aris LockService failed!
         at com.idsscheer.aris.server.launcher.AArisLaunchable.startup(AArisLaunchable.java:65)
         at com.idsscheer.aris.server.launcher.AArisLauncher.startService(AArisLauncher.java:548)
         at com.idsscheer.aris.server.launcher.AArisLauncher.startServices(AArisLauncher.java:502)
         at com.idsscheer.aris.server.launcher.AArisLauncher.launchAll(AArisLauncher.java:456)
         at com.idsscheer.aris.server.launcher.AArisLauncher.trystart(AArisLauncher.java:365)
         at com.idsscheer.aris.server.launcher.AArisLauncher.startup(AArisLauncher.java:302)
         at com.idsscheer.aris.server.launcher.AArisLauncher.main(AArisLauncher.java:155)
    Caused by: java.lang.RuntimeException: timeout exceeded, cannot connect to database server (url=jdbc:oracle:thin:@LOCALHOST:1521:orcl)
         at com.idsscheer.aris.server.launcher.ARemoteLockServiceLaunchable$ALaunchableImpl.startup(ARemoteLockServiceLaunchable.java:111)
         at com.idsscheer.aris.server.launcher.AArisLaunchable.startup(AArisLaunchable.java:63)
         ... 6 more
    Caused by: com.idsscheer.aris.server.dl.ls.core.AFatalInitException: timeout exceeded, cannot connect to database server (url=jdbc:oracle:thin:@LOCALHOST:1521:orcl)
         at com.idsscheer.aris.server.dl.mapimpl.ora.AMapping.startDatabase(AMapping.java:79)
         at com.idsscheer.aris.server.dl.ls.core.logic.ALockServiceFactoryInternal.createLockService(ALockServiceFactoryInternal.java:43)
         at com.idsscheer.aris.server.dl.ls.core.ALockServiceFactory.createLockService(ALockServiceFactory.java:22)
         at com.idsscheer.aris.server.launcher.ARemoteLockServiceLaunchable$ALaunchableImpl.startup(ARemoteLockServiceLaunchable.java:106)
         ... 7 more
    Caused by: com.idsscheer.aris.server.dl.mapimpl.ora.dblauncher.AOraLauncher$ACannotStartException: timeout exceeded, cannot connect to database server (url=jdbc:oracle:thin:@LOCALHOST:1521:orcl)
         at com.idsscheer.aris.server.dl.mapimpl.ora.dblauncher.AOraLauncher.waitUntilServerIsUp(AOraLauncher.java:87)
         at com.idsscheer.aris.server.dl.mapimpl.ora.dblauncher.AOraLauncher.startup(AOraLauncher.java:60)
         at com.idsscheer.aris.server.dl.mapimpl.ora.AMapping.startDatabase(AMapping.java:76)
         ... 10 more
    2009-03-10 18:28:52,307     com.idsscheer.aris.server.Exceptions - Launch failed!
    com.idsscheer.aris.server.launcher.AArisLauncher.trystart(AArisLauncher.java:368)
    com.idsscheer.aris.server.common.launch.AFatalLaunchableInitException: Launch of Aris LockService failed!
         at com.idsscheer.aris.server.launcher.AArisLaunchable.startup(AArisLaunchable.java:65)
         at com.idsscheer.aris.server.launcher.AArisLauncher.startService(AArisLauncher.java:548)
         at com.idsscheer.aris.server.launcher.AArisLauncher.startServices(AArisLauncher.java:502)
         at com.idsscheer.aris.server.launcher.AArisLauncher.launchAll(AArisLauncher.java:456)
         at com.idsscheer.aris.server.launcher.AArisLauncher.trystart(AArisLauncher.java:365)
         at com.idsscheer.aris.server.launcher.AArisLauncher.startup(AArisLauncher.java:302)
         at com.idsscheer.aris.server.launcher.AArisLauncher.main(AArisLauncher.java:155)
    Caused by: java.lang.RuntimeException: timeout exceeded, cannot connect to database server (url=jdbc:oracle:thin:@LOCALHOST:1521:orcl)
         at com.idsscheer.aris.server.launcher.ARemoteLockServiceLaunchable$ALaunchableImpl.startup(ARemoteLockServiceLaunchable.java:111)
         at com.idsscheer.aris.server.launcher.AArisLaunchable.startup(AArisLaunchable.java:63)
         ... 6 more
    Caused by: com.idsscheer.aris.server.dl.ls.core.AFatalInitException: timeout exceeded, cannot connect to database server (url=jdbc:oracle:thin:@LOCALHOST:1521:orcl)
         at com.idsscheer.aris.server.dl.mapimpl.ora.AMapping.startDatabase(AMapping.java:79)
         at com.idsscheer.aris.server.dl.ls.core.logic.ALockServiceFactoryInternal.createLockService(ALockServiceFactoryInternal.java:43)
         at com.idsscheer.aris.server.dl.ls.core.ALockServiceFactory.createLockService(ALockServiceFactory.java:22)
         at com.idsscheer.aris.server.launcher.ARemoteLockServiceLaunchable$ALaunchableImpl.startup(ARemoteLockServiceLaunchable.java:106)
         ... 7 more
    Caused by: com.idsscheer.aris.server.dl.mapimpl.ora.dblauncher.AOraLauncher$ACannotStartException: timeout exceeded, cannot connect to database server (url=jdbc:oracle:thin:@LOCALHOST:1521:orcl)
         at com.idsscheer.aris.server.dl.mapimpl.ora.dblauncher.AOraLauncher.waitUntilServerIsUp(AOraLauncher.java:87)
         at com.idsscheer.aris.server.dl.mapimpl.ora.dblauncher.AOraLauncher.startup(AOraLauncher.java:60)
         at com.idsscheer.aris.server.dl.mapimpl.ora.AMapping.startDatabase(AMapping.java:76)
         ... 10 more
    2009-03-10 22:21:53,459     com.idsscheer.aris.server.Exceptions - Launch failed!
    com.idsscheer.aris.server.launcher.AArisLauncher.trystart(AArisLauncher.java:368)
    com.idsscheer.aris.server.common.launch.AFatalLaunchableInitException: Launch of Aris LockService failed!
         at com.idsscheer.aris.server.launcher.AArisLaunchable.startup(AArisLaunchable.java:65)
         at com.idsscheer.aris.server.launcher.AArisLauncher.startService(AArisLauncher.java:548)
         at com.idsscheer.aris.server.launcher.AArisLauncher.startServices(AArisLauncher.java:502)
         at com.idsscheer.aris.server.launcher.AArisLauncher.launchAll(AArisLauncher.java:456)
         at com.idsscheer.aris.server.launcher.AArisLauncher.trystart(AArisLauncher.java:365)
         at com.idsscheer.aris.server.launcher.AArisLauncher.startup(AArisLauncher.java:302)
         at com.idsscheer.aris.server.launcher.AArisLauncher.main(AArisLauncher.java:155)
    Caused by: java.lang.RuntimeException: timeout exceeded, cannot connect to database server (url=jdbc:oracle:thin:@LOCALHOST:1521:orcl)
         at com.idsscheer.aris.server.launcher.ARemoteLockServiceLaunchable$ALaunchableImpl.startup(ARemoteLockServiceLaunchable.java:111)
         at com.idsscheer.aris.server.launcher.AArisLaunchable.startup(AArisLaunchable.java:63)
         ... 6 more
    Caused by: com.idsscheer.aris.server.dl.ls.core.AFatalInitException: timeout exceeded, cannot connect to database server (url=jdbc:oracle:thin:@LOCALHOST:1521:orcl)
         at com.idsscheer.aris.server.dl.mapimpl.ora.AMapping.startDatabase(AMapping.java:79)
         at com.idsscheer.aris.server.dl.ls.core.logic.ALockServiceFactoryInternal.createLockService(ALockServiceFactoryInternal.java:43)
         at com.idsscheer.aris.server.dl.ls.core.ALockServiceFactory.createLockService(ALockServiceFactory.java:22)
         at com.idsscheer.aris.server.launcher.ARemoteLockServiceLaunchable$ALaunchableImpl.startup(ARemoteLockServiceLaunchable.java:106)
         ... 7 more
    Caused by: com.idsscheer.aris.server.dl.mapimpl.ora.dblauncher.AOraLauncher$ACannotStartException: timeout exceeded, cannot connect to database server (url=jdbc:oracle:thin:@LOCALHOST:1521:orcl)
         at com.idsscheer.aris.server.dl.mapimpl.ora.dblauncher.AOraLauncher.waitUntilServerIsUp(AOraLauncher.java:87)
         at com.idsscheer.aris.server.dl.mapimpl.ora.dblauncher.AOraLauncher.startup(AOraLauncher.java:60)
         at com.idsscheer.aris.server.dl.mapimpl.ora.AMapping.startDatabase(AMapping.java:76)
         ... 10 more
    2009-03-10 23:02:49,309     com.idsscheer.aris.server.Exceptions - Launch failed!
    com.idsscheer.aris.server.launcher.AArisLauncher.trystart(AArisLauncher.java:368)
    com.idsscheer.aris.server.common.launch.AFatalLaunchableInitException: Launch of Aris LockService failed!
         at com.idsscheer.aris.server.launcher.AArisLaunchable.startup(AArisLaunchable.java:65)
         at com.idsscheer.aris.server.launcher.AArisLauncher.startService(AArisLauncher.java:548)
         at com.idsscheer.aris.server.launcher.AArisLauncher.startServices(AArisLauncher.java:502)
         at com.idsscheer.aris.server.launcher.AArisLauncher.launchAll(AArisLauncher.java:456)
         at com.idsscheer.aris.server.launcher.AArisLauncher.trystart(AArisLauncher.java:365)
         at com.idsscheer.aris.server.launcher.AArisLauncher.startup(AArisLauncher.java:302)
         at com.idsscheer.aris.server.launcher.AArisLauncher.main(AArisLauncher.java:155)
    Caused by: java.lang.RuntimeException: timeout exceeded, cannot connect to database server (url=jdbc:oracle:thin:@LOCALHOST:1521:orcl)
         at com.idsscheer.aris.server.launcher.ARemoteLockServiceLaunchable$ALaunchableImpl.startup(ARemoteLockServiceLaunchable.java:111)
         at com.idsscheer.aris.server.launcher.AArisLaunchable.startup(AArisLaunchable.java:63)
         ... 6 more
    Caused by: com.idsscheer.aris.server.dl.ls.core.AFatalInitException: timeout exceeded, cannot connect to database server (url=jdbc:oracle:thin:@LOCALHOST:1521:orcl)
         at com.idsscheer.aris.server.dl.mapimpl.ora.AMapping.startDatabase(AMapping.java:79)
         at com.idsscheer.aris.server.dl.ls.core.logic.ALockServiceFactoryInternal.createLockService(ALockServiceFactoryInternal.java:43)
         at com.idsscheer.aris.server.dl.ls.core.ALockServiceFactory.createLockService(ALockServiceFactory.java:22)
         at com.idsscheer.aris.server.launcher.ARemoteLockServiceLaunchable$ALaunchableImpl.startup(ARemoteLockServiceLaunchable.java:106)
         ... 7 more
    Caused by: com.idsscheer.aris.server.dl.mapimpl.ora.dblauncher.AOraLauncher$ACannotStartException: timeout exceeded, cannot connect to database server (url=jdbc:oracle:thin:@LOCALHOST:1521:orcl)
         at com.idsscheer.aris.server.dl.mapimpl.ora.dblauncher.AOraLauncher.waitUntilServerIsUp(AOraLauncher.java:87)
         at com.idsscheer.aris.server.dl.mapimpl.ora.dblauncher.AOraLauncher.startup(AOraLauncher.java:60)
         at com.idsscheer.aris.server.dl.mapimpl.ora.AMapping.startDatabase(AMapping.java:76)
         ... 10 more
    ----------------------------------------------------------------------------------------------------------------------------------------------

    S1:I uninstalled BPA.
    S2: I installed BPA again using the default options by selecting all the default options that the BPA showed during installation. EG. I selected 'Oracle Lite' which was by default an option.
    S3: After BPA installation, I also installed BPA Publisher which i had not done last time.
    S4: Restated my system and it all works gr8 now.
    Actually, the BPA Publisher creats a Repository area so it should have been installed along with the BPA installation. And Since a Repository area was not found it was giving this error message again and again.
    Now its all fine . Hopefully, some one else will learn from my mistakes.

  • I am trying to update to iTunes 10.5 and am getting a Apple Software update error. "There is a problem with this Windows Installer Package. A program run as part of the setup did not finish as expected. Contact your support personnel or package vendor. ??

    I am trying to update to iTunes 10.5 and am getting a Apple Software update error. "There is a problem with this Windows Installer Package. A program run as part of the setup did not finish as expected. Contact your support personnel or package vendor. ?? I can't uninstall the Apple Software Update from my Control Panel. It states "Fatal error during installation" Please HELP!!!

    I am experiencing the exact same issue during the installtion process for iTunes 10.5.
    I uninstalled all Apple components but when I attempted to uninstall the Apple Software Update I received the same message: "Fatal error during installtion." I was able to repair the Apple Software Update but still could not install iTunes 10.5 afterwards.
    I have tried everything that I could find on these discussions pages as well as other suggestions on third party sites. I continue to receive the error message: "There is a problem with this Windows Installer Package. A program run as part of the setup did not finish as expected. Contact your support personnel or package vendor.
    I was able to uninstall and reinstall QuickTime 7.7.1. During the reinstalltion process I received the same message (There is a problem with this Windows Installer Package. A program run as part of the setup did not finish as expected. Contact your support personnel or package vendor.) But after clicking "OK" the installtion process was succesful. PLEASE HELP!

  • FRM-41214: Unable to run Report geting as error

    I am converting 6i reports to 11g for that i am compiling 6i report in 10g reports and copy in 11g server
    in that report is calling from form i have writen query
    like
    DECLARE
    paramlistname VARCHAR2(30) := 'PLIST1';
    plid PARAMLIST;
    cnt number;
    report_id report_object;
    BEGIN
    plid := GET_PARAMETER_LIST(paramlistname);
    IF NOT ID_NULL(plid) THEN
    DESTROY_PARAMETER_LIST(paramlistname);
    END IF;
    plid := CREATE_PARAMETER_LIST(paramlistname);
    ADD_PARAMETER(plid, 'paramform', TEXT_PARAMETER, 'NO');
    ADD_PARAMETER(plid, 'p_division_code' , TEXT_PARAMETER, :control_007.division_code);
    ADD_PARAMETER(plid, 'p_depot_code' , TEXT_PARAMETER, :control_007.depot_code);
    ADD_PARAMETER(plid, 'P_VALIDITY_DATE' , TEXT_PARAMETER, to_char(:control_007.valid_date,'DD/MM/YYYY'));
    ADD_PARAMETER(plid, 'MAXIMIZE', TEXT_PARAMETER, 'YES');
    report_id := find_report_object('Report_NTP_Pending_QtyP');
              web_reportn(report_id,plid);
    DESTROY_PARAMETER_LIST(plid);
    go_block('Control_007');
    end;
    while runging a report from form i am getting error FRM-41214 Unable to run Report
    So Please Help Me how to solve this problem in 11g

    web_reportn(report_id,plid);This is where you actually call the report, so the error is in that procedure. What is the code of this procedure?
    Furthermore, I don't see any reference to system parameters, like destype, desname, report server name etc. Are they set in web_reportn?

  • Error Messages in NW Log: Unable to run query / Enter table name

    Hi all,
    I am always wondering about the tons of error messages in the NW log.
    Today I opened the workbench and a query (SQL-Query, Mode Fixed Query) and viewed the Fixed Query Details. Then I looked into the NW Log (SAP Logs), and it contained the following errors from my query opening inside the workbench:
    com.sap.xmii.Illuminator.logging.LHException:
    com.sap.xmii.Illuminator.logging.LHException:
    com.sap.xmii.Illuminator.logging.LHException:
    Enter a table name
    Unable to run the query
    All in all 15 error entries have been generated. Unfortunately no more details are contained in the log.
    Has anyone an idea why this happens when only opening a query inside the workbench without starting it?
    Michael

    Do you get similar errors when running a ColumnList query without providing a Table name (with the Group parameter)?
    /XMII/Illuminator?Server=XXXXX&Mode=ColumnList
    /XMII/Illuminator?Server=XXXXX&Mode=ColumnList&Group=TABLENAME
    Just a guess, but perhaps the WB is trying to fill the lower left listbox of available columns without the benefit of a table name being selected from the upper left listbox of available tables.
    Regards,
    Jeremy

  • TS1412 Itunes will not install, I get this error message.  There is a problem with this Windows Installer package.  A progran run as part of the setup did not finish as expected.  Contact your support personnel or package vendor.

    I Tunes will not install.  I get this error message:  There is a problem with this Windows Installer package.  A program run as part of the setup did not finish as expected.  Contact your support personnel or package vendor.  Does anyone have an answer?

    TRy the following user tip:
    "There is a problem with this Windows Installer package ..." error messages when installing iTunes for Windows

  • Error when downloading itunes 10.5 that says Product: Apple Software Update -- Error 1722. There is a problem with this Windows Installer package. A program run as part of the setup did not finish as expected. Contact your support personnel or package ven

    Each time I attempt to download the new itunes 10.5 I keep getting the following error message:
    Product: Apple Software Update -- Error 1722. There is a problem with this Windows Installer package. A program run as part of the setup did not finish as expected. Contact your support personnel or package vendor. Action SoftwareUpdate_UnregServer, location: C:\Program Files\Apple Software Update\SoftwareUpdate.exe, command: /UnregServer
    For more information, see Help and Support Center at http://go.microsoft.com/fwlink/events.asp.
    Any Ideas of how to solve this one?

    After reading all these posts, one by one did not resolve my problem until I got the very end.  Regardless of what step would resolve your problem, these are the steps I would recomment to everyone for a what seems to be a safe and fool-proof upgrade to iTunes 10.5.
    1. Stand alone upgrade to the latest Quicktime version
    2. Go to control panel and "change" then select repair to the following applications in the order specified by the post on Oct 27. (Notice I skipped Quicktime because it had been upgrade manually,and Bonjour did not have a "repair" option)
    iTunes; Apple Software Update: Mobile Device Support; Apple Applications Support
    Some of these applications may not appear if they do not apply to your configuration (no iPhone, or no iPad, or other apple devices).
    Once all updated, I did not need to restart nor launch any applications, I simply went straight into the 10.5 upgrade, and where it normally got stuck, this time the installation continued for a while longer until it completed successfully.
    Great work everyone who contributed!  Thank you very much!

  • Im trying to download itunes 10.5 but keep getting error message that says: There is a problem with this Windows Installer package. A problem run as part of the setup did not finish as expected. Contact your support personnel or package vendor.

    im trying to download itunes 10.5 but keep getting error message that says: There is a problem with this Windows Installer package. A problem run as part of the setup did not finish as expected. Contact your support personnel or package vendor. I am using windows XP 32 bit, all the other computers in my house downloaded just fine, no problems, however this is the computer my iphone is set up to, ive tried doing a virus scan, windows update, downloading other things, updating everything possible, everything works fine, its just itunes that wont download, anyone have any other ideas?

    Yes, I had found a similar solution also.  I'm running XP Pro, SP3.  I went Control Panels/ Add-Remove programmes/apple software update/ change/ repair.  Then run the 10.5 exe.
    While the programme updated from version 8 of iTunes, my new iTunes is now a mess.  Not all of my music was in the same folder previously but it all showed up on iTunes.  Now many albums have been left out, some have only a few tracks and some have two copies of some tracks as well as having other tracks missing.  I haven't begun to work on that.

  • Mac App Store error: Unable to run installation

    Hello, i recently got 2 updates in MAS and as soon as i tried to update, i got errors for both apps. It's saying unable to run installation:
    I tried to repair permissions but gettin the same error every time. What is the problem?

    UHm. That also could be a slow internet connection (with high ping) ? The fact is that when i click on update, it seems it's starting to download since my internet bandwidth meter goes to 500 or more kb/s download and after 2 secs it shows INSTALLED and after 2 more seconds it says there was an error.
    And this is that i'm getting in console:
    02/07/12 21:14:45,027 storeagent: *** Assertion failure in -[SoftwareInstallOperation _startInstall], /SourceCache/Pisa/Pisa-93.7/Source/iTunes Protocol/Built Into App/SoftwareInstallOperation.m:277
    02/07/12 21:14:45,027 storeagent: error Error Domain=NSURLErrorDomain Code=-1100 "Impossibile avviare l'installazione." UserInfo=0x1078e8420 {NSLocalizedDescription=Impossibile avviare l'installazione., NSUnderlyingError=0x7f89d1914c30 "Impossibile trovare l'URL richiesto su questo server."}
    02/07/12 21:14:45,027 storeagent: underlyingError Error Domain=NSURLErrorDomain Code=-1100 "Impossibile trovare l'URL richiesto su questo server." UserInfo=0x7f89d191e490 {NSUnderlyingError=0x1078e9be0 "Impossibile trovare l'URL richiesto su questo server.", NSErrorFailingURLStringKey=file:///var/folders/68/9z7rdfy17cx4ps3lcrn_3wz00000g n/C/com.apple.appstore/439845554/mzm.exgoawfi.pkg/index.sproduct, NSErrorFailingURLKey=file:///var/folders/68/9z7rdfy17cx4ps3lcrn_3wz00000gn/C/co m.apple.appstore/439845554/mzm.exgoawfi.pkg/index.sproduct, NSLocalizedDescription=Impossibile trovare l'URL richiesto su questo server.}
    02/07/12 21:14:45,027 storeagent: localException [PKProduct productByLoadingProductAtURL:file://localhost/var/folders/68/9z7rdfy17cx4ps3lcr n_3wz00000gn/C/com.apple.appstore/439845554/mzm.exgoawfi.pkg] failed Error Domain=NSURLErrorDomain Code=-1100 "Impossibile trovare l'URL richiesto su questo server." UserInfo=0x7f89d191e490 {NSUnderlyingError=0x1078e9be0 "Impossibile trovare l'URL richiesto su questo server.", NSErrorFailingURLStringKey=file:///var/folders/68/9z7rdfy17cx4ps3lcrn_3wz00000g n/C/com.apple.appstore/439845554/mzm.exgoawfi.pkg/index.sproduct, NSErrorFailingURLKey=file:///var/folders/68/9z7rdfy17cx4ps3lcrn_3wz00000gn/C/co m.apple.appstore/439845554/mzm.exgoawfi.pkg/index.sproduct, NSLocalizedDescription=Impossibile trovare l'URL richiesto su questo server.}

  • ERROR: The program is unable to generate the add-on queue due to missing add-ons or Support Packages.

    Hi,
    Can anyone advice on below issue?
    ERROR: The program is unable to generate the add-on queue due to missing add-ons or Support Packages.    
    Add the missing Support Packages or repeat the current step and change the add-on selection.
    Missing Support Package(s):
    Correction
    Component
    IW_FNDGC
    I have manually download these components which is SAPK-10001INIWFNDGC and SAPK-10002INIWFNDGC and put it in the download directory and repeat the phase.
    Besides, I also checked that these 2 components were inside EPS/in folder CSN0120061532 0083837 PAT and CSN0120061532 0079648 PAT
    Thanks and regards,
    Shu Jie

    Hi Shu Jie,
    you can't delete already installed add-ons. Please refer to note #1569624:
    It is not possible to uninstall GATEWAY 2.0
    Before you install the GATEWAY 2.0, keep in mind that you cannot uninstall ABAP add-ons.
    The add-on GW CORE will be merged in IW_FNDGC. This information can also be found in above note:
    Please
    note:
    GW_CORE 200 is not released for SAP_BASIS 740.
    The successor is IW_FNDGC 100.
    There are two possible reason for your error:
    The stackfile is not well configured.
    Your SUM is not the very latest one. SUM SP10 contained a bug in its first patch levels which shows retrofitted components in IS_SELECT.
    Cheers,
    Andreas

  • Running package programmactically from console causes error if package uses connection in Connection Manager.

    Hello my friends:
    I attempted to run a few packages programmatically using the code and solution on this page:
    http://msdn.microsoft.com/en-us/library/ms136090.aspx
    I observed that the script and process failed when I use the connection in SSIS/SSDT connection Manager in Visual Studio 2013. Meaning if I create a Connection for the Project in the Connection Manager and use it on tasks.
    However, the project and packages will run just fine if I simply add individual connection to each task where needed and do not use the Connection manager.
    If I use the Connection Manager, I get this error: This only happens when I run the package programmatically,
    if I run the package directly from Visual Studio, I get no errors.
    Error Message:
    Error in Microsoft.SqlServer.Dts.Runtime.Package/ : The connection "{0E6E938E-B0
    84-45E6-9110-0D532BD61787}" is not found. This error is thrown by Connections co
    llection when the specific connection element is not found.
    Error in Microsoft.SqlServer.Dts.Runtime.TaskHost/SSIS.Pipeline : Cannot find th
    e connection manager with ID "{0E6E938E-B084-45E6-9110-0D532BD61787}" in the con
    nection manager collection due to error code 0xC0010009. That connection manager
     is needed by "SQL Server Destination.Connections[OleDbConnection]" in the conne
    ction manager collection of "SQL Server Destination". Verify that a connection m
    anager in the connection manager collection, Connections, has been created with
    that ID.
    Error in Microsoft.SqlServer.Dts.Runtime.TaskHost/SSIS.Pipeline : SQL Server Des
    tination failed validation and returned error code 0xC004800B.
    Error in Microsoft.SqlServer.Dts.Runtime.TaskHost/SSIS.Pipeline : One or more co
    mponent failed validation.
    Error in Microsoft.SqlServer.Dts.Runtime.TaskHost/ : There were errors during ta
    sk validation.
    Connection Manager Screenshot:
    I am using that connection in an SQL Server Destination Task:
    And here is the code:
    class Program
    class MyEventListener : DefaultEvents
    public override bool OnError(DtsObject source, int errorCode, string subComponent,
    string description, string helpFile, int helpContext, string idofInterfaceWithError)
    Console.WriteLine("Error in {0}/{1} : {2}", source, subComponent, description);
    return false;
    static void Main(string[] args)
    string pkgLocation;
    Package pkg;
    Application app;
    DTSExecResult pkgResults;
    MyEventListener eventListener = new MyEventListener();
    pkgLocation =
    @"C:\Users\Administrator\Desktop\ExampleConnectionMgr\DataExtractionB.dtsx";
    app = new Application();
    pkg = app.LoadPackage(pkgLocation, eventListener);
    pkgResults = pkg.Execute(null, null, eventListener, null, null);
    Console.WriteLine(pkgResults.ToString());
    Console.ReadKey();
    Thank you everyone!

    I have confirmed that this problem, at least on the surface is caused by the lack of reference to the Connection in the Connection Manager as indicated by the error message.
    The solution here will require that the Connection is set directly within each task.
    If I simply set the connection in each task then the page runs just fine programmatically:
    I am also able to convert the Connection in the Connection Manager to Package Connection as shown in the screen shot below. This will override all references to the Connection Manager and make the connection local within each package or package
    task.
    Is there any other solution out there?
    Thanks again!
    Synth.
    This is exactly what I asked for in my previous post. Sorry if it wasnt clear.
    I guess the problem is in your case you're creating connection manager from VS which is not adding any reference of it to packages which is why its complaining of the missing connection reference
    Please Mark This As Answer if it solved your issue
    Please Mark This As Helpful if it helps to solve your issue
    Visakh
    My MSDN Page
    My Personal Blog
    My Facebook Page
    Hi my friend:
    Do you know how I can include the connection programmatically in code?
    I found this article but it is not very clear to me:
    I do not want to create a package in code, just the connection so that the program can run.
    Here is the article:
    http://msdn.microsoft.com/en-us/library/ms136093.aspx
    Thank you so much.
    Patrick

Maybe you are looking for

  • How do I fix M4P music files that stop suddenly on my new computer?

    So I purchased a windows laptop and transferred my music from my mac mini to the new system and a large number of my music files - that I purchased from the Itunes store- now stop suddenly.  The files all appear to be m4p files...how do I repair the

  • MBAM will not auto encrypt the system partition

    First after reimaging, I need to use tpm.msc to prepare the TPM, as the TPM is running in reduced functionality. The computer reboots and clears the TPM. After the reboot, the logs no longer show any new errors. However if the option "Configure the n

  • Excise deatails are not appearing in J1IEX in case of STO

    Hell Guru Excise details are not appearing in transaction code J1IEX  while capture and posting the PART-1 & 2 Entries  in case of STO  throuhg SD route. All the details are maintianed in J1ID its not appearing in JI1IEX Thanks & Regards Laxmi N

  • Help with step one

    Can someone please help me to "unzip" the files he talks about in step one building a web page? I don't find that option anywhere....

  • Pick up calls on imac

    For awhile, whenever my iphone rang, my imac would also ring and I could pick it up from there. I love that feature becuase I'm not always in the same room as my phone. Recently it stopped doing that, and I'm wondering where the setting is to bring t