Unable to Execute Packages using Agent

Hi,
When i am trying to run packages using Agent which is situated on other machine it is giving the following error.
*" unable to executethe selected logical agent is not assosciated to a physical agent in desired context."*
java.util.NoSuchElementException
     at java.util.AbstractList$Itr.next(AbstractList.java:350)
     at com.sunopsis.graphical.dialog.SnpsDialogExecution.getAgent(SnpsDialogExecution.java:1436)
     at com.sunopsis.graphical.dialog.SnpsDialogExecution.doScenarioExecuter(SnpsDialogExecution.java:1104)
     at oracle.odi.ui.action.SnpsPopupActionExecuteHandler.actionPerformed(SnpsPopupActionExecuteHandler.java:64)
     at oracle.odi.ui.SnpsActionControler.handleEvent(SnpsActionControler.java:75)
     at oracle.ide.controller.IdeAction.performAction(IdeAction.java:529)
     at oracle.ide.controller.IdeAction.actionPerformedImpl(IdeAction.java:884)
     at oracle.ide.controller.IdeAction.actionPerformed(IdeAction.java:501)
     at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1995)
     at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2318)
     at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:387)
     at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:242)
     at javax.swing.AbstractButton.doClick(AbstractButton.java:357)
     at javax.swing.plaf.basic.BasicMenuItemUI.doClick(BasicMenuItemUI.java:809)
     at javax.swing.plaf.basic.BasicMenuItemUI$Handler.mouseReleased(BasicMenuItemUI.java:850)
     at java.awt.Component.processMouseEvent(Component.java:6267)
     at javax.swing.JComponent.processMouseEvent(JComponent.java:3267)
     at java.awt.Component.processEvent(Component.java:6032)
     at java.awt.Container.processEvent(Container.java:2041)
     at java.awt.Component.dispatchEventImpl(Component.java:4630)
     at java.awt.Container.dispatchEventImpl(Container.java:2099)
     at java.awt.Component.dispatchEvent(Component.java:4460)
     at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4577)
     at java.awt.LightweightDispatcher.processMouseEvent(Container.java:4238)
     at java.awt.LightweightDispatcher.dispatchEvent(Container.java:4168)
     at java.awt.Container.dispatchEventImpl(Container.java:2085)
     at java.awt.Window.dispatchEventImpl(Window.java:2478)
     at java.awt.Component.dispatchEvent(Component.java:4460)
     at java.awt.EventQueue.dispatchEvent(EventQueue.java:599)
     at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:269)
     at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:184)
     at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:174)
     at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:169)
     at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:161)
     at java.awt.EventDispatchThread.run(EventDispatchThread.java:122)

Hi mahesh,
check your agent with test connection, and have a look on your context while executing time it asks context and agent.
if u have various agents and contexts please choice correct logical agent name related to context...
in this case also you not able to find solution, then got to topology manager--->go to logical architecture and open your agent, see your logical agent name in different contexts,please check like this under physical schema window in contexts also.
Regards,
surya.

Similar Messages

  • Unable to execute packaged procedure in PLSQL

    DECLARE
    CURSOR c1
    IS
    SELECT NAME
    FROM v$hm_check
    WHERE internal_check = 'N' AND NAME NOT LIKE '%ASM%';
    sql_text VARCHAR2 (2000) := NULL;
    random_value VARCHAR2 (50);
    BEGIN
    FOR hm_check IN c1
    LOOP
    random_value := dbms_random.string('U', 20);
    sql_text :=
    'dbms_hm.run_check('''
    || hm_check.NAME
    || ''','''
    || random_value
    || ''',null,null);';
    DBMS_OUTPUT.put_line (sql_text);
    EXECUTE IMMEDIATE (' begin ' || sql_text || ' end; ');
    END LOOP;
    END;
    Error at line 4
    ORA-48615: Parameter [CF_BL_NUM] value not specified
    ORA-06512: at "SYS.DBMS_HM", line 191
    ORA-06512: at line 1
    ORA-06512: at line 24
    if i exeucte commenting execute immediate then i will be able.. but i want to execute with execute immediate...
    can you please help out.. thanks...

    knowledgespring wrote:
    I changed the code
    sql_text:='begin '||sql_text|| ' end;';
    in the given procedure
    it generates
    begin dbms_hm.run_check('DB Structure Integrity Check','NUCQGGPVQLVJELKJMMGW',null,null); end;
    begin dbms_hm.run_check('CF Block Integrity Check','SYWCMEEPBLYNNQCAQAHV',null,null); end;
    begin dbms_hm.run_check('Data Block Integrity Check','KILLVEYBLEVVEVLAYGGI',null,null); end;
    begin dbms_hm.run_check('Redo Integrity Check','ROJDCYKULSFWURHNCUDY',null,null); end;
    begin dbms_hm.run_check('Transaction Integrity Check','IZLGHJOLXJIIORYMGVFG',null,null); end;
    begin dbms_hm.run_check('Undo Segment Integrity Check','WDXGWDIHQPYHGROYYXOA',null,null); end;
    begin dbms_hm.run_check('Dictionary Integrity Check','HTCZJEIBMNTZYBEECTNX',null,null); end;
    can i execute this one by one??
    I see first one is executed but not the second one or next one...? is there any other way of executing this one time..when all else fails, Read The Fine Manual
    http://docs.oracle.com/cd/E11882_01/appdev.112/e25788/d_hm.htm#CHDGBEBD
    "SELECT name FROM V$HM_CHECK WHERE INTERNAL_CHECK = 'N'
    Above retrieves the list of checks that can be run manually by users."

  • Unable to execute the cmp using the weblogic

    I was trying to execute cmp using weblogic server7.0.
    It a simple program,
    The remote interface-
    import javax.ejb.*;
    import java.rmi.RemoteException;
    public interface SportTeam extends EJBObject{
    public void setOwnerName(String ownerName) throws RemoteException;
    public String getOwnerName() throws RemoteException;
    public void setFranchiseName(String franchiseName) throws RemoteException;
    public String getFranchiseName() throws RemoteException;
    }The home interface
    import javax.ejb.*;
    import java.rmi.RemoteException;
    import java.util.Collection;
    public interface SportTeamHome extends EJBHome{
    SportTeam create(String sport,String nickName)throws RemoteException,CreateException;
    SportTeam create(String sport,String nickName,String ownerName,String franchisePlayer)throws RemoteException,CreateException;
    SportTeam findByPrimaryKey(SportTeamPK sportTeam) throws RemoteException,FinderException;
    Collection findByOwnerName(String ownerName) throws RemoteException,FinderException;
    }The bean
    import javax.ejb.*;
    import javax.naming.*;
    import java.rmi.RemoteException;
    import java.sql.*;
    import java.util.*;
    public abstract class SportTeamEJB implements EntityBean{
    public SportTeamPK ejbCreate(String sport,String nickName) throws CreateException {
    setSport(sport);
    setNickName(nickName);
    setOwnerName(null);
    setFranchiseName(null);
    return null;
    public void ejbPostCreate(String sport,String nickName){}
    public SportTeamPK ejbCreate(String sport,String nickName,String ownerName,String franchiseName) throws CreateException {
    setSport(sport);
    setNickName(nickName);
    setOwnerName(ownerName);
    setFranchiseName(franchiseName);
    return null;
    public void ejbPostCreate(String sport,String nickName,String ownerName,String franchiseName){}
    public void ejbLoad(){}
    public void ejbStore(){}
    public void ejbRemove(){}
    public void ejbActivate(){}
    public void ejbPassivate(){}
    public void setEntityContext(EntityContext ctx){}
    public void unsetEntityContext(){}
    abstract public String getSport();
    abstract public void setSport(String sport);
    abstract public String getNickName();
    abstract public void setNickName(String nickName);
    abstract public String getOwnerName();
    abstract public void setOwnerName(String ownerName);
    abstract public String getFranchiseName();
    abstract public void setFranchiseName(String franchiseName);
    }the client side program
    import java.rmi.RemoteException;
    import javax.ejb.*;
    import javax.naming.*;
    import javax.rmi.PortableRemoteObject;
    import java.util.Properties;
    import java.util.Collection;
    import java.util.Iterator;
    public class TestClient{
    public static void main(String[] args){
    try{
         Properties prop=new Properties();
         prop.setProperty(Context.INITIAL_CONTEXT_FACTORY,"weblogic.jndi.WLInitialContextFactory");
         prop.setProperty(Context.PROVIDER_URL,"t3://localhost:7001");
         InitialContext initial=new InitialContext(prop);
         Object objref=initial.lookup("CMPSportBean");
         SportTeamHome home=(SportTeamHome)PortableRemoteObject.narrow(objref,SportTeamHome.class);
         System.out.println("Creating a row.");
         home.create("basketball","Kings","Joe Maloof","Jason Williams");
         System.out.println("Looking up by primary key...");
         SportTeam team=home.findByPrimaryKey(new SportTeamPK("basketball","Kings"));
         System.out.println("Current franchise player:");
         System.out.println(team.getFranchiseName());
         System.out.println("Looking by by owner...");
         Collection col=home.findByOwnerName("Joe Maloof");
         if(     0 == col.size()     ){
              System.out.println("Found no such owner");
         }else {
              Iterator iter=col.iterator();
              while(iter.hasNext()){
              Object objref2=iter.next();
              SportTeam teamRef2=(SportTeam) PortableRemoteObject.narrow(objref2,SportTeam.class);
              System.out.println("Owner name:"+ teamRef2.getOwnerName());
    team.remove();
    }catch(RemoveException re){
         re.printStackTrace();
    }catch(NamingException ne){
         ne.printStackTrace();
    }catch(CreateException ce){
         ce.printStackTrace();
    }catch(FinderException fe){
         fe.printStackTrace();
    }catch(RemoteException re){
                  re.printStackTrace();
    }The primary key class
    //package sportBean.cmp;
    import java.io.Serializable;
    public class SportTeamPK implements Serializable{
    public String sport;
    public String nickName;
    public SportTeamPK(){}
    public SportTeamPK(String sport,String nickName){
    this.sport =sport;
    this.nickName=nickName;
    public String getSport(){
    return sport;
    public String getNickName(){
    return nickName;
    public int hashCode(){
    return (sport+nickName).hashCode();
    public boolean equals(Object other){
         if( (other == null) ||! (other instanceof SportTeamPK) ){
            return false;
         SportTeamPK otherPK=(SportTeamPK)other;
         return sport.equals(otherPK.sport) && nickName.equals(otherPK.nickName);
    The program has complied successfully .
    The META-INF directory has been created automatically
    the ejb-jar.xml file
    <!DOCTYPE ejb-jar PUBLIC '-//Sun Microsystems, Inc.//DTD Enterprise JavaBeans 2.0//EN' 'http://java.sun.com/dtd/ejb-jar_2_0.dtd'>
    <!-- Generated XML! -->
    <ejb-jar>
      <enterprise-beans>
        <entity>
          <ejb-name>CMPSportBean</ejb-name>
          <home>SportTeamHome</home>
          <remote>SportTeam</remote>
          <ejb-class>SportTeamEJB</ejb-class>
          <persistence-type>Container</persistence-type>
          <prim-key-class>SportTeamPK</prim-key-class>
          <reentrant>False</reentrant>
          <abstract-schema-name>SportEJB</abstract-schema-name>
          <cmp-field>
            <field-name>sport</field-name>
          </cmp-field>
          <cmp-field>
            <field-name>nickName</field-name>
          </cmp-field>
          <cmp-field>
            <field-name>ownerName</field-name>
          </cmp-field>
          <cmp-field>
            <field-name>franchiseName</field-name>
          </cmp-field>
          <query>
            <query-method>
              <method-name>findByOwnerName</method-name>
              <method-params>
                <method-param>java.lang.String</method-param>
              </method-params>
            </query-method>
            <ejb-ql><![CDATA[SELECT OBJECT(o) FROM SportEJB AS o WHERE o.ownerName=?1]]></ejb-ql>
          </query>
        </entity>
      </enterprise-beans>
      <assembly-descriptor>
      </assembly-descriptor>
    </ejb-jar>the weblogic-ejb-jar.xml file
    <!DOCTYPE weblogic-ejb-jar PUBLIC '-//BEA Systems, Inc.//DTD WebLogic 7.0.0 EJB//EN' 'http://www.bea.com/servers/wls700/dtd/weblogic-ejb-jar.dtd'>
    <!-- Generated XML! -->
    <weblogic-ejb-jar>
      <weblogic-enterprise-bean>
        <ejb-name>CMPSportBean</ejb-name>
        <entity-descriptor>
          <pool>
          </pool>
          <entity-cache>
            <max-beans-in-cache>1000</max-beans-in-cache>
            <idle-timeout-seconds>600</idle-timeout-seconds>
            <read-timeout-seconds>600</read-timeout-seconds>
            <cache-between-transactions>False</cache-between-transactions>
          </entity-cache>
          <persistence>
            <persistence-use>
              <type-identifier>WebLogic_CMP_RDBMS</type-identifier>
              <type-version>6.0</type-version>
              <type-storage>META-INF/weblogic-cmp-rdbms-jar.xml</type-storage>
            </persistence-use>
          </persistence>
          <entity-clustering>
          </entity-clustering>
        </entity-descriptor>
        <transaction-descriptor>
          <trans-timeout-seconds>2</trans-timeout-seconds>
        </transaction-descriptor>
        <jndi-name>CMPSportBean</jndi-name>
      </weblogic-enterprise-bean>
    </weblogic-ejb-jar>the weblogic-cmp-rdbms-jar.xml file
    <!DOCTYPE weblogic-rdbms-jar PUBLIC  '-//BEA Systems, Inc.//DTD WebLogic 7.0.0 EJB RDBMS Persistence//EN' 'http://www.bea.com/servers/wls700/dtd/weblogic-rdbms20-persistence-700.dtd'>
    <!-- Generated XML! -->
    <weblogic-rdbms-jar>
      <weblogic-rdbms-bean>
        <ejb-name>CMPSportBean</ejb-name>
        <data-source-name>myjdbcjndi</data-source-name>
        <table-map>
          <table-name>sportsteams</table-name>
          <field-map>
            <cmp-field>ownerName</cmp-field>
            <dbms-column>ownername</dbms-column>
          </field-map>
          <field-map>
            <cmp-field>franchiseName</cmp-field>
            <dbms-column>franchisename</dbms-column>
          </field-map>
          <field-map>
            <cmp-field>nickName</cmp-field>
            <dbms-column>nickname</dbms-column>
          </field-map>
          <field-map>
            <cmp-field>sport</cmp-field>
            <dbms-column>sport</dbms-column>
          </field-map>
        </table-map>
        <weblogic-query>
          <query-method>
            <method-name>findByOwnerName</method-name>
            <method-params>
              <method-param>java.lang.String</method-param>
            </method-params>
          </query-method>
        </weblogic-query>
        <check-exists-on-method>False</check-exists-on-method>
      </weblogic-rdbms-bean>
      <create-default-dbms-tables>True</create-default-dbms-tables>
    </weblogic-rdbms-jar>I tried to write config.xml file
    <JDBCDataSource
       Name=" "
       JNDIName="myjdbcjndi"
       PoolName="MyJDBC Connection Pool"
       Targets="myserver"
    />
    <JDBCConnectionPool
       Name="MyJDBC Connection Pool"
       Targets="myserver"
        URL="jdbc:odbc:test"
        DriverName="sun.jdbc.odbc.JdbcOdbcDriver"
        InitialCapacity="1"
        MaxCapacity="10"
    />When i tried to deploy, it showed me errors-
    weblogic.management.ApplicationException: activate failed forcmp
    Start server side stack trace:
    weblogic.management.ApplicationException: activate failed forcmp
    Module Name: cmp, Error: Exception activating module: EJBModule(cmp,status=PREPARED)
    Unable to deploy EJB: CMPSportBean from cmp:
    weblogic.ejb20.WLDeploymentException: The DataSource with the JNDI name: myjdbcjndi could not be located. Please ensure that the DataSource has been deployed successfully and that the JNDI name in your EJB Deployment descriptor is correct.
         at weblogic.ejb20.cmp.rdbms.RDBMSPersistenceManager.setup(RDBMSPersistenceManager.java:138)
         at weblogic.ejb20.manager.BaseEntityManager.setupPM(BaseEntityManager.java:211)
         at weblogic.ejb20.manager.BaseEntityManager.setup(BaseEntityManager.java:181)
         at weblogic.ejb20.manager.DBManager.setup(DBManager.java:162)
         at weblogic.ejb20.deployer.ClientDrivenBeanInfoImpl.activate(ClientDrivenBeanInfoImpl.java:945)
         at weblogic.ejb20.deployer.EJBDeployer.activate(EJBDeployer.java:1296)
         at weblogic.ejb20.deployer.EJBModule.activate(EJBModule.java:349)
         at weblogic.j2ee.J2EEApplicationContainer.activateModule(J2EEApplicationContainer.java:1592)
         at weblogic.j2ee.J2EEApplicationContainer.activate(J2EEApplicationContainer.java:1029)
         at weblogic.j2ee.J2EEApplicationContainer.activate(J2EEApplicationContainer.java:1016)
         at weblogic.management.deploy.slave.SlaveDeployer.processPrepareTask(SlaveDeployer.java:1112)
         at weblogic.management.deploy.slave.SlaveDeployer.prepareUpdate(SlaveDeployer.java:732)
         at weblogic.drs.internal.SlaveCallbackHandler$1.execute(SlaveCallbackHandler.java:24)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:153)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:134)
    TargetException:
    Unable to deploy EJB: CMPSportBean from cmp:
    weblogic.ejb20.WLDeploymentException: The DataSource with the JNDI name: myjdbcjndi could not be located. Please ensure that the DataSource has been deployed successfully and that the JNDI name in your EJB Deployment descriptor is correct.
         at weblogic.ejb20.cmp.rdbms.RDBMSPersistenceManager.setup(RDBMSPersistenceManager.java:138)
         at weblogic.ejb20.manager.BaseEntityManager.setupPM(BaseEntityManager.java:211)
         at weblogic.ejb20.manager.BaseEntityManager.setup(BaseEntityManager.java:181)
         at weblogic.ejb20.manager.DBManager.setup(DBManager.java:162)
         at weblogic.ejb20.deployer.ClientDrivenBeanInfoImpl.activate(ClientDrivenBeanInfoImpl.java:945)
         at weblogic.ejb20.deployer.EJBDeployer.activate(EJBDeployer.java:1296)
         at weblogic.ejb20.deployer.EJBModule.activate(EJBModule.java:349)
         at weblogic.j2ee.J2EEApplicationContainer.activateModule(J2EEApplicationContainer.java:1592)
         at weblogic.j2ee.J2EEApplicationContainer.activate(J2EEApplicationContainer.java:1029)
         at weblogic.j2ee.J2EEApplicationContainer.activate(J2EEApplicationContainer.java:1016)
         at weblogic.management.deploy.slave.SlaveDeployer.processPrepareTask(SlaveDeployer.java:1112)
         at weblogic.management.deploy.slave.SlaveDeployer.prepareUpdate(SlaveDeployer.java:732)
         at weblogic.drs.internal.SlaveCallbackHandler$1.execute(SlaveCallbackHandler.java:24)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:153)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:134)
         at weblogic.j2ee.J2EEApplicationContainer.activate(J2EEApplicationContainer.java:1035)
         at weblogic.j2ee.J2EEApplicationContainer.activate(J2EEApplicationContainer.java:1016)
         at weblogic.management.deploy.slave.SlaveDeployer.processPrepareTask(SlaveDeployer.java:1112)
         at weblogic.management.deploy.slave.SlaveDeployer.prepareUpdate(SlaveDeployer.java:732)
         at weblogic.drs.internal.SlaveCallbackHandler$1.execute(SlaveCallbackHandler.java:24)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:153)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:134)
    End server side stack trace
    Module Name: cmp, Error: Exception activating module: EJBModule(cmp,status=PREPARED)
    Unable to deploy EJB: CMPSportBean from cmp:
    weblogic.ejb20.WLDeploymentException: The DataSource with the JNDI name: myjdbcjndi could not be located. Please ensure that the DataSource has been deployed successfully and that the JNDI name in your EJB Deployment descriptor is correct.
         at weblogic.ejb20.cmp.rdbms.RDBMSPersistenceManager.setup(RDBMSPersistenceManager.java:138)
         at weblogic.ejb20.manager.BaseEntityManager.setupPM(BaseEntityManager.java:211)
         at weblogic.ejb20.manager.BaseEntityManager.setup(BaseEntityManager.java:181)
         at weblogic.ejb20.manager.DBManager.setup(DBManager.java:162)
         at weblogic.ejb20.deployer.ClientDrivenBeanInfoImpl.activate(ClientDrivenBeanInfoImpl.java:945)
         at weblogic.ejb20.deployer.EJBDeployer.activate(EJBDeployer.java:1296)
         at weblogic.ejb20.deployer.EJBModule.activate(EJBModule.java:349)
         at weblogic.j2ee.J2EEApplicationContainer.activateModule(J2EEApplicationContainer.java:1592)
         at weblogic.j2ee.J2EEApplicationContainer.activate(J2EEApplicationContainer.java:1029)
         at weblogic.j2ee.J2EEApplicationContainer.activate(J2EEApplicationContainer.java:1016)
         at weblogic.management.deploy.slave.SlaveDeployer.processPrepareTask(SlaveDeployer.java:1112)
         at weblogic.management.deploy.slave.SlaveDeployer.prepareUpdate(SlaveDeployer.java:732)
         at weblogic.drs.internal.SlaveCallbackHandler$1.execute(SlaveCallbackHandler.java:24)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:153)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:134)
    TargetException:
    Unable to deploy EJB: CMPSportBean from cmp:
    weblogic.ejb20.WLDeploymentException: The DataSource with the JNDI name: myjdbcjndi could not be located. Please ensure that the DataSource has been deployed successfully and that the JNDI name in your EJB Deployment descriptor is correct.
    Start server side stack trace:
    weblogic.ejb20.WLDeploymentException: The DataSource with the JNDI name: myjdbcjndi could not be located. Please ensure that the DataSource has been deployed successfully and that the JNDI name in your EJB Deployment descriptor is correct.
         at weblogic.ejb20.cmp.rdbms.RDBMSPersistenceManager.setup(RDBMSPersistenceManager.java:138)
         at weblogic.ejb20.manager.BaseEntityManager.setupPM(BaseEntityManager.java:211)
         at weblogic.ejb20.manager.BaseEntityManager.setup(BaseEntityManager.java:181)
         at weblogic.ejb20.manager.DBManager.setup(DBManager.java:162)
         at weblogic.ejb20.deployer.ClientDrivenBeanInfoImpl.activate(ClientDrivenBeanInfoImpl.java:945)
         at weblogic.ejb20.deployer.EJBDeployer.activate(EJBDeployer.java:1296)
         at weblogic.ejb20.deployer.EJBModule.activate(EJBModule.java:349)
         at weblogic.j2ee.J2EEApplicationContainer.activateModule(J2EEApplicationContainer.java:1592)
         at weblogic.j2ee.J2EEApplicationContainer.activate(J2EEApplicationContainer.java:1029)
         at weblogic.j2ee.J2EEApplicationContainer.activate(J2EEApplicationContainer.java:1016)
         at weblogic.management.deploy.slave.SlaveDeployer.processPrepareTask(SlaveDeployer.java:1112)
         at weblogic.management.deploy.slave.SlaveDeployer.prepareUpdate(SlaveDeployer.java:732)
         at weblogic.drs.internal.SlaveCallbackHandler$1.execute(SlaveCallbackHandler.java:24)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:153)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:134)
    End server side stack trace
         <<no stack trace available>>
         <<no stack trace available>>
    I tried to put the file into the directory structure.
    I kept the class files into the WEB-INF/classess
    I could'nt understand whats wrong with it.
    Please help me it is urgent, if i could understand it i can proceed further

    Hi,
    I had the same error as you. I'm agree with arvind_India (previous). You must :
    1. Define a correct Connection Pool (warning: deploy it on your managed server).
    2. Test your connection Pool on your managed server.
    3. Create a DataSource from your connection Pool.
    4. Deploy your DataSource on your managed server.
    5. Verify the JNDI TREE of your managed server (Now, the JNDI name of your dataSource must appair).
    6. Deploy your Entity Bean (the error has disapeared).
    David (Paris-France).

  • The process cannot access the file because it is being used by another process with Execute package task

    Hi,
    I've a master package that calls other packages with an Execute Package Task. Sometimes we have an error: "The process cannot access the file because it is being used by another process" and sometimes not. It seems random.
    We are working on a Terminal Server and the SQL Server database engine and the files are placed on another server. It seems that the errors doesn't occu when we run the packages on the server with a job. We can't log onto the windows server on this machine..
    Hennie

    I've seen this myself. On most occasions an immediate rerun would fix the issue. As stated this happens only when we try to run this from BIDs. From SQL agent job it always runs fine. 
    Please Mark This As Answer if it helps to solve the issue Visakh ---------------------------- http://visakhm.blogspot.com/ https://www.facebook.com/VmBlogs

  • Unable to run SSIS Package using Stored Procedure

    Hi Guys,
            I have create one simple SSIS Package(Move the first table record to second table).It will execute fine in locally.
    But, If i'm going call/execute .dtsx file using stored procedure. I'm getting Error. so please let me know the valuable solution.
    My Package Path : D:\Temp\SSIS_TESTING\TESTSSIS\TESTSSIS\Package.dtsx
    Stored Procedure
    ================
    CREATE PROCEDURE SPEXECUTESSISPACKAGE
    @FILEPATH VARCHAR(8000)
    ,@STATUS VARCHAR(500) = NULL OUTPUT
    AS
    BEGIN
    DECLARE @SQLQUERY VARCHAR(8000)
    DECLARE @STATUSCODE INT
    SET @SQLQUERY = 'DTEXEC /FILE "'+ @FILEPATH +'"'
    SELECT @SQLQUERY AS 'SSIS FULL PATH'
    EXEC @STATUSCODE = master..xp_cmdshell @SQLQUERY
    SELECT @STATUSCODE AS 'STATUSCODE'
    IF @STATUSCODE <> 0
    BEGIN
    SET @STATUS = 'PACAKGE EXECUTE FAILED'
    PRINT @STATUS
    END
    ELSE
    BEGIN
    SET @STATUS = 'PACAKGE EXECUTE SUCCESS'
    PRINT @STATUS
    END
    END
    GO
    RUN
    ============================================================================
    EXEC SPEXECUTESSISPACKAGE 'D:\Temp\SSIS_TESTING\TESTSSIS\TESTSSIS\Package.dtsx', NULL
    Error
    =============================================================================
    Microsoft (R) SQL Server Execute Package Utility
    Version 9.00.4035.00 for 32-bit
    Copyright (C) Microsoft Corp 1984-2005. All rights reserved.
    NULL
    Started:  5:06:26 AM
    Error: 2014-11-14 05:06:26.07
       Code: 0xC0011007
       Source: {1244CD18-F96A-4DAD-8FC2-35F794015CA1}
       Description: Unable to load the package as XML because of package does not have a valid XML format. A specific XML parser error will be posted.
    End Error
    Error: 2014-11-14 05:06:26.07
       Code: 0xC0011002
       Source: {1244CD18-F96A-4DAD-8FC2-35F794015CA1}
       Description: Failed to open package file "D:\Temp\SSIS_TESTING\TESTSSIS\TESTSSIS\Package.dtsx" due to error 0x80070003 "The system cannot find the path specified.".  This happens when loading a package and the file cannot
    be opened or loaded correctly
    into the XML document. This can be the result of either providing an incorrect file name was specified when calling LoadPackage or the XML file was specified and has an incorrect format.
    End Error
    Could not load package "D:\Temp\SSIS_TESTING\TESTSSIS\TESTSSIS\Package.dtsx" because of error 0xC0011002.
    Description: Failed to open package file "D:\Temp\SSIS_TESTING\TESTSSIS\TESTSSIS\Package.dtsx" due to error 0x80070003 "The system cannot find the path specified.".  This happens when loading a package and the file cannot be opened
    or loaded correctly int
    o the XML document. This can be the result of either providing an incorrect file name was specified when calling LoadPackage or the XML file was specified and has an incorrect format.
    Source: {1244CD18-F96A-4DAD-8FC2-35F794015CA1}
    Started:  5:06:26 AM
    Finished: 5:06:26 AM
    Elapsed:  0.047 seconds
    NULL
    I'm getting Execte SSIS Package Status : 4
    ===================================
    4

    Two things to check
    1. The account executing the package has access to the path. If package is stored in different server you need to pass the UNC path (ie like \\machinename\...)
    2. Make sure the version of SSIS service is the same in both the servers ie where package is created/stored and where its getting executed. A lower version SSIS service will not be able to load and execute higher version package and it will throw you similar
    error messages as you posted above.
    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

  • Running multiple SSIS packages using SQL Server Agent question.

    I have a multitude of SSIS packages I want to run using SQL Server Agent.  What would the best practice be for running these jobs using SQL Server Agent?  One job per package or running all pakages from one job?  If you have an answer can
    you explain the technical reasoning behind your answer?  Thanks in advance.
    Stan Benner

    Hi, maybe a bit more analysis will give a better answer
    Do all the packages have to run in sequence? (if yes, single job better)
    Can the list of packages to be executed be grouped by dependency (ex package 1,2 and 5 must run in sequence and can be executed by one job, while package 3,4 are not dependent on package 1,2 and 5 can be run by a separate job).
    Can any jobs be run in parallel?
    How often will the package execution sequence change?
    How will you deploy your packages and job? (the more jobs to create the more install script needed and upgrade scenarios become messy).
    My personal preference:
    I create ONE ssis package which is executed by ONE sql agent job. lets call this 'PackageExecutionWrapper.dtsx'
    PackageExectionWrapper then contains multiple 'Execute Package' tasks for the packages you want to execute.
    In the package you can apply any package execution rules - which packages have to run after the other, which packages can run concurrently, which packages should only run if previous succeeded.
    If you need to change the sequence, simple, just update the PackageExecutionWrapper package.

  • Issue during Running Package using Sql Agent

    hi all
    I have an issue  when I deployed Package and Run package using sql agent.
    before a Successfully Run Package without Any error. but in job It gives me error.
    Executed as user: abc\sqlserver. Microsoft (R) SQL Server Execute Package Utility  Version 10.50.4000.0 for 64-bit  Copyright (C) Microsoft Corporation 2010. All rights reserved.    Started:  08:28:11  Error: 2014-02-12
    08:28:11.86     Code: 0xC0016016     Source:       Description: Failed to decrypt protected XML node "DTS:Password" with error 0x8009000B "Key not valid for use in specified
    state.". You may not be authorized to access this information. This error occurs when there is a cryptographic error. Verify that the correct key is available.  End Error  Error: 2014-02-12 08:28:11.97     Code: 0xC0202009    
    Source: PAckageNameReport Connection manager "....................."     Description: SSIS Error Code DTS_E_OLEDBERROR.  An OLE DB error has occurred. Error code: 0x80040E4D.  An OLE DB record is available. 
    Source: "Microsoft SQL Server Native Client 10.0"  Hresult: 0x80040E4D  Description: "Login failed for user .....".  End Error  Error: 2014-02-12 08:28:11.97     Code: 0xC020801C    
    Source: Import into Excel OLE DB Source [1]     Description: SSIS Error Code DTS_E_CANNOTACQUIRECONNECTIONFROMCONNECTIONMANAGER.  The AcquireConnection method call to the connection manager "....................." failed
    with error code 0xC0202009.  There may be error messages posted before this with more information on why the AcquireConnection method call failed.  End Error  Error: 2014-02-12 08:28:11.97     Code: 0xC0047017    
    Source: Import into Excel SSIS.Pipeline     Description: component "OLE DB Source" (1) failed validation and returned error code 0xC020801C.  End Error  Error: 2014-02-12 08:28:11.97     Code: 0xC004700C    
    Source: Import into Excel SSIS.Pipeline     Description: One or more component failed validation.  End Error  Error: 2014-02-12 08:28:11.97     Code: 0xC0024107     Source: Import into Excel     
    Description: There were errors during task validation.  End Error  DTExec: The package execution returned DTSER_FAILURE (1).  Started:  08:28:11  Finished: 08:28:11  Elapsed:  0.14 seconds.  The package execution failed. 
    The step failed.
    I'm using Sql Authentication.
    Kindly Help.
    thanks

    Hi BI_group,
    According to the error message, the issue may occur due to two possible reasons: protection level of the package or the 32-bit/64-bit driver issue.
    For the first possible reason, it may be that package still uses the default protection level EncryptSensitiveWithUserKey after it is deployed, however, the SQL Server Agent job runs under a different user account. To avoid the issue, you can re-deploy the
    package and set the package protection level to EncryptSensitiveWithPassword or DontSaveSensitive during the deployment. If it is set to EncryptSensitiveWithPassword, we need to configure the Execution options of the job step to use the
    /decrypt password option in the DTexec utility command line to decrypt the encrypted data. If the package is deployed to the SQL Server or SSISDB catalog, we can set the protection level to Rely on server storage for encryption or ServerStorage.
    If it is not the case, check whether it is caused by the 32-bit/64-bit driver issue. For a 64-bit SSIS server, it uses 64-bit drivers by default, however, BIDS/SSDT uses 32-bit drivers unless the Run64BitRuntime property of the IS project is set to true.
    In the BIDS/SSDT, check the Run64BitRuntime property to see if it runs in 32-bit or 64-bit runtime. This enable us to judge whether we need to check the “Use 32 bit runtime” option for the job step.
    Regards,
    Mike Yin
    TechNet Community Support

  • Error executing SSIS packages from Agent

    Hi All,
         I designed SSIS package that loads data from Oracle table to SQl server table along with loading data into Diension and fact tables using SSIS packages only. First I created all SSIS packages that loads data into Staging tables from
    Oracle table in next level loading data into Dimension table and final level is loading data into Fact table. At lasts I created One master package there I'm calling all packages (Execute package task) differently.
    Configuration type: Parent package configuration for All child packages. XML config for parent package.
    When I execute SSIS package from BIDS data is loading up to Fact table. When I execute SSIS packages through Sql server agent ( Using File System Deployment)When I execute SSIS package from Sql server agent it is throwing an error message like 
    Message
    Executed as user: . Microsoft (R) SQL Server Execute Package Utility  Version 11.0.2100.60 for 32-bit  Copyright (C) Microsoft Corporation. All rights reserved.    Started:  10:45:10 PM  Error: 2013-10-17 22:45:12.60    
    Code: 0xC00220E6     Source: Master Data      Description: There is no project to reference.  End Error  Error: 2013-10-17 22:45:12.61     Code: 0xC0024107     Source:
    Master Data      Description: There were errors during task validation.  End Error  DTExec: The package execution returned DTSER_FAILURE (1).  Started:  10:45:10 PM  Finished: 10:45:13 PM  Elapsed: 
    2.59 seconds.  The package execution failed.  The step failed.
    I'm uploaded config file also while at the time of scheduling job.
    Regards,
    Praveen
    Regards, Praveen

    Hi Praveen,
    The issue may occur if the SQL Server Agent Service Account or Proxy account doesn’t have sufficient permissions. Please create a SQL Server Agent Proxy account that has the permissions to execute the package and perform update operations on the SQL Server
    fact tables.
    Reference:
    http://technet.microsoft.com/en-us/library/ms175834.aspx
    Regards,
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Trying to Execute Catalog SSIS Package using Catalog stored proc by a Master SSIS package inside a Loop

    Hi Guys ,
    To Execute Packages deployed in Catalog , I have created a wrapper SP  which internally calls  catalog SP  ( below is the code )
    ALTER PROCEDURE [Publish].[usp_ExecutePackages]
                  @PackageName NVARCHAR(255) 
           ,      @ProjectFolder    NVARCHAR(255) 
           ,      @ProjectName NVARCHAR(255) 
    AS    
    BEGIN
    SET NOCOUNT ON;
    DECLARE @Execution_id BIGINT ;
    EXEC [SSISDB].[catalog].[create_execution] @package_name
    = @PackageName
    ,   @execution_id
    = @Execution_id OUTPUT
    ,   @folder_name
    = @ProjectFolder
    ,   @project_name
    = @ProjectName
    ,   @use32bitruntime=
    True;
    EXEC [SSISDB].[catalog].[set_execution_parameter_value] 
    @execution_id,  
    @object_type=50, 
    @parameter_name=N'SYNCHRONIZED', 
    @parameter_value=1
    EXEC [SSISDB].[catalog].[start_execution]            @Execution_id
    Since i have multiple Packages , I am looping through list of PackageName and trying to pass package names to this SP by ExecureSQLTask inside ForLoop Container . But it errors out saying 
     "Cannot access the package or the package does not exist. Verify that the package exists and that the user has permissions to it.
    BUt same Execute SQL task , if i keep it outside the ForLoop Container it works perfectly fine . 
    I am  clueless , Please Please HELP me ASAP :( 
    Question :
    How is that possible to execute same SP with same parameter outside Container , But not in SEQUENCE or FORLOOP or FOREACH Container ?
    Also 
    How to make a master package to execute SSIS deployed packages via TSQL using catalog stored proc ?
    Please help me out .
    Thanks 
    Prasanna Selvaraju

    Hi , 
    After debugging i am getting parameter values as  
    {Extract - ARTL.dtsx\r\n} Unable to evaluate the expression.
    Why do i get  \r\n which i dont want in parameters .
    Actually i pick the values of package name from a custom table . I check it there are no spaces in the cell.
    Any IDEA WHY ? Please help
    Finally it worked to call Wrapper Class for EXEC [SSISDB].[catalog].[create_execution]
    stored procedure .
    Basically , ERROR MESSAGE is culprit
     "Cannot access the package or the package does
    not exist. Verify that the package exists and that the user has permissions to it. 
    Above Message : causing us to think
    its an Access issue , But actually when you pass parameter incorrectly even a " " space or "\n" extra to value, you will get that error .
    Nothing related to access problem .
    Actually , In the parameter which i was passing :
    {Extract - ARTL.dtsx\r\n} --> String with Enter / Carriage Return and Break line was there 
    I have removed the Enter in that variable value .
    Now its WORKING FINE ! Hurry :D :) 

  • Execute procedure in a package using the caller privileges?

    Is it possible to execute a procedure within a package using the privileges of the caller rather than the privileges of the package owner? So if we have a procedure that does a select, one that does an insert, and another for update and a 4th for delete, then we just want to grant execute to user X on the select procedure in the package. This is a developer request. I think I just need to tell the requestor to copy or move the procedure out of the package and into it's own procedure so that it's safe to run by user X and not grant execute on the package since I don't believe it is possible to specify what procedures in a package are granted execute since that command is a blanket for the whole package right?
    Example - fails due to specifying the proc:
    grant execute on scmemaname.pkgname.procname to usr;
    There's no other command to do that is there?
    Thanks,
    Dave
    Edited by: Gib on Jan 19, 2010 8:42 AM

    AUTHID is at the package level ... not the individual function or procedure.
    Create a second package.

  • Executing A Procedure In a Package Using DBLink

    I need to execute a procedure which is residing in a package using dblink.
    The package got a execute PUBLIC grant.
    When I execute the following statement, I am getting error ORA: 00904, Invalid Identifier
    select PKG_NAME.PROCEDURE_NAME@dblink(null,null,null,null,null,null,null,null,null,null,null) from dual
    How can I execute the above statement.
    Thanks in advance

    I have a database INLABNEW in that i have done this
    SQL> create table temp(no number)
      2  /
    Table created.
    SQL> create or replace package pkg
      2  as
      3     procedure p;
      4  end;
      5  /
    Package created.
    SQL>  create or replace package body pkg
      2   as
      3      procedure p
      4      is
      5      begin
      6             insert into temp values(1);
      7      end;
      8   end;
      9  /
    Package body created.
    SQL> select * from temp
      2  /
    no rows selectedNow i executed the procedure pkg.p from another database
    SQL> exec pkg.p@to_inlabnew
    PL/SQL procedure successfully completed.
    SQL> commit
      2  /And i query the table tmp in INLABNEW
    SQL> select * from temp
      2  /
            NO
             1Now question is have you given your procedure name properly.
    as your procedure is in a package it should be Your_package_name.Your_procedure_name@Your_db_link

  • Error: The Task has failed to load on Execute Package Task using TFS Build and MSBuild.exe on dedicated Build Machine.

    I'm trying to automate my building and deployment of SSIS packages using TFS build definitionss in conjunction with MSBuild.exe on a separate build machine.
    I have successfully built and deployed my projects but receive the following error:
    Error: Failed to load task "etl_UWP_Stage_tstg_7_Large",type "".  The contact information for this task is "Microsoft Corporation: Microsoft SQL Server .... "
    This error happens at runtime as well as if I perform a "Validate..." on the SSIS Catalog on the server.
    This only occurs when trying to execute a package that contains an Execute Package Task.  Any other packages that are doing the actual work are working just fine.
    In addition, when I do the MSBuild from my developer machine with the same deployment process everything works fine, even the Execute Package Task.
    I can even open up the project on the build machine in VS2012, rebuild all, then deploy and everything works fine.
    Some things I've considered/verified:
    1) Visual Studio 2012 and Visual Studio Data Tools 2012 are both on the build machine and my local machine.
    2) The .NET version being used by VS2012 is the same on the build machine and my local machine.
    3) I find it suspicious that the "Type" referenced in the error above is blank...but not sure where to go with that.
    4) Obvious difference is that during the TFS Build and Deploy on the build machine, everything is running under the TFS Service account, rather than my account...once again...not sure where to go with this, but it is a significant difference.
    Has anyone had similar issues or have any thoughts on things to try?
    Thanks,
    Jason

    Not sure why I couldn't find this answer in my earlier searches...
    But this thread solved it for me:
    https://social.msdn.microsoft.com/Forums/sqlserver/en-US/3aa1e324-da32-4ea0-865c-c69f610ef262/failed-to-load-execute-package-task-error?forum=sqlintegrationservices
    Essentially I had to install SSIS on the build machine so that the 64-bit version for
    ExecPackageTask.dll, was available.  I did this from the original media CD selection Integration Services as a feature.
    Hope this helps someone in the future.

  • Which user/credentials does APEX use to execute packages

    Which user does APEX use to execute a function or procedure in the parsing scheme of an application. I am trying to debug an custom authentication scheme which calls a package procedure.

    Mathias Oracle wrote:
    Which user does APEX use to execute a function or procedure in the parsing scheme of an application. I am trying to debug an custom authentication scheme which calls a package procedure.APEX connects to the database using connection pooling as the APEX_PUBLIC_USER or ANONYMOUS schemas, depending on the webserver configuration (except where a DAD has no username/password defined). Code is executed via the <tt>dbms_sys_sql</tt> package using the privileges of the application parsing schema. See:
    {message:id=926724}
    {message:id=1224601}
    Application Express and parsing of SQL

  • Unable to deploy package

    Hi Everyone,
    Attempting to build a new reference image(Hyper-V) with the latest version's of CC. I have built the package using CCP 1.4 but have had no success in deployment of the software. I run the exceptions before hand to install Arcobat and that works, but once i try and install the main package it exits without error and does not install anything. I have tried install from network location and local drive with no success. I have tried on a Windows 7 SP1 image and also on a windows 8.1 image. I'm not sure if this is something wrong with CCP 1.4 or something else?
    EDIT: I have just attemped to install on physical hardware and am getting the same error. I have no idea what is causing this.
    I have rebuilt the package in 1.4 about 5 times with no difference. Any help would be fantastic!
    Log files below
    LBS.log
    04/01/14 10:02:01:547 | [INFO] |  | ACC | LBS | ApplicationFacade |  |  | 3644 | ****************Starting LBS workflow*******************
    04/01/14 10:02:01:553 | [INFO] |  | ACC | LBS | ProductInfo |  |  | 3644 | Product Sap Code not specified in the product information file
    04/01/14 10:02:01:553 | [INFO] |  | ACC | LBS | ProductInfo |  |  | 3644 | Applet Version not specified in the product information file
    04/01/14 10:02:01:553 | [INFO] |  | ACC | LBS | ProductInfo |  |  | 3644 | Applet ID not specified in the product information file
    04/01/14 10:02:01:553 | [INFO] |  | ACC | LBS | ProductInfo |  |  | 3644 | Product locale not specified in the product information file
    04/01/14 10:02:01:553 | [INFO] |  | ACC | LBS | ProductInfo |  |  | 3644 | Product name not specified in the product information file
    04/01/14 10:02:01:553 | [INFO] |  | ACC | LBS | LBSUtils |  |  | 3644 | Launching LBS in elevated mode with arguments: '--mode=silent --action=install --edtWorkFlow=1 --skipACC=1 DISABLE_CCM_DESKTOPSHORTCUT --shouldLaunchACC=false --aamHelperPipeName={5F5AE4C5-2D28-4C29-951D-6FDA7E3FB338} --workflowId={EA4E682D-FF9D-4E55-9421-F6E32378406A}'
    04/01/14 10:02:01:685 | [ERROR] |  | ACC | LBS | LBSUtils |  |  | 3644 | Failed to launch LBS in elevated mode. LastError: 1155
    04/01/14 10:02:01:685 | [INFO] |  | ACC | LBS | ApplicationFacade |  |  | 3644 | ****************Closing LBS workflow*******************
    PDApp.log
    04/01/14 10:01:53:690 | [INFO] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3588 | Build Version - 1.4.0.37
    04/01/14 10:01:53:690 | [INFO] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3588 | Logging Level verbosity Set  to 4
    04/01/14 10:01:53:691 | [INFO] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3588 | Executing immediate custom action for install mode.
    04/01/14 10:01:53:691 | [INFO] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3588 | The CustomActionData string is : mode=install;sourceDir=\\server\share\Adobe Creative Cloud x64\Build\;installDir=;origDB=\\server\share\Adobe Creative Cloud x64\Build\Adobe Creative Cloud x64.msi
    04/01/14 10:01:53:691 | [INFO] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3588 | Successfully executed the immediate custom action for install mode .
    04/01/14 10:02:00:579 | [INFO] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | Build Version - 1.4.0.37
    04/01/14 10:02:00:579 | [INFO] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | Logging Level verbosity Set  to 4
    04/01/14 10:02:00:579 | [INFO] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | Executing the deferred custom action.
    04/01/14 10:02:00:617 | [INFO] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | Obtained the following as CustomActionData
    04/01/14 10:02:00:618 | [INFO] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | mode=install;sourceDir=\\server\shareAdobe Creative Cloud x64\Build\;installDir=;origDB=\\server\share\Adobe Creative Cloud x64\Build\Adobe Creative Cloud x64.msi
    04/01/14 10:02:00:618 | [INFO] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | mode=install;sourceDir=\server\share\Adobe Creative Cloud x64\Build\;installDir=;origDB=\\server\share\Adobe Creative Cloud x64\Build\Adobe Creative Cloud x64.msi
    04/01/14 10:02:00:618 | [INFO] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | Original database path is : \\server\share\Adobe Creative Cloud x64\Build\Adobe Creative Cloud x64.msi
    04/01/14 10:02:00:651 | [INFO] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | OptionXML saved at location :: C:\Users\ADMINI~1\AppData\Local\Temp\{E91ACD63-6E37-42DA-818C-9FCE43DF497D}\\{E696BAF3-DE 6F-494D-994A-4E488453EE03}
    04/01/14 10:02:00:757 | [INFO] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | Build Version - 1.4.0.37
    04/01/14 10:02:00:757 | [INFO] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | Logging Level verbosity Set  to 4
    04/01/14 10:02:00:757 | [INFO] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | Initializing Custom Action Data from parameters
    04/01/14 10:02:00:757 | [INFO] |  | ASU | DeploymentManager | Utilities |  |  | 3636 | Folder does not exist
    04/01/14 10:02:00:757 | [INFO] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | Provisioning Tool path is (C:\Users\ADMINI~1\AppData\Local\Temp\{E91ACD63-6E37-42DA-818C-9FCE43DF497D}\\{BDFD99FC-3 095-4AC8-9BBE-BFF20ACECF8C}).
    04/01/14 10:02:00:767 | [INFO] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | Starting to run the custom action for install mode
    04/01/14 10:02:00:767 | [INFO] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | STEP 1: Starting to parse Option XML.
    04/01/14 10:02:00:807 | [INFO] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | Self-Update BootStrapper Relative Path doesn't exist.
    04/01/14 10:02:00:808 | [INFO] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | No of updates found (21).
    04/01/14 10:02:00:825 | [INFO] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | Number of Medias found = 11
    04/01/14 10:02:00:825 | [INFO] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | Deployment Manager is running in Install Mode.
    04/01/14 10:02:00:829 | [INFO] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | Deployment XML created at path :: C:\Users\ADMINI~1\AppData\Local\Temp\{C273C7D5-F00E-4C6E-8B1D-63B24ECB7565}\\{9C1C0FFA-01 BD-4414-91E8-9CD4608D089C}
    04/01/14 10:02:00:832 | [INFO] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | Override XML created at path :: C:\Users\ADMINI~1\AppData\Local\Temp\{C273C7D5-F00E-4C6E-8B1D-63B24ECB7565}\\{D2020361-B6 D4-4139-BD6D-71305BF763F1}
    04/01/14 10:02:00:836 | [INFO] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | Deployment XML created at path :: C:\Users\ADMINI~1\AppData\Local\Temp\{C273C7D5-F00E-4C6E-8B1D-63B24ECB7565}\\{CBC0E09C-6B 2E-4D3A-BEEE-0CCAB826F646}
    04/01/14 10:02:00:839 | [INFO] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | Override XML created at path :: C:\Users\ADMINI~1\AppData\Local\Temp\{C273C7D5-F00E-4C6E-8B1D-63B24ECB7565}\\{4E2E710B-19 3B-47F9-805A-34C097E176C4}
    04/01/14 10:02:00:844 | [INFO] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | Deployment XML created at path :: C:\Users\ADMINI~1\AppData\Local\Temp\{C273C7D5-F00E-4C6E-8B1D-63B24ECB7565}\\{8C5DAC8F-73 37-4BB7-B352-610E1CFFDD1A}
    04/01/14 10:02:00:847 | [INFO] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | Override XML created at path :: C:\Users\ADMINI~1\AppData\Local\Temp\{C273C7D5-F00E-4C6E-8B1D-63B24ECB7565}\\{8BE4EC26-92 78-4289-A468-083AB46C011D}
    04/01/14 10:02:00:851 | [INFO] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | Deployment XML created at path :: C:\Users\ADMINI~1\AppData\Local\Temp\{C273C7D5-F00E-4C6E-8B1D-63B24ECB7565}\\{42B5C2F2-76 9A-419F-BDF4-75F71465BA60}
    04/01/14 10:02:00:854 | [INFO] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | Override XML created at path :: C:\Users\ADMINI~1\AppData\Local\Temp\{C273C7D5-F00E-4C6E-8B1D-63B24ECB7565}\\{42BEC68C-EE AB-4E2F-BBB5-045724EBB9A9}
    04/01/14 10:02:00:858 | [INFO] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | Deployment XML created at path :: C:\Users\ADMINI~1\AppData\Local\Temp\{C273C7D5-F00E-4C6E-8B1D-63B24ECB7565}\\{4CE714E6-B7 63-4540-85A1-D95332FD7D73}
    04/01/14 10:02:00:861 | [INFO] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | Override XML created at path :: C:\Users\ADMINI~1\AppData\Local\Temp\{C273C7D5-F00E-4C6E-8B1D-63B24ECB7565}\\{5E7EC6AC-52 D6-42D0-87B7-85692A087458}
    04/01/14 10:02:00:865 | [INFO] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | Deployment XML created at path :: C:\Users\ADMINI~1\AppData\Local\Temp\{C273C7D5-F00E-4C6E-8B1D-63B24ECB7565}\\{68CFFCF8-43 74-4FE7-A05D-64908DE6A927}
    04/01/14 10:02:00:868 | [INFO] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | Override XML created at path :: C:\Users\ADMINI~1\AppData\Local\Temp\{C273C7D5-F00E-4C6E-8B1D-63B24ECB7565}\\{41F0437C-6D 61-4991-9913-A78032B249EA}
    04/01/14 10:02:00:874 | [INFO] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | Deployment XML created at path :: C:\Users\ADMINI~1\AppData\Local\Temp\{C273C7D5-F00E-4C6E-8B1D-63B24ECB7565}\\{D6A5A110-B3 5A-4FF6-A333-4EC940F61A18}
    04/01/14 10:02:00:877 | [INFO] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | Override XML created at path :: C:\Users\ADMINI~1\AppData\Local\Temp\{C273C7D5-F00E-4C6E-8B1D-63B24ECB7565}\\{64B93FF5-51 05-4B9C-BF0C-6F246A1DB258}
    04/01/14 10:02:00:882 | [INFO] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | Deployment XML created at path :: C:\Users\ADMINI~1\AppData\Local\Temp\{C273C7D5-F00E-4C6E-8B1D-63B24ECB7565}\\{78AC2609-65 FB-4058-8893-96E8D0B018B3}
    04/01/14 10:02:00:884 | [INFO] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | Override XML created at path :: C:\Users\ADMINI~1\AppData\Local\Temp\{C273C7D5-F00E-4C6E-8B1D-63B24ECB7565}\\{4D5C0E81-29 A8-4A1A-832A-D4D153EDDCF0}
    04/01/14 10:02:00:889 | [INFO] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | Deployment XML created at path :: C:\Users\ADMINI~1\AppData\Local\Temp\{C273C7D5-F00E-4C6E-8B1D-63B24ECB7565}\\{57EA3869-00 B4-4571-A37D-AFEF60715C70}
    04/01/14 10:02:00:892 | [INFO] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | Override XML created at path :: C:\Users\ADMINI~1\AppData\Local\Temp\{C273C7D5-F00E-4C6E-8B1D-63B24ECB7565}\\{E74936CC-1A E6-488A-B6A9-DD359961104F}
    04/01/14 10:02:00:896 | [INFO] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | Deployment XML created at path :: C:\Users\ADMINI~1\AppData\Local\Temp\{C273C7D5-F00E-4C6E-8B1D-63B24ECB7565}\\{CA89BD2D-B5 DF-4567-B365-703DD9369373}
    04/01/14 10:02:00:899 | [INFO] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | Override XML created at path :: C:\Users\ADMINI~1\AppData\Local\Temp\{C273C7D5-F00E-4C6E-8B1D-63B24ECB7565}\\{987BED4C-63 2F-473D-B02E-2A9311FCE089}
    04/01/14 10:02:00:903 | [INFO] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | Deployment XML created at path :: C:\Users\ADMINI~1\AppData\Local\Temp\{C273C7D5-F00E-4C6E-8B1D-63B24ECB7565}\\{BF0BAD20-A9 A4-4922-BDCB-A56B173F6299}
    04/01/14 10:02:00:906 | [INFO] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | Override XML created at path :: C:\Users\ADMINI~1\AppData\Local\Temp\{C273C7D5-F00E-4C6E-8B1D-63B24ECB7565}\\{5ECC8EDD-25 FA-468F-855D-D5F4D784F7B3}
    04/01/14 10:02:00:931 | [WARN] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | Failed to find the pdb database.
    04/01/14 10:02:00:931 | [WARN] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | Failed to get the local payload database handle.
    04/01/14 10:02:00:931 | [INFO] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | STEP 2: Starting to launch ASU AAM.
    04/01/14 10:02:00:931 | [INFO] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | Bootstrapper launch location is :: \\server\share\Adobe Creative Cloud x64\Build\ASU\Set-up.dat
    04/01/14 10:02:01:696 | [INFO] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | Build Version - 1.4.0.37
    04/01/14 10:02:01:696 | [INFO] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | Logging Level verbosity Set  to 4
    04/01/14 10:02:01:696 | [FATAL] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | The Bootstrapper Process is (-1).Stopping the installation process.
    04/01/14 10:02:01:696 | [INFO] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | Starting to clean the partially installed payloads.
    04/01/14 10:02:01:709 | [INFO] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | Undeployment XML created at path :: C:\Users\ADMINI~1\AppData\Local\Temp\{C273C7D5-F00E-4C6E-8B1D-63B24ECB7565}\\{F45940D9-1A DB-4D20-AD82-61DBD1401EB1}
    04/01/14 10:02:01:709 | [INFO] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | Starting to launch the Adobe Installer for uninstall mode.
    04/01/14 10:02:01:709 | [INFO] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | Obtained Adobe Common Folder Path.
    04/01/14 10:02:01:709 | [INFO] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\DECore\Setup.exe
    04/01/14 10:02:01:709 | [ERROR] |  | ASU | DeploymentManager | AAMEEUtilities |  |  | 3636 | CreateProcess failed. PathToProcess does not exist.
    04/01/14 10:02:01:709 | [FATAL] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | Failed to launch the Adobe Installer process.Stopping the uninstallation process.
    04/01/14 10:02:01:710 | [WARN] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | Failed to find the pdb database.
    04/01/14 10:02:01:710 | [WARN] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | Failed to get the local payload database handle.
    04/01/14 10:02:01:717 | [INFO] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | Undeployment XML created at path :: C:\Users\ADMINI~1\AppData\Local\Temp\{C273C7D5-F00E-4C6E-8B1D-63B24ECB7565}\\{B55B8437-3E 04-4525-A9A1-B69C872682B9}
    04/01/14 10:02:01:717 | [INFO] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | Starting to launch the Adobe Installer for uninstall mode.
    04/01/14 10:02:01:717 | [INFO] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | Obtained Adobe Common Folder Path.
    04/01/14 10:02:01:718 | [INFO] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\DECore\Setup.exe
    04/01/14 10:02:01:718 | [ERROR] |  | ASU | DeploymentManager | AAMEEUtilities |  |  | 3636 | CreateProcess failed. PathToProcess does not exist.
    04/01/14 10:02:01:718 | [FATAL] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | Failed to launch the Adobe Installer process.Stopping the uninstallation process.
    04/01/14 10:02:01:718 | [WARN] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | Failed to find the pdb database.
    04/01/14 10:02:01:718 | [WARN] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | Failed to get the local payload database handle.
    04/01/14 10:02:01:726 | [INFO] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | Undeployment XML created at path :: C:\Users\ADMINI~1\AppData\Local\Temp\{C273C7D5-F00E-4C6E-8B1D-63B24ECB7565}\\{7F969880-DB 17-4D26-8E23-80011DD8CB1B}
    04/01/14 10:02:01:726 | [INFO] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | Starting to launch the Adobe Installer for uninstall mode.
    04/01/14 10:02:01:726 | [INFO] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | Obtained Adobe Common Folder Path.
    04/01/14 10:02:01:726 | [INFO] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\DECore\Setup.exe
    04/01/14 10:02:01:726 | [ERROR] |  | ASU | DeploymentManager | AAMEEUtilities |  |  | 3636 | CreateProcess failed. PathToProcess does not exist.
    04/01/14 10:02:01:727 | [FATAL] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | Failed to launch the Adobe Installer process.Stopping the uninstallation process.
    04/01/14 10:02:01:727 | [WARN] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | Failed to find the pdb database.
    04/01/14 10:02:01:727 | [WARN] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | Failed to get the local payload database handle.
    04/01/14 10:02:01:735 | [INFO] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | Undeployment XML created at path :: C:\Users\ADMINI~1\AppData\Local\Temp\{C273C7D5-F00E-4C6E-8B1D-63B24ECB7565}\\{0F3DADCC-1F 36-41AE-9230-B56D4C6BFB2C}
    04/01/14 10:02:01:736 | [INFO] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | Starting to launch the Adobe Installer for uninstall mode.
    04/01/14 10:02:01:736 | [INFO] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | Obtained Adobe Common Folder Path.
    04/01/14 10:02:01:736 | [INFO] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\DECore\Setup.exe
    04/01/14 10:02:01:736 | [ERROR] |  | ASU | DeploymentManager | AAMEEUtilities |  |  | 3636 | CreateProcess failed. PathToProcess does not exist.
    04/01/14 10:02:01:736 | [FATAL] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | Failed to launch the Adobe Installer process.Stopping the uninstallation process.
    04/01/14 10:02:01:736 | [WARN] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | Failed to find the pdb database.
    04/01/14 10:02:01:736 | [WARN] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | Failed to get the local payload database handle.
    04/01/14 10:02:01:742 | [INFO] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | Undeployment XML created at path :: C:\Users\ADMINI~1\AppData\Local\Temp\{C273C7D5-F00E-4C6E-8B1D-63B24ECB7565}\\{79C9D578-B3 7E-4E76-8F12-2980344D1076}
    04/01/14 10:02:01:742 | [INFO] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | Starting to launch the Adobe Installer for uninstall mode.
    04/01/14 10:02:01:742 | [INFO] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | Obtained Adobe Common Folder Path.
    04/01/14 10:02:01:742 | [INFO] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\DECore\Setup.exe
    04/01/14 10:02:01:742 | [ERROR] |  | ASU | DeploymentManager | AAMEEUtilities |  |  | 3636 | CreateProcess failed. PathToProcess does not exist.
    04/01/14 10:02:01:742 | [FATAL] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | Failed to launch the Adobe Installer process.Stopping the uninstallation process.
    04/01/14 10:02:01:743 | [WARN] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | Failed to find the pdb database.
    04/01/14 10:02:01:743 | [WARN] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | Failed to get the local payload database handle.
    04/01/14 10:02:01:751 | [INFO] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | Undeployment XML created at path :: C:\Users\ADMINI~1\AppData\Local\Temp\{C273C7D5-F00E-4C6E-8B1D-63B24ECB7565}\\{0B59C030-10 4C-44DA-815A-D94A8BF117FC}
    04/01/14 10:02:01:751 | [INFO] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | Starting to launch the Adobe Installer for uninstall mode.
    04/01/14 10:02:01:751 | [INFO] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | Obtained Adobe Common Folder Path.
    04/01/14 10:02:01:751 | [INFO] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\DECore\Setup.exe
    04/01/14 10:02:01:751 | [ERROR] |  | ASU | DeploymentManager | AAMEEUtilities |  |  | 3636 | CreateProcess failed. PathToProcess does not exist.
    04/01/14 10:02:01:751 | [FATAL] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | Failed to launch the Adobe Installer process.Stopping the uninstallation process.
    04/01/14 10:02:01:751 | [WARN] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | Failed to find the pdb database.
    04/01/14 10:02:01:752 | [WARN] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | Failed to get the local payload database handle.
    04/01/14 10:02:01:760 | [INFO] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | Undeployment XML created at path :: C:\Users\ADMINI~1\AppData\Local\Temp\{C273C7D5-F00E-4C6E-8B1D-63B24ECB7565}\\{1A4DAF26-BC 53-4862-B764-7BE0BDB792AA}
    04/01/14 10:02:01:760 | [INFO] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | Starting to launch the Adobe Installer for uninstall mode.
    04/01/14 10:02:01:760 | [INFO] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | Obtained Adobe Common Folder Path.
    04/01/14 10:02:01:760 | [INFO] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\DECore\Setup.exe
    04/01/14 10:02:01:760 | [ERROR] |  | ASU | DeploymentManager | AAMEEUtilities |  |  | 3636 | CreateProcess failed. PathToProcess does not exist.
    04/01/14 10:02:01:760 | [FATAL] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | Failed to launch the Adobe Installer process.Stopping the uninstallation process.
    04/01/14 10:02:01:760 | [WARN] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | Failed to find the pdb database.
    04/01/14 10:02:01:760 | [WARN] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | Failed to get the local payload database handle.
    04/01/14 10:02:01:782 | [INFO] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | Undeployment XML created at path :: C:\Users\ADMINI~1\AppData\Local\Temp\{C273C7D5-F00E-4C6E-8B1D-63B24ECB7565}\\{8350C2F2-5A DC-4E42-8639-06F86B6A8699}
    04/01/14 10:02:01:782 | [INFO] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | Starting to launch the Adobe Installer for uninstall mode.
    04/01/14 10:02:01:782 | [INFO] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | Obtained Adobe Common Folder Path.
    04/01/14 10:02:01:782 | [INFO] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\DECore\Setup.exe
    04/01/14 10:02:01:782 | [ERROR] |  | ASU | DeploymentManager | AAMEEUtilities |  |  | 3636 | CreateProcess failed. PathToProcess does not exist.
    04/01/14 10:02:01:782 | [FATAL] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | Failed to launch the Adobe Installer process.Stopping the uninstallation process.
    04/01/14 10:02:01:783 | [WARN] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | Failed to find the pdb database.
    04/01/14 10:02:01:783 | [WARN] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | Failed to get the local payload database handle.
    04/01/14 10:02:01:790 | [INFO] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | Undeployment XML created at path :: C:\Users\ADMINI~1\AppData\Local\Temp\{C273C7D5-F00E-4C6E-8B1D-63B24ECB7565}\\{A81D0133-4A C6-40BF-BF90-D18EB0BC182B}
    04/01/14 10:02:01:790 | [INFO] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | Starting to launch the Adobe Installer for uninstall mode.
    04/01/14 10:02:01:790 | [INFO] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | Obtained Adobe Common Folder Path.
    04/01/14 10:02:01:790 | [INFO] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\DECore\Setup.exe
    04/01/14 10:02:01:791 | [ERROR] |  | ASU | DeploymentManager | AAMEEUtilities |  |  | 3636 | CreateProcess failed. PathToProcess does not exist.
    04/01/14 10:02:01:791 | [FATAL] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | Failed to launch the Adobe Installer process.Stopping the uninstallation process.
    04/01/14 10:02:01:791 | [WARN] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | Failed to find the pdb database.
    04/01/14 10:02:01:791 | [WARN] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | Failed to get the local payload database handle.
    04/01/14 10:02:01:801 | [INFO] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | Undeployment XML created at path :: C:\Users\ADMINI~1\AppData\Local\Temp\{C273C7D5-F00E-4C6E-8B1D-63B24ECB7565}\\{28D5F060-2F 2A-4911-9780-12F096B69BF2}
    04/01/14 10:02:01:801 | [INFO] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | Starting to launch the Adobe Installer for uninstall mode.
    04/01/14 10:02:01:801 | [INFO] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | Obtained Adobe Common Folder Path.
    04/01/14 10:02:01:801 | [INFO] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\DECore\Setup.exe
    04/01/14 10:02:01:801 | [ERROR] |  | ASU | DeploymentManager | AAMEEUtilities |  |  | 3636 | CreateProcess failed. PathToProcess does not exist.
    04/01/14 10:02:01:801 | [FATAL] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | Failed to launch the Adobe Installer process.Stopping the uninstallation process.
    04/01/14 10:02:01:801 | [WARN] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | Failed to find the pdb database.
    04/01/14 10:02:01:801 | [WARN] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | Failed to get the local payload database handle.
    04/01/14 10:02:01:814 | [INFO] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | Undeployment XML created at path :: C:\Users\ADMINI~1\AppData\Local\Temp\{C273C7D5-F00E-4C6E-8B1D-63B24ECB7565}\\{F7D40BE3-E8 34-4855-8422-9D2D8952E485}
    04/01/14 10:02:01:814 | [INFO] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | Starting to launch the Adobe Installer for uninstall mode.
    04/01/14 10:02:01:814 | [INFO] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | Obtained Adobe Common Folder Path.
    04/01/14 10:02:01:814 | [INFO] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\DECore\Setup.exe
    04/01/14 10:02:01:814 | [ERROR] |  | ASU | DeploymentManager | AAMEEUtilities |  |  | 3636 | CreateProcess failed. PathToProcess does not exist.
    04/01/14 10:02:01:814 | [FATAL] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | Failed to launch the Adobe Installer process.Stopping the uninstallation process.
    04/01/14 10:02:01:814 | [WARN] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | Failed to find the pdb database.
    04/01/14 10:02:01:814 | [WARN] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | Failed to get the local payload database handle.
    04/01/14 10:02:01:817 | [INFO] |  | ASU | DeploymentManager | DeploymentManager |  |  | 3636 | The install workflow is terminating.

    I have completed some more testing yesterday and last night, still with no success. I even attemped installing the package that i created with the previous version of CCP, and it does not work now.
    I'm not sure if there has been a Windows update that breaks it.
    I'm going to install windows from disk and see if that make any difference. Becuase all of the other windows images that I have tested on have been deployed via MDT. I will let you know if I find anything.
    UPDATE: Have completed a completely fresh install of Windows 8.1 still get the same error.
    the only interesting line that i can find in log files is:
    MSI3003f.log
    CustomAction CADeploy returned actual error code 1603 (note this may not be 100% accurate if translation happened inside sandbox)
    MSI (s) (48:6C) [07:56:07:399]: Closing MSIHANDLE (7695) of type 790536 for thread 1088
    Action ended 7:56:07: InstallFinalize. Return value 3.
    This error message is useless, and I am unable to find any other log files to look though.

  • Unable to load package

    I have created an SSIS package in BI dev studio which i can debug and run fine. I have saved the dtsx file to a production server which calls it using dtexec as part of a batch script (we are migrating from foxpro). I am getting the following error that i dont understand.
    I dont know if this is relevant but i cant execute packages by double clicking them as DTexecui is not installed (not sure why as i have installed the client tools and integration server). Hardware is Dell poweredge 2850 dual xeon 2gb ram with win 2k sp4 and sql 2005 sp1.
    Microsoft (R) SQL Server Execute Package Utility
    Version 9.00.1399.06 for 32-bit
    Copyright (C) Microsoft Corp 1984-2005. All rights reserved.
    Started:  12:29:19
    Error: 2006-07-06 12:29:20.75
       Code: 0xC0011007
       Source: {B06EB426-BBE8-4E09-87FC-32ED753A142F}
       Description: Unable to load the package as XML because of package does not ha
    ve a valid XML format. A specific XML parser error will be posted.
    End Error
    Error: 2006-07-06 12:29:20.79
       Code: 0xC0011002
       Source: {B06EB426-BBE8-4E09-87FC-32ED753A142F}
       Description: Failed to open package file "\\SERVER_A\Scripts\CLIENT\Package.dtsx" due to error 0x800C0006 "The system cannot locate the object specified.".  This happens when loading a package and the file cannot be opened or loaded correctly  into the XML document. This can be the result of either providing an incorrect file name was specified when calling LoadPackage or the XML file was specified and has an incorrect format.
    End Error
    Could not load package "\\\\SERVER_A\Scripts\CLIENT\Package.dtsx" because of error 0xC0011002.
    Description: Failed to open package file \\SERVER_A\Scripts\CLIENT\Package.dtsx" due to error 0x800C0006 "The system cannot locate the object specified.".  This hap
    pens when loading a package and the file cannot be opened or loaded correctly in
    to the XML document. This can be the result of either providing an incorrect fil
    e name was specified when calling LoadPackage or the XML file was specified and
    has an incorrect format.
    Source: {B06EB426-BBE8-4E09-87FC-32ED753A142F}
    Started:  12:29:19
    Finished: 12:29:20
    Elapsed:  1.719 seconds

     We are having the same problem:
    My team is using SqlServer 2005 SSIS to develop  package for Consolidated Views. This works fine on my machine in Visual Studio when they run it as a script from command prompt from their desktop. However, when they move this package to ETL box, the package runs fine Visual Studio environment but fails when run from the script with the errors: 
    Started:  12:57:45 PM
    Error: 2006-08-04 12:57:45.87
       Code: 0xC0011007
       Source: {519D338B-8874-40A8-A385-0D53E868A57C}
    Description: Unable to load the package as XML because of package does not have a valid XML format. A specific XML parser error will be posted.
    End Error
    Error: 2006-08-04 12:57:45.87
       Code: 0xC0011002
       Source: {519D338B-8874-40A8-A385-0D53E868A57C}
    Description: Failed to open package file "C:\SM_BI_EXTRACTS_SHARED\Shared\Int
    egrated Views\Integrated Views\CV_Product.dtsx" due to error 0x800C0006 "The system cannot locate the object specified.".  This happens when loading a package a nd the file cannot be opened or loaded correctly into the XML document. This can be the result of either providing an incorrect file name was specified when calling LoadPackage or the XML file was specified and has an incorrect format.
    End Error
    Could not load package "C:\SM_BI_EXTRACTS_SHARED\Shared\Integrated Views\Integrated Views\CV_Product.dtsx" because of error 0xC0011002.
    Description: Failed to open package file "C:\SM_BI_EXTRACTS_SHARED\Shared\Integr
    ated Views\Integrated Views\CV_Product.dtsx" due to error 0x800C0006 "The system  cannot locate the object specified.".  This happens when loading a package and the file cannot be opened or loaded correctly into the XML document. This can be  the result of either providing an incorrect file name was specified when calling LoadPackage or the XML file was specified and has an incorrect format.
    Source: {519D338B-8874-40A8-A385-0D53E868A57C}
    Started:  12:57:45 PM
    Finished: 12:57:45 PM
    Elapsed:  0.016 seconds
    C:\SM_BI_EXTRACTS_SHARED\Shared>rem "C:\Program Files\Microsoft SQL Server\90\DT
    S\Binn\dtexec" /f "C:\SM_BI_EXTRACTS_SHARED\Shared\SSIS\IntegratedViews\Integrat
    edViews\CV_Sales_Rep.dtsx"
    C:\SM_BI_EXTRACTS_SHARED\Shared>rem "C:\Program Files\Microsoft SQL Server\90\DT
    S\Binn\dtexec" /f "C:\SM_BI_EXTRACTS_SHARED\Shared\SSIS\IntegratedViews\Integrat
    edViews\CV_Sales.dtsx"
    Can someone help us understand the problem? We are new to SSIS. We also want to know exactly what needs to be on the Server that will be running our SSIS ETL programs (that is, what components of SSIS -- SQL Server 2K5 is already loaded).
    We are using SQL 2005 on Dell Servers running Win 2003, with the latest service packs. Microsoft SQL Server Integration Services Designer Version 9.00.2047.00

Maybe you are looking for

  • Occaisional kernel panics: Panic log included

    Hey, I'm getting kernel panics when I have a lot of programs open, but while I still have plenty of inactive memory left per Activity Monitor. It may happen with several Firefox windows open, but it seems like it happens when there are less than a do

  • How do I edit the sound from an iMovie in garageband?

    well first off I have the iOS version of garageband and imovie. Anyhow, I made a video in iMovie and I want to add some reverb to the vocals. Is there anyway that I can do this in garageband? and if so, how would I do that? Thank you for your time...

  • Is icloud also used to store data?

    I have a 16 gb ipad my daughter uses to take videos of everything.  It is now full.  Can I purchase more icloud space and delete off the ipad so she can continue taking more videos?  Or will it only backup what I have room for on the ipad?  Any other

  • How can i avoid EOFException?

    Dear Friends, here raf is RandomAccessFile and Record is Object my doubt is when i execute is code, it was executed. and also it throws EOFException. i know what is the problem(EOF) how can i avoid this exception ? please give corrected code.........

  • Messages is not displaying avatars from google talk account

    I'm newer to using messages on my macbook pro. I've just recently upgraded to Mountain Lion and am loving the integration with imessage and my other chat client (google talk). Unfortunately, I'm not seeing all the nice avatars that are on my google t