Substr outside of string at /opt/oracle/Middleware/agent11g/EMStage/PAF/Job

Hi,
I have some issue while configuring the RAT(Real Application Testing), got error while preprocessing the capture workload on test database. My source target is 11.2.0.3 and destination target is 11.2.0.3.3 database. Below is the error. Below is the error from failed jobs log file.
substr outside of string at /opt/oracle/Middleware/agent11g/EMStage/PAF/Job_CAAD88CFA1160066E0430A5108892E78_dest/untar.pl line 56.

Google
http://www.perlmonks.org/?node_id=572129
http://lmgtfy.com/?q=substr+outside+of+string+at

Similar Messages

  • Looking for a substring within a string (regexp)

    Hi folks,
    I want to select a substring from a string
    string:
    21;0000;4145054;4;A;4 mit ALU XEOFX,117107,XEOFX YWY,1,YWY
    or
    21;0000;4145054;4;A;4 goldglamsnu XEOFX,198877,XEOFX YWY,1,YWY
    I'm looking for the substring:
    YWY,1,YWY
    and try this SQL statement
    SQL> select REGEXP_substr('21;0000;4145054;4;A;4 mit ALU XEOFX,117107,XEOFX YWY,1,YWY' ,',[^YWY]+[0-9]')
    2 from dual;
    REGEXP_
    ,117107
    I don't know where my mistake is. Can anybody please help me?
    Database Version 11G R2
    Thanks,
    ben
    Edited by: ben512 on May 14, 2013 5:05 PM

    Hi,
    ben512 wrote:
    Hi folks,
    I want to select a substring from a string
    string:
    21;0000;4145054;4;A;4 mit ALU XEOFX,117107,XEOFX YWY,1,YWY
    or
    21;0000;4145054;4;A;4 goldglamsnu XEOFX,198877,XEOFX YWY,1,YWY
    I'm looking for the substring:
    YWY,1,YWYWhy do you want that substring. Do you always want the last 9 characters of the string?
    If you're looking for a substring that starts with 'YWY', and then has any number (including 0) of commas, digits, and additional 'YWY' strings after it, then:
    REGEXP_SUBSTR ( str
               , 'YWY[,[:digit:]]*)
    I hope this answers your question.
    If not, post a little sample data (CREATE TABLE and INSERT statements, maybe 5 or 10 rows), and also post the results you want from that data. Include examples of any special cases you need to handle (e.g., the target pattern is not found at all, or it is found at 2 different places in the string).
    Explain, using specific examples, how you get those results from that data. Say what your business rules are.
    Always say which version of Oracle you're using (e.g., 11.2.0.2.0).
    See the forum FAQ {message:id=9360002}

  • Split string function in oracle ...

    Hello,
    Little question, is there any split string function available in Oracle.
    SQL> select more_info
    2 from dba_advisor_findings;
    MORE_INFO
    Allocated Space:4390912: Used Space:4237403: Reclaimable Space :153509:
    select more_info as Allocated_Space,
    more_info as Used_Space,
    more_info as Reclaimable_Space
    from dba_advisor_findings
    Allocated_Space Used_Space Reclaimable_Space
    4390912 4237403 153509
    Thanks,
    Manish Gupta

    I explored more on SUBSTR and INSTR string functions ... and below is the solution
    select substr(more_info,instr(more_info,':',1,1)+1,instr(more_info,':',1,2)-instr(more_info,':',1,1)-1) as "Allocated_Space",
    substr(more_info,instr(more_info,':',1,3)+1,instr(more_info,':',1,4)-instr(more_info,':',1,3)-1) as "Used_Space",
    substr(more_info,instr(more_info,':',1,5)+1,instr(more_info,':',1,6)-instr(more_info,':',1,5)-1) as "Reclaimable_Space"
    from dba_advisor_findings;
    Allocated_Space
    Used_Space
    Reclaimable_Space
    4390912
    4237403
    153509
    Thanks...

  • Cannot convert type class java.lang.String to class oracle.jbo.domain.Clob

    Cannot convert type class java.lang.String to class oracle.jbo.domain.ClobDomain.
    Using ADF Business Components I have a JSFF page fragment with an ADF form based on a table with has a column of type CLOB. The data is retrieved from the database and displayed correctly but when any field is changed and submitted the above error occurs. I have just used the drag and drop technique to create the ADF form with a submit button, am I missing a step?
    I am using the production release of Jdeveloper11G

    Reproduced and filed bug# 7487124
    The workaround is to add a custom converter class to your ViewController project like this
    package oow2008.view;
    import javax.faces.application.FacesMessage;
    import javax.faces.component.UIComponent;
    import javax.faces.context.FacesContext;
    import javax.faces.convert.Converter;
    import javax.faces.convert.ConverterException;
    import oracle.jbo.domain.ClobDomain;
    import oracle.jbo.domain.DataCreationException;
    public class ClobConverter implements Converter {
         public Object getAsObject(FacesContext facesContext,
                                   UIComponent uIComponent,
                                   String string) {
           try {
             return string != null ? new ClobDomain(string) : null;
           } catch (DataCreationException dce) {
             dce.setAppendCodes(false);
             FacesMessage fm =
               new FacesMessage(FacesMessage.SEVERITY_ERROR,
                                "Invalid Clob Value",
                                dce.getMessage());
             throw new ConverterException(fm);
         public String getAsString(FacesContext facesContext,
                                   UIComponent uIComponent,
                                   Object object) {
           return object != null ?
                  object.toString() :
                  null;
    }then to register the converter in faces-config.xml like this
    <faces-config version="1.2" xmlns="http://java.sun.com/xml/ns/javaee">
      <application>
        <default-render-kit-id>oracle.adf.rich</default-render-kit-id>
      </application>
      <converter>
        <converter-id>clobConverter</converter-id>
        <converter-class>oow2008.view.ClobConverter</converter-class>
      </converter>
    </faces-config>then reference this converter in the field for the ClobDomain value like this
              <af:inputText value="#{bindings.Description.inputValue}"
                            label="#{bindings.Description.hints.label}"
                            required="#{bindings.Description.hints.mandatory}"
                            columns="40"
                            maximumLength="#{bindings.Description.hints.precision}"
                            shortDesc="#{bindings.Description.hints.tooltip}"
                            wrap="soft" rows="10">
                <f:validator binding="#{bindings.Description.validator}"/>
                <f:converter converterId="clobConverter"/>
              </af:inputText>

  • How to deal with the using up space of /opt/oracle

    Hello, all
    We have an Oracle 10g preinstalled in a linux server (Rh 9). Now the system reports that the /opt/oracle is using up. The alert says:
         Filesystem /opt/oracle has only 19% available space
    Because I didn't install the Oracle dababase, I didn't have the chance to select a place for filesystem. Now the /opt/oracle is on the /dev/sda6 which is only 7.1G. I want to know what kind of information are stored here? Should it keep growing? Our database running on the Oracle is a small one, and it shouldn't occupy so much space. By the way, I scheduled the backup to disk (another hard disk) everyday. Is there any copy of the backup on /opt/oracle? How can I deal with it?
    Any advice is highly appreciated!
    Qian
    Message was edited by:
    QianChen
    Message was edited by:
    QianChen

    Typically, the growth files on your binary directory is going to be in the $ORACLE_HOME/network/logs/listener.log , any tracelog, sqlnet.log, or any files that get accidentally dumped in $ORACLE_HOME/dbs.
    I would check there first.
    Also, try scanning for the last few files written/updated in the past 30 days.
    #30 biggest files modified in last little while:
    find . -xdev -type f -mtime -14 -exec ls -l {} \; | sort -nk 5,5 | tail -30

  • Error in invoking target install of make file /opt/oracle/product/9.0.1/ctx/lib/ins_c

    I am trying to install Oracle 9i database release 2 on Linux RedHat 7.3. I got error message from OUI during the linking Oracle database
    error in invoking target install of make file /opt/oracle/product/9.0.1/ctx/lib/ins_ctx.mk
    Any input is greatly appreciated.

    Pl identify exact version of "10g" you are trying to install. Are you following all of the steps in the Install Guide ? Pl post the last 50 lines from the install log file
    HTH
    Srini

  • How to search for perticular substring in given string.

    Hi, Can any one tell me how to search for perticular substring in given string.
    example:
    I have to search for CA in given Order type it may be CA10 or CA15. Please Do the needful.

    Hi Aniruddha,
    check this...
    Data var string,
    var = 'India'.
    search var for 'Ind'.
    if sy-subrc = 0.    " var having ind
    Message 'Ind found' type 'I'.
    else  .            "var not having ind
    Message 'Ind not Found' type 'I'.
    endif.
    thanx
    bgan.

  • Linux Environment : Can't open lib '/opt/oracle/instantclient/libsqora.so.1

    Hi All,
    We are getting below error while one of the ODBC connection try to connect to the Database.
    Linux Server is Red Hat 64 bit environment.
    [6/1/07 14:29:55:315 CDT] 00000034 SystemOut O UserId:APCTEVAL ServiceName:NbaContractEvaluationBP DEBUG [QuartzScheduler_Worker-51] (com.csc.dip.jvpms.core.JvpmsLog4j:debug:?) - compute P_Result => ReturnCode: 1 Message: [unixODBC][Driver Manager]Can't open lib '/opt/oracle/instantclient/libsqora.so.10.1' : /opt/oracle/instantclient/libsqora.so.10.1: cannot open shared object file: No such file or directory RefField: sue
    Here is the current set of things that we verified
    1. The .bash_profile for root has the right stuff in it
    export ORACLE_HOME=/opt/oracle/instantclient
    export PATH=$ORACLE_HOME:$PATH
    export LD_LIBRARY_PATH=/opt/nba/bin:$ORACLE_HOME:$LD_LIBRARY_PATH
    export TNS_ADMIN=$ORACLE_HOME
    2. We verified that the correct version of the Oracle ODBC drivers are installed
    -r--r--r-- 1 oracle dba 1545954 Dec 20 09:35 ojdbc14.jar
    -rwxr-xr-x 1 oracle dba 137905 Dec 20 09:35 libocijdbc10.so
    -rwxr-xr-x 1 oracle dba 72456247 Dec 20 09:35 libociei.so
    -rwxr-xr-x 1 oracle dba 1664148 Dec 20 09:35 libocci.so.10.1
    -rwxr-xr-x 1 oracle dba 3808761 Dec 20 09:35 libnnz10.so
    -rwxr-xr-x 1 oracle dba 20870419 Dec 20 09:35 libclntsh.so.10.1
    -rwxr-xr-x 1 oracle dba 66545 Dec 20 09:35 genezi
    -r--r--r-- 1 oracle dba 1600090 Dec 20 09:35 classes12.jar
    -rwxr-xr-x 1 oracle dba 7741 Dec 20 09:35 sqlplus
    -r--r--r-- 1 oracle dba 3457 Dec 20 09:35 odbc_update_ini.sh
    -r-xr-xr-x 1 oracle dba 58416 Dec 20 09:35 ODBCRelnotesUS.htm
    -r-xr-xr-x 1 oracle dba 91881 Dec 20 09:35 ODBCRelnotesJA.htm
    -r--r--r-- 1 oracle dba 21548 Dec 20 09:35 ODBC_IC_Readme_Linux.html
    -rwxr-xr-x 1 oracle dba 859868 Dec 20 09:35 libsqora.so.10.1
    -rwxr-xr-x 1 oracle dba 992929 Dec 20 09:35 libsqlplus.so
    -rwxr-xr-x 1 oracle dba 1435529 Dec 20 09:35 libsqlplusic.so
    -r--r--r-- 1 oracle dba 1525 Dec 20 09:35 glogin.sql
    -rw-r----- 1 oracle dba 475 May 31 16:06 sqlnet.ora
    -rw-r--r-- 1 oracle dba 385 May 31 16:06 ldap.ora
    in the /opt/oracle/instantclient directory
    3. We verified the the odbc.ini and the odbcinst.ini..they match our dev files
    4. We verified that the VPMS so are the same version
    -rwxrwxr-x 1 nbaadmin nbaadmin 9333 Feb 13 07:57 libjvpms.so
    -rw-r--r-- 1 nbaadmin nbaadmin 1339 Feb 13 07:57 nbaSetupCmdLine.sh
    -rw-r--r-- 1 nbaadmin nbaadmin 852 Feb 13 07:57 nbaLaunchClient.sh
    -rw-r--r-- 1 nbaadmin nbaadmin 327 Feb 13 07:57 nbaAdministrativeConsole.sh
    -rwxrwxr-x 1 nbaadmin nbaadmin 265657 Feb 13 07:57 libvpms.so
    -rwxrwxrwx 1 nbaadmin nbaadmin 594 Feb 13 12:58 odbcinst.ini
    -rwxrwxrwx 1 nbaadmin nbaadmin 874 Feb 13 12:58
    odbc.ini
    5. We also verifed that the directories were showing up in the JVM start up log to verify WAS startup
    ************ Start Display Current Environment ************
    WebSphere Platform 6.0 [ND 6.0.2.17 cf170648.10] running with process name SyststNBACell01\SyststNBANode01\sysNBANewBusiness1 and process id 4921
    Host Operating System is Linux, version 2.6.9-42.0.3.ELsmp
    Java version = J2RE 1.4.2 IBM build cxia32142-20060421 (SR5) (JIT enabled: jitc), Java Compiler = jitc, Java VM name = Classic VM
    was.install.root = /opt/WebSphere/AppServer60
    user.install.root = /opt/WebSphere/AppServer60/profiles/SyststNBANode01Profile
    Java Home = /opt/WebSphere/AppServer60/java/jre
    ws.ext.dirs = /opt/WebSphere/AppServer60/java/lib:/opt/WebSphere/AppServer60/profiles/SyststNBANode01Profile/classes:/opt/WebSphere/AppServer60/classes:/opt/WebSphere/AppServer60/lib:/opt/WebSphere/AppServer60/installedChannels:/opt/WebSphere/AppServer60/lib/ext:/opt/WebSphere/AppServer60/web/help:/opt/WebSphere/AppServer60/deploytool/itp/plugins/com.ibm.etools.ejbdeploy/runtime:/opt/nba/runtimeJars
    Classpath = /opt/WebSphere/AppServer60/profiles/SyststNBANode01Profile/properties:/opt/WebSphere/AppServer60/properties:/opt/WebSphere/AppServer60/lib/bootstrap.jar:/opt/WebSphere/AppServer60/lib/j2ee.jar:/opt/WebSphere/AppServer60/lib/lmproxy.jar:/opt/WebSphere/AppServer60/lib/urlprotocols.jar:/opt/nba/configuration/config
    Java Library path = /opt/WebSphere/AppServer60/java/jre/bin:/opt/WebSphere/AppServer60/java/jre/bin/classic:/opt/WebSphere/AppServer60/java/jre/bin:/opt/WebSphere/AppServer60/bin:/opt/mqm/java/lib:/opt/wemps/lib:/opt/nba/bin:/opt/oracle/instantclient:/usr/lib
    ************* End Display Current Environment *************
    But are still getting the following error
    [6/1/07 14:29:55:315 CDT] 00000034 SystemOut O UserId:APCTEVAL ServiceName:NbaContractEvaluationBP DEBUG [QuartzScheduler_Worker-51] (com.csc.dip.jvpms.core.JvpmsLog4j:debug:?) - compute P_Result => ReturnCode: 1 Message: [unixODBC][Driver Manager]Can't open lib '/opt/oracle/instantclient/libsqora.so.10.1' : /opt/oracle/instantclient/libsqora.so.10.1: cannot open shared object file: No such file or directory RefField: sue
    Thanks in advance
    Mitesh

    Your LD_LIBRARY_PATH is wrong, libraries are in $ORACLE_HOME/lib, not $ORACLE_HOME itself. The same for $TNS_ADMIN, normally net configuration files are in $ORACLE_HOME/network/admin.
    export LD_LIBRARY_PATH=/opt/nba/bin:$ORACLE_HOME/lib
    Maybe this note on metalink gives further help:
    How to Setup and Verify Setup of Oracle ODBC Driver on Linux
    Doc ID:404041.1
    Werner

  • Exception in thread "main" java.lang.UnsatisfiedLinkError: /opt/oracle/libo

    Hi,
    I"m using Mac OS X (32 bit) and trying to connect to an Oracle 10g server via JDBC. I just installed the Mac OS X 10.2 Instant Client Package - Basic Lite from here -- http://www.oracle.com/technology/software/tech/oci/instantclient/htdocs/intel_macsoft.html. Sadly, when I try and run my console app to connect, I get this error ...
    Exception in thread "main" java.lang.UnsatisfiedLinkError: /opt/oracle/libocijdbc10.jnilib:
         at java.lang.ClassLoader$NativeLibrary.load(Native Method)
         at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1822)
         at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1739)
         at java.lang.Runtime.loadLibrary0(Runtime.java:822)
         at java.lang.System.loadLibrary(System.java:993)
         at oracle.jdbc.driver.T2CConnection$1.run(T2CConnection.java:3135)
         at java.security.AccessController.doPrivileged(Native Method)
         at oracle.jdbc.driver.T2CConnection.loadNativeLibrary(T2CConnection.java:3131)
         at oracle.jdbc.driver.T2CConnection.logon(T2CConnection.java:221)
         at oracle.jdbc.driver.PhysicalConnection.<init>(PhysicalConnection.java:414)
         at oracle.jdbc.driver.T2CConnection.<init>(T2CConnection.java:132)
         at oracle.jdbc.driver.T2CDriverExtension.getConnection(T2CDriverExtension.java:78)
         at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:801)
         at java.sql.DriverManager.getConnection(DriverManager.java:525)
         at java.sql.DriverManager.getConnection(DriverManager.java:140)
         at org.hibernate.connection.DriverManagerConnectionProvider.getConnection(DriverManagerConnectionProvider.java:133)
         at org.hibernate.cfg.SettingsFactory.buildSettings(SettingsFactory.java:111)
         at org.hibernate.cfg.Configuration.buildSettings(Configuration.java:2097)
         at myco.dor.dmv.driver.youthful.database.YouthfulDriverDatabase.<init>(YouthfulDriverDatabase.java:77)
         at myco.dor.dmv.driver.youthful.database.YouthfulDriverDatabase.getInstance(YouthfulDriverDatabase.java:83)
         at myco.dor.dmv.driver.youthful.AddressFileProcessor.execute(AddressFileProcessor.java:86)
         at myco.dor.dmv.driver.youthful.AddressFileProcessor.main(AddressFileProcessor.java:81)
    Any ideas? My CLASSPATH is set to include /opt/oracle/classes12.jar. My ORACLE_HOME is set to /opt/oracle and LD_LIBRARY_PATH is set to ORACLE_HOME (since that's where all the jars are). How can I troubleshoot this further?
    Thanks, - Dave

    You can verify the settings of the path to your libraries with
    System.out.println(System.getProperty("java.library.path"));before you call System.loadLibrary(), so you know if it is correct.
    I also found this information (for Solaris):
    The shared library file name requires a "lib" prefix and a ".so" extension. Do not include the "lib" prefix or the ".so" extension for the argument that you pass to the System.loadLibrary method.
    I don't know if that helps you solving your problem.

  • Missing connectors in the ..Oracle/Middleware/jdeveloper/soa/connectors ?

    I have my soa 11g 1.1.1.3.0 development setup on Linux 64-bit and apparently working (tested with a simple SOA bpel composite deployment to weblogic).
    However I see these errors in the soa server log which indicate some missing connectors? What install was meant to put the rar files in the ../jdeveloper/soa/connectors ?
    ####<17/08/2010 5:17:09 PM NZST> <Error> <Deployer> <ea-dat-u> <soa_server1> <[ACTIVE] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1282022229915> <BEA-149205> <Failed to initialize the application 'FileAdapter' due to error weblogic.management.DeploymentException: [Deployer:149003]Unable to access application source information in '/home/davidti/Oracle/Middleware/jdeveloper/soa/connectors/FileAdapter.rar' for application 'FileAdapter'. The specific error is: [Deployer:149158]No application files exist at '/home/davidti/Oracle/Middleware/jdeveloper/soa/connectors/FileAdapter.rar'...
    weblogic.management.DeploymentException: [Deployer:149003]Unable to access application source information in '/home/davidti/Oracle/Middleware/jdeveloper/soa/connectors/FileAdapter.rar' for application 'FileAdapter'. The specific error is: [Deployer:149158]No application files exist at '/home/davidti/Oracle/Middleware/jdeveloper/soa/connectors/FileAdapter.rar'

    Hi Anuj,
    Thanks for your reply. I believe I chose the ORACLE_HOME template for creating the domain, however when I have taken a look at the config log file, it appears that it couldn't find a particular template jar file (as per log "wlsc_*.log below) although it regarded the domain setup as successful .
    I am now wondering whether the DISK1, DISK 2, DISK3 installation distribution should have been combined before installing the soa components? (I had assumed the install script would automate this as there was no error message).
    Regards,
    David.
    2010-08-17 13:51:21,925 INFO [WizardController] com.oracle.cie.domain.template.catalog.impl.ComponentsXMLConverter - /home/davidti/Oracle/Middleware/wlserver_10.3/common/lib/components.xml does not contain component elements and will be skipped
    2010-08-17 13:51:21,926 INFO [WizardController] com.oracle.cie.wizard.domain.gui.tasks.MultipleTemplateSelectionGUITask - Selected required template: Basic WebLogic Server Domain:10.3.3.0 [home/davidti/Oracle/Middleware/wlserver_10.3/common/templates/domains/wls.jar]
    2010-08-17 13:52:03,163 ERROR [AWT-EventQueue-0] com.oracle.cie.wizard.domain.gui.tasks.MultipleTemplateSelectionGUITask - Unable to select template Oracle SOA Suite:11.1.1.0 [home/davidti/Oracle/Middleware/Oracle_SOA1/common/templates/applications/oracle.soa_template_11.1.1.jar]
    com.oracle.cie.domain.template.dependency.UndeterministicSelectionException: Unresolved ORs: OR for Oracle SOA Suite:11.1.1.0 [home/davidti/Oracle/Middleware/Oracle_SOA1/common/templates/applications/oracle.soa_template_11.1.1.jar] Multiple dependency matches: Oracle SOA Management Extension:11.1.1.0 [home/davidti/Oracle/Middleware/jdeveloper/common/templates/applications/oracle.soa.mgmt_template_11.1.1.jar] Oracle SOA Management Extension:11.1.1.0 [home/davidti/Oracle/Middleware/oracle_common/common/templates/applications/oracle.soa.mgmt_template_11.1.1.jar]
         at com.oracle.cie.domain.template.dependency.TemplateSelectionTarget.selectVertex(TemplateSelectionTarget.java:949)
         at com.oracle.cie.domain.template.dependency.TemplateSelectionTarget.selectWithPrerequisites(TemplateSelectionTarget.java:263)
         at com.oracle.cie.domain.template.dependency.TemplateSelectionTarget.selectWithPrerequisites(TemplateSelectionTarget.java:223)
    ... truncated to save space     
    2010-08-17 13:52:26,442 ERROR [AWT-EventQueue-0] com.oracle.cie.wizard.domain.gui.tasks.MultipleTemplateSelectionGUITask - Unable to select template Oracle SOA Suite:11.1.1.0 [home/davidti/Oracle/Middleware/Oracle_SOA1/common/templates/applications/oracle.soa_template_11.1.1.jar]
    com.oracle.cie.domain.template.dependency.UndeterministicSelectionException: Unresolved ORs: OR for Oracle SOA Suite:11.1.1.0 [home/davidti/Oracle/Middleware/Oracle_SOA1/common/templates/applications/oracle.soa_template_11.1.1.jar] Multiple dependency matches: Oracle SOA Management Extension:11.1.1.0 [home/davidti/Oracle/Middleware/jdeveloper/common/templates/applications/oracle.soa.mgmt_template_11.1.1.jar] Oracle SOA Management Extension:11.1.1.0 [home/davidti/Oracle/Middleware/oracle_common/common/templates/applications/oracle.soa.mgmt_template_11.1.1.jar]
         at com.oracle.cie.domain.template.dependency.TemplateSelectionTarget.selectVertex(TemplateSelectionTarget.java:949)
         at com.oracle.cie.domain.template.dependency.TemplateSelectionTarget.selectWithPrerequisites(TemplateSelectionTarget.java:263)
         at com.oracle.cie.domain.template.dependency.TemplateSelectionTarget.selectWithPrerequisites(TemplateSelectionTarget.java:223)
    .... truncated to save space
    2010-08-17 13:52:38,859 INFO [AWT-EventQueue-0] com.oracle.cie.domain.template.dependency.UncondPrereqsSelector - Selecting previous conflict VKey type [TINFO] domainState [NOTINSTALLED] selectionState [CONFLICTS] details [Oracle SOA Suite:11.1.1.0 [/home/davidti/Oracle/Middleware/Oracle_SOA1/common/templates/applications/oracle.soa_template_11.1.1.jar] ]
    2010-08-17 13:52:38,866 ERROR [AWT-EventQueue-0] com.oracle.cie.wizard.domain.gui.tasks.MultipleTemplateSelectionGUITask - Unable to select template Oracle SOA Suite:11.1.1.0 [home/davidti/Oracle/Middleware/Oracle_SOA1/common/templates/applications/oracle.soa_template_11.1.1.jar]
    com.oracle.cie.domain.template.dependency.UndeterministicSelectionException: Unresolved ORs: OR for Oracle SOA Suite:11.1.1.0 [home/davidti/Oracle/Middleware/Oracle_SOA1/common/templates/applications/oracle.soa_template_11.1.1.jar] Multiple dependency matches: Oracle SOA Management Extension:11.1.1.0 [home/davidti/Oracle/Middleware/jdeveloper/common/templates/applications/oracle.soa.mgmt_template_11.1.1.jar] Oracle SOA Management Extension:11.1.1.0 [home/davidti/Oracle/Middleware/oracle_common/common/templates/applications/oracle.soa.mgmt_template_11.1.1.jar]
         at com.oracle.cie.domain.template.dependency.TemplateSelectionTarget.selectVertex(TemplateSelectionTarget.java:949)
         at com.oracle.cie.domain.template.dependency.TemplateSelectionTarget.selectWithPrerequisites(TemplateSelectionTarget.java:263)
         at com.oracle.cie.domain.template.dependency.TemplateSelectionTarget.selectWithPrerequisites(TemplateSelectionTarget.java:223)
    ... truncated to save space
    2010-08-17 13:52:49,994 ERROR [AWT-EventQueue-0] com.oracle.cie.wizard.domain.gui.tasks.MultipleTemplateSelectionGUITask - Unable to select template Oracle Service Bus OWSM Extension:11.1.1.3 [home/davidti/Oracle/Middleware/Oracle_OSB1/common/templates/applications/wlsb_owsm.jar]
    com.oracle.cie.domain.template.dependency.UndeterministicSelectionException: Unresolved ORs: OR for Oracle Service Bus OWSM Extension:11.1.1.3 [home/davidti/Oracle/Middleware/Oracle_OSB1/common/templates/applications/wlsb_owsm.jar] <xml-fragment xmlns:fo="http://www.w3.org/1999/XSL/Format"> <dom:requires name="Oracle Service Bus Extension - All Domain Topologies" version="11.1.1.3" colocated="true" xmlns:dom="http://xmlns.oracle.com/weblogic/domain-template"/> <dom:requires name="Oracle Service Bus Extension - Single Server Domain Topology" version="11.1.1.3" colocated="true" xmlns:dom="http://xmlns.oracle.com/weblogic/domain-template"/> </xml-fragment>
         at com.oracle.cie.domain.template.dependency.TemplateSelectionTarget.selectVertex(TemplateSelectionTarget.java:949)
         at com.oracle.cie.domain.template.dependency.TemplateSelectionTarget.selectWithPrerequisites(TemplateSelectionTarget.java:263)
         at com.oracle.cie.domain.template.dependency.TemplateSelectionTarget.selectWithPrerequisites(TemplateSelectionTarget.java:223)
    ... truncated to save space
    2010-08-17 13:53:07,896 INFO [AWT-EventQueue-0] com.oracle.cie.domain.template.dependency.UncondPrereqsSelector - Selecting previous conflict VKey type [TINFO] domainState [NOTINSTALLED] selectionState [CONFLICTS] details [Oracle SOA Suite:11.1.1.0 [/home/davidti/Oracle/Middleware/Oracle_SOA1/common/templates/applications/oracle.soa_template_11.1.1.jar] ]
    2010-08-17 13:53:35,749 INFO [AWT-EventQueue-0] com.oracle.cie.domain.template.dependency.UncondPrereqsSelector - Selecting previous conflict VKey type [TINFO] domainState [NOTINSTALLED] selectionState [CONFLICTS] details [Oracle SOA Suite:11.1.1.0 [/home/davidti/Oracle/Middleware/jdeveloper/common/templates/applications/oracle.soa_template_11.1.1.jar] ]
    2010-08-17 13:53:43,172 INFO [AWT-EventQueue-0] com.oracle.cie.domain.template.dependency.UncondPrereqsSelector - Selecting previous conflict VKey type [TINFO] domainState [NOTINSTALLED] selectionState [CONFLICTS] details [Oracle SOA Suite:11.1.1.0 [/home/davidti/Oracle/Middleware/Oracle_SOA1/common/templates/applications/oracle.soa_template_11.1.1.jar] ]
    2010-08-17 13:54:01,578 INFO [WizardController] com.oracle.cie.domain.WLSTemplateBuilder - No config-groups.xml found in template
    2010-08-17 13:54:01,578 INFO [WizardController] com.oracle.cie.domain.WLSTemplateBuilder - No template-database.xml found in template
    2010-08-17 13:54:02,191 INFO [WizardController] com.oracle.cie.domain.AbstractTemplate - Adding top-level component reference: WebLogic Server version 10.3.3.0
    2010-08-17 13:54:02,192 INFO [WizardController] com.oracle.cie.domain.AbstractTemplate - Setting symbol for component WebLogic Server version 10.3.3.0 to WebLogic_Server_10.3.3.0_wlserver_10.3_ORACLE_HOME
    2010-08-17 13:54:02,263 INFO [WizardController] com.oracle.cie.domain.WLSTemplateBuilder - No template-database.xml found in template
    2010-08-17 13:54:02,298 INFO [WizardController] com.oracle.cie.domain.WLSTemplateBuilder - No template-database.xml found in template
    2010-08-17 13:54:02,317 INFO [WizardController] com.oracle.cie.domain.WLSTemplateBuilder - No template-database.xml found in template
    2010-08-17 13:54:02,501 INFO [WizardController] com.oracle.cie.domain.WLSTemplateBuilder - No template-database.xml found in template
    2010-08-17 13:54:02,514 INFO [WizardController] com.oracle.cie.domain.WLSTemplateBuilder - No template-database.xml found in template
    2010-08-17 13:54:02,527 INFO [WizardController] com.oracle.cie.domain.WLSTemplateBuilder - No template-database.xml found in template
    2010-08-17 13:54:02,539 INFO [WizardController] com.oracle.cie.domain.WLSTemplateBuilder - No template-database.xml found in template
    2010-08-17 13:54:02,551 INFO [WizardController] com.oracle.cie.domain.WLSTemplateBuilder - No template-database.xml found in template
    2010-08-17 13:54:02,566 INFO [WizardController] com.oracle.cie.domain.WLSTemplateBuilder - No template-database.xml found in template
    2010-08-17 13:54:02,724 INFO [WizardController] com.oracle.cie.domain.WLSTemplateBuilder - No template-database.xml found in template
    2010-08-17 13:54:02,917 INFO [WizardController] com.oracle.cie.domain.WLSTemplateBuilder - No template-database.xml found in template
    2010-08-17 13:54:02,929 INFO [WizardController] com.oracle.cie.domain.WLSTemplateBuilder - No template-database.xml found in template
    2010-08-17 13:54:02,942 INFO [WizardController] com.oracle.cie.domain.WLSTemplateBuilder - No template-database.xml found in template
    2010-08-17 13:54:02,955 INFO [WizardController] com.oracle.cie.domain.WLSTemplateBuilder - No template-database.xml found in template
    2010-08-17 13:54:03,183 INFO [WizardController] com.oracle.cie.domain.AbstractTemplate - Setting symbol for component oracle.as.jrf version 11.1.1.3.0 to oracle.as.jrf_11.1.1.3.0_oracle_common_ORACLE_HOME
    2010-08-17 13:54:03,330 INFO [WizardController] com.oracle.cie.domain.AbstractTemplate - Setting symbol for component oracle.rules version 11.1.1.2.0 to oracle.rules_11.1.1.2.0_Oracle_SOA1_ORACLE_HOME
    2010-08-17 13:54:03,379 INFO [WizardController] com.oracle.cie.domain.AbstractTemplate - Adding top-level component reference: JDeveloper and ADF version 11.1.1.3.0
    2010-08-17 13:54:03,379 INFO [WizardController] com.oracle.cie.domain.AbstractTemplate - Setting symbol for component JDeveloper and ADF version 11.1.1.3.0 to JDeveloper_and_ADF_11.1.1.3.0_jdeveloper_ORACLE_HOME
    2010-08-17 13:54:03,437 INFO [WizardController] com.oracle.cie.domain.AbstractTemplate - Setting symbol for component oracle.jrf.j2ee version 11.1.1.3.0 to oracle.jrf.j2ee_11.1.1.3.0_oracle_common_ORACLE_HOME
    2010-08-17 13:54:03,491 WARN [WizardController] com.oracle.cie.domain.AbstractTemplate - Could not find component name 'oracle.as.webcenter.top' version 'null'
    2010-08-17 13:54:03,491 INFO [WizardController] com.oracle.cie.domain.AbstractTemplate - Replacing component reference oracle.as.webcenter.top version null with top-level component reference: Dummy Top Component version 11.1.1.2.0
    2010-08-17 13:54:03,491 INFO [WizardController] com.oracle.cie.domain.AbstractTemplate - Setting symbol for component Dummy Top Component version 11.1.1.2.0 to Dummy_Top_Component_11.1.1.2.0_oracle_common_ORACLE_HOME
    2010-08-17 13:54:03,542 INFO [WizardController] com.oracle.cie.domain.AbstractTemplate - Adding top-level component reference: oracle.as.soa.top version 11.1.1.2.0
    2010-08-17 13:54:03,543 INFO [WizardController] com.oracle.cie.domain.AbstractTemplate - Setting symbol for component oracle.as.soa.top version 11.1.1.2.0 to oracle.as.soa.top_11.1.1.2.0_Oracle_SOA1_ORACLE_HOME
    2010-08-17 13:54:03,764 INFO [WizardController] com.oracle.cie.domain.AbstractTemplate - Adding top-level component reference: oracle.as.soa.top version 11.1.1.2.0
    2010-08-17 13:54:03,765 INFO [WizardController] com.oracle.cie.domain.AbstractTemplate - Setting symbol for component oracle.as.soa.top version 11.1.1.2.0 to oracle.as.soa.top_11.1.1.2.0_Oracle_SOA1_ORACLE_HOME
    2010-08-17 13:54:03,811 INFO [WizardController] com.oracle.cie.domain.AbstractTemplate - Setting symbol for component oracle.bpm.mgmt version 11.1.1.4.0 to oracle.bpm.mgmt_11.1.1.4.0_oracle_common_ORACLE_HOME
    2010-08-17 13:54:03,852 INFO [WizardController] com.oracle.cie.domain.AbstractTemplate - Adding top-level component reference: JDeveloper and ADF version 11.1.1.3.0
    2010-08-17 13:54:03,852 INFO [WizardController] com.oracle.cie.domain.AbstractTemplate - Setting symbol for component JDeveloper and ADF version 11.1.1.3.0 to JDeveloper_and_ADF_11.1.1.3.0_jdeveloper_ORACLE_HOME
    2010-08-17 13:54:03,890 INFO [WizardController] com.oracle.cie.domain.AbstractTemplate - Setting symbol for component oracle.sysman.plugin.ai.main.oms version 11.1.1.3.0 to oracle.sysman.plugin.ai.main.oms_11.1.1.3.0_oracle_common_ORACLE_HOME
    2010-08-17 13:54:03,929 INFO [WizardController] com.oracle.cie.domain.AbstractTemplate - Setting symbol for component oracle.sdp.messaging version 11.1.1.2.0 to oracle.sdp.messaging_11.1.1.2.0_Oracle_SOA1_ORACLE_HOME
    2010-08-17 13:54:04,052 INFO [WizardController] com.oracle.cie.domain.AbstractTemplate - Adding top-level component reference: WebLogic Server version 10.3.3.0
    2010-08-17 13:54:04,052 INFO [WizardController] com.oracle.cie.domain.AbstractTemplate - Setting symbol for component WebLogic Server version 10.3.3.0 to WebLogic_Server_10.3.3.0_wlserver_10.3_ORACLE_HOME
    2010-08-17 13:54:04,171 INFO [WizardController] com.oracle.cie.domain.AbstractTemplate - Adding top-level component reference: oracle.osb.top version 11.1.1.3.0
    2010-08-17 13:54:04,172 INFO [WizardController] com.oracle.cie.domain.AbstractTemplate - Setting symbol for component oracle.osb.top version 11.1.1.3.0 to oracle.osb.top_11.1.1.3.0_Oracle_OSB1_ORACLE_HOME
    2010-08-17 13:54:04,524 INFO [WizardController] com.oracle.cie.domain.AbstractTemplate - Setting symbol for component oracle.integration.bam version 11.1.1.2.0 to oracle.integration.bam_11.1.1.2.0_Oracle_SOA1_ORACLE_HOME
    2010-08-17 13:54:04,543 WARN [WizardController] com.oracle.cie.domain.aspect.XBeanConfigAspect - Unable to locate property:Target on type:class com.oracle.cie.domain.xml.configxb.impl.MachineTypeImpl
    2010-08-17 13:54:04,546 WARN [WizardController] com.oracle.cie.domain.aspect.XBeanConfigAspect - Unable to locate property:Target on type:class com.oracle.cie.domain.xml.configxb.impl.ServerTypeImpl
    2010-08-17 13:54:05,386 INFO [WizardController] com.oracle.cie.domain.AbstractTemplate - Adding top-level component reference: oracle.osb.top version 11.1.1.3.0
    2010-08-17 13:54:05,386 INFO [WizardController] com.oracle.cie.domain.AbstractTemplate - Setting symbol for component oracle.osb.top version 11.1.1.3.0 to oracle.osb.top_11.1.1.3.0_Oracle_OSB1_ORACLE_HOME
    2010-08-17 13:54:05,392 WARN [WizardController] com.oracle.cie.domain.aspect.XBeanConfigAspect - Unable to locate property:Target on type:class com.oracle.cie.domain.xml.configxb.impl.ServerTypeImpl
    2010-08-17 13:54:06,511 INFO [WizardController] com.oracle.cie.domain.AbstractTemplate - Setting symbol for component oracle.sdp.messaging version 11.1.1.2.0 to oracle.sdp.messaging_11.1.1.2.0_Oracle_SOA1_ORACLE_HOME
    2010-08-17 13:54:07,576 INFO [WizardController] com.oracle.cie.domain.AbstractTemplate - Setting symbol for component oracle.sysman.plugin.as.main.oms.uias version 11.1.1.3.0 to oracle.sysman.plugin.as.main.oms.uias_11.1.1.3.0_oracle_common_ORACLE_HOME
    2010-08-17 13:54:08,506 INFO [WizardController] com.oracle.cie.domain.AbstractTemplate - Setting symbol for component oracle.sysman.oms.core version 11.1.1.3.0 to oracle.sysman.oms.core_11.1.1.3.0_oracle_common_ORACLE_HOME
    2010-08-17 13:54:09,567 INFO [WizardController] com.oracle.cie.domain.AbstractTemplate - Setting symbol for component oracle.integration.soainfra version 11.1.1.2.0 to oracle.integration.soainfra_11.1.1.2.0_Oracle_SOA1_ORACLE_HOME
    2010-08-17 13:54:09,696 WARN [WizardController] com.oracle.cie.domain.aspect.XBeanConfigAspect - Unable to locate property:Target on type:class com.oracle.cie.domain.xml.configxb.impl.MachineTypeImpl
    2010-08-17 13:54:09,703 WARN [WizardController] com.oracle.cie.domain.aspect.XBeanConfigAspect - Unable to locate property:Target on type:class com.oracle.cie.domain.xml.configxb.impl.ServerTypeImpl
    2010-08-17 13:54:11,143 WARN [WizardController] com.oracle.cie.domain.ConfigGroupsDeployer - Unable to locate AppDeployment with the name JPD Transport Provider
    2010-08-17 13:54:11,186 WARN [WizardController] com.oracle.cie.domain.ConfigGroupsDeployer - Unable to locate AppDeployment with the name JPD Transport Provider
    2010-08-17 13:57:35,269 INFO [WizardController] com.oracle.cie.domain.DomainChecker - ListenPort internal Validation result= [null]
    2010-08-17 13:57:35,269 INFO [WizardController] com.oracle.cie.domain.DomainChecker - ListenPort external Validation result= [null]
    2010-08-17 13:57:36,974 INFO [Thread-16] com.oracle.cie.domain.script.ScriptExecutor - find Server "AdminServer" as obj0
    2010-08-17 13:57:36,983 INFO [Thread-16] com.oracle.cie.domain.script.ScriptExecutor - succeed: find Server "AdminServer" as obj0
    2010-08-17 13:57:37,031 INFO [Thread-16] com.oracle.cie.domain.script.ScriptExecutor - find Server "bam_server1" as obj1
    2010-08-17 13:57:37,036 INFO [Thread-16] com.oracle.cie.domain.script.ScriptExecutor - succeed: find Server "bam_server1" as obj1
    2010-08-17 13:57:37,036 INFO [Thread-16] com.oracle.cie.domain.script.ScriptExecutor - find Server "osb_server1" as obj2
    2010-08-17 13:57:37,044 INFO [Thread-16] com.oracle.cie.domain.script.ScriptExecutor - succeed: find Server "osb_server1" as obj2
    2010-08-17 13:57:37,044 INFO [Thread-16] com.oracle.cie.domain.script.ScriptExecutor - find Server "soa_server1" as obj3
    2010-08-17 13:57:37,048 INFO [Thread-16] com.oracle.cie.domain.script.ScriptExecutor - succeed: find Server "soa_server1" as obj3
    2010-08-17 13:57:37,880 INFO [Thread-16] com.oracle.cie.domain.script.ScriptExecutor - find SecurityConfiguration "domain1" as obj4
    2010-08-17 13:57:37,883 INFO [Thread-16] com.oracle.cie.domain.script.ScriptExecutor - succeed: find SecurityConfiguration "domain1" as obj4
    2010-08-17 13:57:37,916 INFO [Thread-16] com.oracle.cie.domain.script.ScriptExecutor - find Realm "myrealm" as obj5
    2010-08-17 13:57:37,918 INFO [Thread-16] com.oracle.cie.domain.script.ScriptExecutor - succeed: find Realm "myrealm" as obj5
    2010-08-17 13:57:37,949 INFO [Thread-16] com.oracle.cie.domain.script.ScriptExecutor - find SecurityConfiguration!Realm "domain1!myrealm" as obj6
    2010-08-17 13:57:37,952 INFO [Thread-16] com.oracle.cie.domain.script.ScriptExecutor - succeed: find SecurityConfiguration!Realm "domain1!myrealm" as obj6
    2010-08-17 13:57:38,010 INFO [Thread-16] com.oracle.cie.domain.script.ScriptExecutor - find SecurityConfiguration!Realm!AuthenticationProvider "domain1!myrealm!Provider" as obj7
    2010-08-17 13:57:38,012 INFO [Thread-16] com.oracle.cie.domain.script.ScriptExecutor - succeed: find SecurityConfiguration!Realm!AuthenticationProvider "domain1!myrealm!Provider" as obj7
    2010-08-17 13:57:38,032 INFO [Thread-16] com.oracle.cie.domain.script.ScriptExecutor - set obj7 attribute UseRetrievedUserNameAsPrincipal to "true"
    2010-08-17 13:57:38,036 INFO [Thread-16] com.oracle.cie.domain.script.ScriptExecutor - succeed: set obj7 attribute UseRetrievedUserNameAsPrincipal to "true"
    2010-08-17 13:57:38,037 INFO [Thread-16] com.oracle.cie.domain.script.ScriptExecutor - create Server!ServerDiagnosticConfig "AdminServer!AdminServer" as obj8
    2010-08-17 13:57:38,055 INFO [Thread-16] com.oracle.cie.domain.script.ScriptExecutor - succeed: create Server!ServerDiagnosticConfig "AdminServer!AdminServer" as obj8
    2010-08-17 13:57:38,067 INFO [Thread-16] com.oracle.cie.domain.script.ScriptExecutor - set obj8 attribute DiagnosticContextEnabled to "true"
    2010-08-17 13:57:38,071 INFO [Thread-16] com.oracle.cie.domain.script.ScriptExecutor - succeed: set obj8 attribute DiagnosticContextEnabled to "true"
    2010-08-17 13:57:38,072 INFO [Thread-16] com.oracle.cie.domain.script.ScriptExecutor - create Server!ServerDiagnosticConfig "bam_server1!bam_server1" as obj9
    2010-08-17 13:57:38,075 INFO [Thread-16] com.oracle.cie.domain.script.ScriptExecutor - succeed: create Server!ServerDiagnosticConfig "bam_server1!bam_server1" as obj9
    2010-08-17 13:57:38,076 INFO [Thread-16] com.oracle.cie.domain.script.ScriptExecutor - set obj9 attribute DiagnosticContextEnabled to "true"
    2010-08-17 13:57:38,079 INFO [Thread-16] com.oracle.cie.domain.script.ScriptExecutor - succeed: set obj9 attribute DiagnosticContextEnabled to "true"
    2010-08-17 13:57:38,081 INFO [Thread-16] com.oracle.cie.domain.script.ScriptExecutor - create Server!ServerDiagnosticConfig "osb_server1!osb_server1" as obj10
    2010-08-17 13:57:38,084 INFO [Thread-16] com.oracle.cie.domain.script.ScriptExecutor - succeed: create Server!ServerDiagnosticConfig "osb_server1!osb_server1" as obj10
    2010-08-17 13:57:38,085 INFO [Thread-16] com.oracle.cie.domain.script.ScriptExecutor - set obj10 attribute DiagnosticContextEnabled to "true"
    2010-08-17 13:57:38,088 INFO [Thread-16] com.oracle.cie.domain.script.ScriptExecutor - succeed: set obj10 attribute DiagnosticContextEnabled to "true"
    2010-08-17 13:57:38,089 INFO [Thread-16] com.oracle.cie.domain.script.ScriptExecutor - create Server!ServerDiagnosticConfig "soa_server1!soa_server1" as obj11
    2010-08-17 13:57:38,093 INFO [Thread-16] com.oracle.cie.domain.script.ScriptExecutor - succeed: create Server!ServerDiagnosticConfig "soa_server1!soa_server1" as obj11
    2010-08-17 13:57:38,094 INFO [Thread-16] com.oracle.cie.domain.script.ScriptExecutor - set obj11 attribute DiagnosticContextEnabled to "true"
    2010-08-17 13:57:38,097 INFO [Thread-16] com.oracle.cie.domain.script.ScriptExecutor - succeed: set obj11 attribute DiagnosticContextEnabled to "true"
    2010-08-17 13:57:38,239 INFO [Thread-16] com.oracle.cie.domain.script.ScriptExecutor - find AppDeployment "XBus Kernel" as obj12
    2010-08-17 13:57:38,242 INFO [Thread-16] com.oracle.cie.domain.script.ScriptExecutor - succeed: find AppDeployment "XBus Kernel" as obj12
    2010-08-17 13:57:38,257 INFO [Thread-16] com.oracle.cie.domain.script.ScriptExecutor - find Cluster "AdminServer" as obj13
    2010-08-17 13:57:38,260 INFO [Thread-16] com.oracle.cie.domain.script.ScriptExecutor - fail: find Cluster "AdminServer" as obj13
    2010-08-17 13:57:38,261 INFO [Thread-16] com.oracle.cie.domain.script.ScriptExecutor - find Server "AdminServer" as obj13
    2010-08-17 13:57:38,266 INFO [Thread-16] com.oracle.cie.domain.script.ScriptExecutor - succeed: find Server "AdminServer" as obj13
    2010-08-17 13:57:38,266 INFO [Thread-16] com.oracle.cie.domain.script.ScriptExecutor - find Cluster "osb_server1" as obj14
    2010-08-17 13:57:38,269 INFO [Thread-16] com.oracle.cie.domain.script.ScriptExecutor - fail: find Cluster "osb_server1" as obj14
    2010-08-17 13:57:38,269 INFO [Thread-16] com.oracle.cie.domain.script.ScriptExecutor - find Server "osb_server1" as obj14
    2010-08-17 13:57:38,273 INFO [Thread-16] com.oracle.cie.domain.script.ScriptExecutor - succeed: find Server "osb_server1" as obj14
    2010-08-17 13:57:38,276 INFO [Thread-16] com.oracle.cie.domain.script.ScriptExecutor - assign AppDeployment.SubDeployment "FTP Transport Provider.ftp_transport.jar" to Target "osb_server1"
    2010-08-17 13:57:38,342 INFO [Thread-16] com.oracle.cie.domain.script.ScriptExecutor - succeed: assign AppDeployment.SubDeployment "FTP Transport Provider.ftp_transport.jar" to Target "osb_server1"
    2010-08-17 13:57:38,342 INFO [Thread-16] com.oracle.cie.domain.script.ScriptExecutor - assign AppDeployment.SubDeployment "SFTP Transport Provider.sftp_transport.jar" to Target "osb_server1"
    2010-08-17 13:57:38,344 INFO [Thread-16] com.oracle.cie.domain.script.ScriptExecutor - succeed: assign AppDeployment.SubDeployment "SFTP Transport Provider.sftp_transport.jar" to Target "osb_server1"
    2010-08-17 13:57:38,344 INFO [Thread-16] com.oracle.cie.domain.script.ScriptExecutor - assign AppDeployment.SubDeployment "Email Transport Provider.emailtransport.jar" to Target "osb_server1"
    2010-08-17 13:57:38,346 INFO [Thread-16] com.oracle.cie.domain.script.ScriptExecutor - succeed: assign AppDeployment.SubDeployment "Email Transport Provider.emailtransport.jar" to Target "osb_server1"
    2010-08-17 13:57:38,346 INFO [Thread-16] com.oracle.cie.domain.script.ScriptExecutor - assign AppDeployment.SubDeployment "File Transport Provider.filepoll.jar" to Target "osb_server1"
    2010-08-17 13:57:38,348 INFO [Thread-16] com.oracle.cie.domain.script.ScriptExecutor - succeed: assign AppDeployment.SubDeployment "File Transport Provider.filepoll.jar" to Target "osb_server1"
    2010-08-17 13:57:38,635 INFO [Thread-16] com.oracle.cie.domain.script.ScriptExecutor - find Server "AdminServer" as obj15
    2010-08-17 13:57:38,640 INFO [Thread-16] com.oracle.cie.domain.script.ScriptExecutor - succeed: find Server "AdminServer" as obj15
    2010-08-17 13:57:38,640 INFO [Thread-16] com.oracle.cie.domain.script.ScriptExecutor - find Server "bam_server1" as obj16
    2010-08-17 13:57:38,645 INFO [Thread-16] com.oracle.cie.domain.script.ScriptExecutor - succeed: find Server "bam_server1" as obj16
    2010-08-17 13:57:38,646 INFO [Thread-16] com.oracle.cie.domain.script.ScriptExecutor - find Server "osb_server1" as obj17
    2010-08-17 13:57:38,650 INFO [Thread-16] com.oracle.cie.domain.script.ScriptExecutor - succeed: find Server "osb_server1" as obj17
    2010-08-17 13:57:38,650 INFO [Thread-16] com.oracle.cie.domain.script.ScriptExecutor - find Server "soa_server1" as obj18
    2010-08-17 13:57:38,654 INFO [Thread-16] com.oracle.cie.domain.script.ScriptExecutor - succeed: find Server "soa_server1" as obj18
    2010-08-17 13:58:26,786 WARN [Thread-16] com.oracle.cie.domain.aspect.XBeanConfigAspect - Unable to locate property:CredentialEncrypted on type:class com.oracle.cie.domain.xml.configxb.impl.DefaultAuthenticatorTypeImpl
    2010-08-17 13:58:26,786 WARN [Thread-16] com.oracle.cie.domain.aspect.XBeanConfigAspect - Unable to locate property:CredentialEncrypted on type:class com.oracle.cie.domain.xml.configxb.impl.DefaultIdentityAsserterTypeImpl
    2010-08-17 13:58:29,507 INFO [Thread-16] com.oracle.cie.domain.DomainRegistryWrapper - need to initialize domainRegistrydocument object
    2010-08-17 13:58:29,515 INFO [Thread-16] com.oracle.cie.domain.DomainGenerator - Domain Generation Successful!

  • Searching for a substring within a string

    can someone reccomend a simple way to search for a substring within a string and count the number occurences of that substring.
    The substring and the string will be provided as command line parameters.
    Thanks
    gg

    A simple way would be to use the indexOf methods in String:
    http://java.sun.com/j2se/1.5.0/docs/api/java/lang/String.html
    Not sure what this has to do with event handling though :-P

  • Error: Cannot run program "C:\Oracle\Middleware\jdk160_21\jre\bin\javaw.exe

    Hi
    I have created a sample Fusion Web Application(ADF) and created a test.jsp in viewcontroller with few components. I have started the integrated weblogic server and started successfully, but when I run test.jsp it is giving me the below error
    Error: Cannot run program "C:\Oracle\Middleware\jdk160_21\jre\bin\javaw.exe" (in directory "C:\Documents and Settings\chowdamr\Application Data\JDeveloper\system11.1.1.4.37.59.23\o.jdeveloper\DefaultWorkspace"): CreateProcess error=267, The directory name is invalid.
    Initially this page is working successfuly.
    Please tell me whats the problem.
    Edited by: 858782 on May 13, 2011 5:28 AM

    There are some problems when JDev's system directory (e.g. the \system11.1.1.4.37.59.23 directory) is in a path that contains spaces (as it is in your case - C:\Documents and Settings\...). Move the system directory to a path without spaces and try again. The simplest way to move it is to start JDeveloper in a "single user" mode (use <tt>jdeveloper.exe -singleuser</tt>) which will create the system directory within JDev's home directory. Of course, if your JDeveloper is installed in a path containing spaces, it will not work either (for example, if JDev is in C:\Program Files\...).
    Have a look here for a more sophisticated approach for moving the system directory to another location:
    http://technology.amis.nl/blog/8387/change-the-jdeveloper-system-directory
    Dimitar

  • Losing filesystem space due to file open descriptors (lsof  /opt/oracle )

    Hi,
    Our oracle mounted filesystem for /opt/oracle is constantly losing filesystem space due to file open descriptors (command to give the details -->lsof /opt/oracle).
    When we issue this command single excutable apperas more time with diffrent process id and consumes space,
    Is it realted to bug 3208807 ? or if any other please help me
    Oracle Version : 9.2.0.4 with Data Guard
    Regards
    Manoj

    losing filesystem space due to file open descriptorsI think this has nothing to do with open descriptors.
    Check following:
    1. generation of trace files in bdump,cdump and udump directory (compress, move or remove *.trc files and cdmp_nnnnnn directories)
    2. generation of network trace files is enabled (sqlnet.ora)
    3. if your database files are located somewhere under /opt/oracle directory then check for autoextend datafiles
    Check content of alert log and content of latest tracle files (in bdump) and if you are facing to bug 3208807 then trace files must contain error message as mentioned in 3208807.8 Note.

  • Invalid path in /opt/oracle/products/10.2.01/precomp/admin/pcscfg.cfg

    Hi
    I have installed oracle 10g on my machine.
    contents of File /opt/oracle/products/10.2.01/precomp/admin/pcscfg.cfg are :
    sys_include=(/b/s624/precomp/public,/usr/include)
    ltype=short
    define=ORASTDARG
    The same file for 9.2.0 contains:
    bash-2.05b# cat /opt/oracle/product/9.2.0/precomp/admin/pcscfg.cfg
    sys_include=(/usr/include)
    ltype=short
    define=ORASTDARG
    bash-2.05b#
    the path /b/s624/precomp/public is invalid for my machine could anybody explain the use of this file and the path(why is present in this file?).
    Thanks
    Srikrishan

    Hi
    I have installed oracle 10g on my machine.
    contents of File /opt/oracle/products/10.2.01/precomp/admin/pcscfg.cfg are :
    sys_include=(/b/s624/precomp/public,/usr/include)
    ltype=short
    define=ORASTDARG
    The same file for 9.2.0 contains:
    bash-2.05b# cat /opt/oracle/product/9.2.0/precomp/admin/pcscfg.cfg
    sys_include=(/usr/include)
    ltype=short
    define=ORASTDARG
    bash-2.05b#
    the path /b/s624/precomp/public is invalid for my machine could anybody explain the use of this file and the path(why is present in this file?).
    Thanks
    Srikrishan

  • WARNING: directory '/opt/oracle' is not owned by root

    Installing CRS
    Need suggestions
    sudo /opt/oracle/10.2.0.1.0/root.shWARNING: directory '/opt/oracle' is not owned by root
    Checking to see if Oracle CRS stack is already configured
    /etc/oracle does not exist. Creating it now.
    Setting the permissions on OCR backup directory
    Setting up NS directories
    Oracle Cluster Registry configuration upgraded successfully
    WARNING: directory '/opt/oracle' is not owned by root
    /opt/oracle/10.2.0.1.0/bin/crsctl.bin: error while loading shared libraries: libstdc++.so.5: can
    not open shared object file: No such file or directory
    Failure initializing entries in /etc/oracle/scls_scr/ricsflgrd402.
    ricsflgrd402.ric.infineon.com - ASMP01b:/opt/oracle

    missing STD C++ Libs
    see
    http://download-uk.oracle.com/docs/cd/B19306_01/install.102/b28053/toc.htm#BABIAECC
    however I would have thought that was there ...
    however

Maybe you are looking for

  • Using a Mac on windows network with a proxy server

    Hi I'm very new to Macs to apologies if this is a really silly question. I'm trying to setup a Mac on our network and I'm having an issue getting it to work properly with our proxy server. I have connected the Mac to the network and selected automati

  • Job details

    Hi, I have scheduled one job & data is stored somewhere. I know the job name. I wanted to know during execution of that job which data get extracted & where it is stored. I am able the see my job in SM36 having status finished. How can I find it out?

  • Please help me with my project- I know nothing about PS!!!!

    I want to major in Photography and have to take a Digital Imaging class. The first project is a Mr. Potato Head body with all the parts (eyes, mouth, hands, etc.) scattered around it. I have to create layers I guess to put the body parts in but have

  • COMPILING BEAN

    Pls, I'm getting the following error messages when I run my class java:3:cannot find symbol symbol: class Student location: package coreservlets import coreservlets.Student; Now look how I created my class and package. (1)The root to my package is C:

  • Data excecution prevention closing Acrobat

    Hello, Help is desperately needed with the following problem I'm experiencing: If I use any of the commenting tools on a pdf-document, within seconds (but not instantly) Acrobat goes into Not Responding state, and the Windows Error Reporting tool is