Considerable things while setting up no.of connections in a connection pool

Hi,
What are the required things to be considered while setting up the number of connections to be created in a connection pool?
I would like to know the factors upon which the minimum and maximum database connections (to be created) vary.
FYI, Currently I am using Oracle 11g database for some of the applications.
Thank you.
Best Regards,
Mallaiah Papinni

Hope this helps ...
- Determine the number of active connections in your database and set the parameters sessions,processes and transactions.
http://www.fatlemon.co.uk/2009/06/increasing-processes-sessions-and-transactions-in-oracle-xe/
- Connection Pool can be sized based on the number concurrent sessions.
http://asktom.oracle.com/pls/apex/f?p=100:11:0::::P11_QUESTION_ID:22140261281764
Thanks.

Similar Messages

  • While downloading Mountain Lion I was asked to connect my mail account (gmail) to the cloud. I did so. Once I entered mail after Mtn Lion installed all sub-mail boxes I had set up disappeared. How can I get them back.

    While downloading Mountain Lion I was asked to connect my maol account to the cloud. I did so. Mtn Lion was installed successfully. When I openned my mail all of the sub-folders I had created are gone along with the emails in them. How can I restore them or does the cloud wipe them out. Thanks

    You may have to open Mail, go to the upper left corner of the screen and click on the word Mail, open Preferences, click on Accounts, and make sure your Gmail account is still fully set up properly with all proper account and incoming and outgoing Mail Servers properly completed.  When you added iCloud capability it may have upset the account settings for Gmail.
    Hope this helps

  • Error while setting up connection and adding database Tables

    Error 1
    The name 'My' does not exist in the current context
    C:\Users\levent 1\documents\visual studio 2010\Projects\DBCustomAction\DBCustomAction\VbDeployInstaller.cs
    53 37
    DBCustomAction
    Error 2
    The name 'Interaction' does not exist in the current context
    C:\Users\levent 1\documents\visual studio 2010\Projects\DBCustomAction\DBCustomAction\VbDeployInstaller.cs
    75 5
    DBCustomAction
    Error 3
    'System.Collections.Specialized.StringDictionary' does not contain a definition for 'Item' and no extension method 'Item' accepting a first argument of type 'System.Collections.Specialized.StringDictionary' could be found (are you missing a using directive
    or an assembly reference?) C:\Users\levent 1\documents\visual studio 2010\Projects\DBCustomAction\DBCustomAction\VbDeployInstaller.cs
    84 36
    DBCustomAction
    using System;
    using System.Collections;
    using System.Collections.Generic;
    using System.ComponentModel;
    using System.Configuration.Install;
    using System.Linq;
    using System.IO;
    using System.Reflection;
    using System.Data.SqlClient;
    namespace DBCustomAction
        [RunInstaller(true)]
        public partial class VbDeployInstaller : System.Configuration.Install.Installer
           System.Data.SqlClient.SqlConnection masterConnection = new System.Data.SqlClient.SqlConnection();
    public VbDeployInstaller() : base()
    //This call is required by the Component Designer.
    InitializeComponent();
    //Add initialization code after the call to InitializeComponent
    private string GetSql(string Name)
    try {
    // Gets the current assembly.
    Assembly Asm = Assembly.GetExecutingAssembly();
    // Resources are named using a fully qualified name.
    Stream strm = Asm.GetManifestResourceStream(Asm.GetName().Name + "." + Name);
    // Reads the contents of the embedded file.
    StreamReader reader = new StreamReader(strm);
    return reader.ReadToEnd();
    } catch (Exception ex) {
    throw ex;
    private void ExecuteSql(string DatabaseName, string Sql)
    System.Data.SqlClient.SqlCommand Command = new System.Data.SqlClient.SqlCommand(Sql, masterConnection);
    // Initialize the connection, open it, and set it to the "master" database
    masterConnection.ConnectionString = My.Settings.masterConnectionString;
    Command.Connection.Open();
    Command.Connection.ChangeDatabase(DatabaseName);
    try {
    Command.ExecuteNonQuery();
    } finally {
    // Closing the connection should be done in a Finally block
    Command.Connection.Close();
    protected void AddDBTable(string strDBName)
    try {
    // Creates the database.
    ExecuteSql("master", "CREATE DATABASE " + strDBName);
    // Creates the tables.
    ExecuteSql(strDBName, GetSql("sql.txt"));
    } catch (Exception ex) {
    // Reports any errors and abort.
        Interaction.MsgBox("In exception handler: " + ex.Message);
    throw ex;
    public override void Install(System.Collections.IDictionary stateSaver)
    base.Install(stateSaver);
    AddDBTable(this.Context.Parameters.Item("dbname"));

    Hi osmniv,
    I tested the code, it has three error when compiling.
    Error 1 The name 'My' does not exist in the current context C:\Users\levent 1\documents\visual studio 2010\Projects\DBCustomAction\DBCustomAction\VbDeployInstaller.cs 53 37 DBCustomAction
    In C#, there is no "My" key word, you need to use this method to use the settings.
    http://msdn.microsoft.com/en-us/library/aa730869(v=vs.80).aspx
    masterConnection.ConnectionString = Properties.Settings.Default.masterConnectionString;
    Error 2 The name 'Interaction' does not exist in the current context C:\Users\levent 1\documents\visual studio 2010\Projects\DBCustomAction\DBCustomAction\VbDeployInstaller.cs 75 5 DBCustomAction
    You need to add these references to the project, Microsoft.VisualBasic,
    Microsoft.Expression.Interactions AND System.Windows.Interactivity.  Right click on the project, choose the add -> reference -> choose the references.
    then, add the using statement:
    using Microsoft.VisualBasic;
    Error 3
    'System.Collections.Specialized.StringDictionary' does not contain a definition for 'Item' and no extension method 'Item' accepting a first argument of type 'System.Collections.Specialized.StringDictionary' could be found (are you missing a using directive
    or an assembly reference?) C:\Users\levent 1\documents\visual studio 2010\Projects\DBCustomAction\DBCustomAction\VbDeployInstaller.cs
    84 36
    DBCustomAction
    In C#, you could use the Parameters["dbname"] to get the indexer of element directly.
    AddDBTable(this.Context.Parameters["dbname"]);
    If you have any other concern regarding this issue, please feel free to let me know.
    Best regards,
    Youjun Tang
    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.
    Click
    HERE to participate the survey.

  • Error while setting up Weblogic Portal(10.3.6) db connection

    HI All,
    I am a newbie to Weblogic Portal so kindly correct me if im wrong anywhere...
    I am trying to set up a new instance for Weblogic Portal 10.3.6
    While setting up a new domain i got the error below:
    CFGFWK-60850:  Test Failed!
    Later wheni tried running the command create_db.cmd, below is the error generated
    Kindly help me where am i going wrong
    D:\Oracle\Middleware\user_projects\domains\domain1>create_db.cmd
    database.properties=D:\Oracle\Middleware\user_projects\domains\domain1\database.properties
    Buildfile: D:\Oracle\Middleware\wlportal_10.3\p13n\db\build_createdatabase.xml
    init_props:
    appendDomainSqlAuth:
    init_tasks:
    setup_create_database_objects:
    create_database_objects:
         [echo] ***** Calling JDBCDataLoader ** to create database objects and insert seed data
    Warning: Reference createdb.classpath has not been set at runtime, but was found during
    build file parsing, attempting to resolve. Future versions of Ant may support
    referencing ids defined in non-executed targets.
    Warning: Reference cwiz.jars has not been set at runtime, but was found during
    build file parsing, attempting to resolve. Future versions of Ant may support
    referencing ids defined in non-executed targets.
         [java] Loading Database...
         [java]
         [java]
         [java] logFile=create_db.log
         [java] user=WEBLOGIC
         [java] password=********
         [java] url=jdbc:derby:weblogic_eval;create=true
         [java] files=D:\Oracle\Middleware\wlportal_10.3/p13n/db/derby/jdbc_index/jdbc.index,D:\Oracle\Middleware\wlportal_10.3/content-mgmt/db/derby/jdbc_index/jdbc.index,D:\Oracle\Middleware\wlportal_10.3/portal/db/derby/jdbc_index/jdbc.index,D:\Oracle\Middleware\user_projects\domains\domain1/security/jdbc.index
         [java] driver=org.apache.derby.jdbc.EmbeddedDriver
         [java] saltFile=D:\Oracle\Middleware\user_projects\domains\domain1/security/SerializedSystemIni.dat
         [java] prodDir=D:\Oracle\Middleware\wlportal_10.3
         [java] Processing file 'D:\Oracle\Middleware\wlportal_10.3\p13n\db\derby\jdbc_index\jdbc.index'
         [java] Files=
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/p13n/db/derby/seq_drop_tables.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/p13n/db/derby/p13n_drop_fkeys.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/p13n/db/derby/p13n_drop_indexes.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/p13n/db/derby/p13n_drop_constraints.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/p13n/db/derby/p13n_drop_tables.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/p13n/db/derby/er_drop_fkeys.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/p13n/db/derby/er_drop_indexes.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/p13n/db/derby/er_drop_constraints.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/p13n/db/derby/er_drop_tables.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/p13n/db/derby/bt_drop_fkeys.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/p13n/db/derby/bt_drop_indexes.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/p13n/db/derby/bt_drop_constraints.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/p13n/db/derby/bt_drop_tables.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/p13n/db/derby/rdbms_security_store_drop_tables.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/p13n/db/derby/seq_create_tables.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/p13n/db/derby/p13n_create_tables.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/p13n/db/derby/p13n_create_fkeys.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/p13n/db/derby/p13n_create_indexes.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/p13n/db/derby/p13n_create_triggers.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/p13n/db/data/required/p13n_insert_system_data.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/p13n/db/derby/er_create_tables.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/p13n/db/derby/er_create_fkeys.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/p13n/db/derby/er_create_indexes.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/p13n/db/derby/er_create_triggers.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/p13n/db/data/required/er_insert_system_data.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/p13n/db/derby/bt_create_tables.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/p13n/db/derby/bt_create_fkeys.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/p13n/db/derby/bt_create_indexes.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/p13n/db/derby/bt_create_triggers.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/p13n/db/derby/rdbms_security_store_create_tables.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/p13n/db/data/required/bt_insert_system_data.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/p13n/db/data/required/bt9_insert_system_data.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/p13n/db/derby/lease_drop_tables.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/p13n/db/derby/p13n9_drop_tables.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/p13n/db/derby/p13n9_drop_indexes.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/p13n/db/derby/p13n9_drop_constraints.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/p13n/db/derby/lease_create_tables.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/p13n/db/derby/p13n9_create_tables.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/p13n/db/derby/p13n9_create_indexes.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/p13n/db/data/required/p13n9_insert_system_data.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/p13n/db/derby/p13n102_drop_tables.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/p13n/db/derby/p13n102_create_tables.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/p13n/db/data/required/p13n102_insert_system_data.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/p13n/db/derby/job_manager_create_tables.sql
         [java] Processing file 'D:\Oracle\Middleware\wlportal_10.3\content-mgmt\db\derby\jdbc_index\jdbc.index'
         [java] Files=
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/content-mgmt/db/derby/cm10_drop_tables.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/content-mgmt/db/derby/cmv10_drop_tables.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/content-mgmt/db/derby/cm9_drop_fkeys.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/content-mgmt/db/derby/cm9_drop_indexes.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/content-mgmt/db/derby/cm9_drop_constraints.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/content-mgmt/db/derby/cm9_drop_tables.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/content-mgmt/db/derby/cm_drop_fkeys.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/content-mgmt/db/derby/cm_drop_indexes.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/content-mgmt/db/derby/cm_drop_constraints.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/content-mgmt/db/derby/cm_drop_tables.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/content-mgmt/db/derby/cmv9_drop_indexes.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/content-mgmt/db/derby/cmv_drop_fkeys.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/content-mgmt/db/derby/cmv_drop_indexes.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/content-mgmt/db/derby/cmv_drop_constraints.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/content-mgmt/db/derby/cmv_drop_tables.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/content-mgmt/db/derby/cm_create_tables.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/content-mgmt/db/derby/cm_create_fkeys.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/content-mgmt/db/derby/cm_create_indexes.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/content-mgmt/db/derby/cm_create_triggers.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/content-mgmt/db/derby/cmv_create_tables.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/content-mgmt/db/derby/cmv_create_fkeys.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/content-mgmt/db/derby/cmv_create_indexes.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/content-mgmt/db/derby/cmv_create_triggers.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/content-mgmt/db/data/required/cmv_insert_system_data.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/content-mgmt/db/derby/cm9_create_tables.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/content-mgmt/db/derby/cm9_create_fkeys.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/content-mgmt/db/derby/cm9_create_indexes.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/content-mgmt/db/derby/cm9_create_triggers.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/content-mgmt/db/data/required/cm9_insert_system_data.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/content-mgmt/db/derby/cmv9_create_tables.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/content-mgmt/db/derby/cmv9_create_indexes.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/content-mgmt/db/data/required/cm_insert_system_data.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/content-mgmt/db/data/sample/cm_insert_system_data.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/content-mgmt/db/derby/cm10_create_tables.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/content-mgmt/db/derby/cmv10_create_tables.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/content-mgmt/db/derby/cmv102_create_tables.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/content-mgmt/db/derby/cm102_create_tables.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/content-mgmt/db/data/sample/cm102_insert_system_data.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/content-mgmt/db/data/sample/cm102_update_system_data.sql
         [java] Processing file 'D:\Oracle\Middleware\wlportal_10.3\portal\db\derby\jdbc_index\jdbc.index'
         [java] Files=
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/portal/db/derby/wps_drop_fkeys.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/portal/db/derby/wps_drop_indexes.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/portal/db/derby/wps_drop_constraints.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/portal/db/derby/wps_drop_tables.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/portal/db/derby/comm_drop_fkeys.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/portal/db/derby/comm_drop_indexes.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/portal/db/derby/comm_drop_constraints.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/portal/db/derby/comm_drop_tables.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/portal/db/derby/pf10_drop_fkeys.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/portal/db/derby/pf10_drop_tables.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/portal/db/derby/pf9_drop_fkeys.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/portal/db/derby/pf9_drop_constraints.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/portal/db/derby/pf9_drop_views.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/portal/db/derby/pf9_drop_tables.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/portal/db/derby/pf_drop_views.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/portal/db/derby/pf_drop_fkeys.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/portal/db/derby/pf_drop_indexes.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/portal/db/derby/pf_drop_constraints.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/portal/db/derby/pf_drop_tables.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/portal/db/derby/wps_create_tables.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/portal/db/derby/wps_create_fkeys.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/portal/db/derby/wps_create_indexes.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/portal/db/derby/wps_create_triggers.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/portal/db/data/required/wps_insert_system_data.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/portal/db/derby/pf_create_tables.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/portal/db/derby/pf_create_fkeys.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/portal/db/derby/pf_create_indexes.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/portal/db/derby/pf_create_views.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/portal/db/derby/pf_create_triggers.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/portal/db/derby/comm_create_tables.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/portal/db/derby/comm_create_fkeys.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/portal/db/derby/comm_create_indexes.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/portal/db/derby/comm_create_triggers.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/portal/db/data/required/comm_insert_system_data.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/portal/db/derby/pf9_drop_columns.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/portal/db/derby/pf9_create_tables.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/portal/db/derby/pf9_create_fkeys.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/portal/db/derby/pf9_create_views.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/portal/db/data/required/pf_insert_system_data.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/portal/db/data/required/pf9_insert_system_data.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/portal/db/data/required/bt_insert_system_data.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/portal/db/data/required/bt9_insert_system_data.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/portal/db/derby/pf10_create_tables.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/portal/db/data/required/pf10_insert_system_data.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/portal/db/derby/pf102_create_tables.sql
         [java]     file:/D:/Oracle/Middleware/wlportal_10.3/portal/db/derby/pf102_drop_tables.sql
         [java] Error = SQLException when executing file file:/D:/Oracle/Middleware/wlportal_10.3/portal/db/derby/pf_create_tables.sql
         [java] Load Failed
         [java] java.lang.Exception: SQLException when executing file file:/D:/Oracle/Middleware/wlportal_10.3/portal/db/derby/pf_create_tables.sql
         [java]     at com.oracle.cie.domain.jdbc.JDBCDataLoader.load(JDBCDataLoader.java:183)
         [java]     at com.oracle.cie.domain.jdbc.JDBCDataLoader.main(JDBCDataLoader.java:1321)
         [java] Caused by: java.sql.SQLException: Table/View 'L10N_INTERSECTION' already exists in Schema 'WEBLOGIC'.
         [java]     at org.apache.derby.impl.jdbc.SQLExceptionFactory40.getSQLException(Unknown Source)
         [java]     at org.apache.derby.impl.jdbc.Util.generateCsSQLException(Unknown Source)
         [java]     at org.apache.derby.impl.jdbc.TransactionResourceImpl.wrapInSQLException(Unknown Source)
         [java]     at org.apache.derby.impl.jdbc.TransactionResourceImpl.handleException(Unknown Source)
         [java]     at org.apache.derby.impl.jdbc.EmbedConnection.handleException(Unknown Source)
         [java]     at org.apache.derby.impl.jdbc.ConnectionChild.handleException(Unknown Source)
         [java]     at org.apache.derby.impl.jdbc.EmbedStatement.executeStatement(Unknown Source)
         [java]     at org.apache.derby.impl.jdbc.EmbedStatement.execute(Unknown Source)
         [java]     at org.apache.derby.impl.jdbc.EmbedStatement.executeUpdate(Unknown Source)
         [java]     at com.oracle.cie.domain.jdbc.JDBCDataLoader.loadData(JDBCDataLoader.java:749)
         [java]     at com.oracle.cie.domain.jdbc.JDBCDataLoader.load(JDBCDataLoader.java:167)
         [java]     ... 1 more
         [java] Caused by: java.sql.SQLException: Table/View 'L10N_INTERSECTION' already exists in Schema 'WEBLOGIC'.
         [java]     at org.apache.derby.impl.jdbc.SQLExceptionFactory.getSQLException(Unknown Source)
         [java]     at org.apache.derby.impl.jdbc.SQLExceptionFactory40.wrapArgsForTransportAcrossDRDA(Unknown Source)
         [java]     ... 12 more
         [java] Caused by: ERROR X0Y32: Table/View 'L10N_INTERSECTION' already exists in Schema 'WEBLOGIC'.
         [java]     at org.apache.derby.iapi.error.StandardException.newException(Unknown Source)
         [java]     at org.apache.derby.impl.sql.catalog.DataDictionaryImpl.duplicateDescriptorException(Unknown Source)
         [java]     at org.apache.derby.impl.sql.catalog.DataDictionaryImpl.addDescriptor(Unknown Source)
         [java]     at org.apache.derby.impl.sql.execute.CreateTableConstantAction.executeConstantAction(Unknown Source)
         [java]     at org.apache.derby.impl.sql.execute.MiscResultSet.open(Unknown Source)
         [java]     at org.apache.derby.impl.sql.GenericPreparedStatement.executeStmt(Unknown Source)
         [java]     at org.apache.derby.impl.sql.GenericPreparedStatement.execute(Unknown Source)
         [java]     ... 6 more
    BUILD FAILED
    D:\Oracle\Middleware\wlportal_10.3\p13n\db\build_createdatabase.xml:97: The following error occurred while executing this line:
    D:\Oracle\Middleware\wlportal_10.3\p13n\db\build_createdatabase.xml:104: The following error occurred while executing this line:
    D:\Oracle\Middleware\wlportal_10.3\p13n\db\build_createdatabase.xml:68: Java returned: -1
    Total time: 48 seconds
    ====================================================================================================
    ERROR!
    CALL TO ant -cp D:\Oracle\MIDDLE~1\WLSERV~1.3\server\lib\weblogic.jar; -f D:\Oracle\Middleware\wlportal_10.3\p13n\db\build_createdatabase.xml FAILED!
    ====================================================================================================
    Looking forward for some inputs....
    Thanks in Advance,
    Varun Arora

    Strange, ran the same command after few hours and BUILD SUCCESSFUL 

  • Problem while setting username password to router

    Hi,
    i am trying to connect to router using java program. i am connecting with out any problem.
    while giving the credentials like username and password i can't placing the original username
    password.instead some thing is setted.
    here is my code
       public class ConnectRouter
        public static void main(String[] args) throws Exception {
        try
        if (args.length != 2) {
        System.err.println("Usage: java router username and  password");
        System.exit(1);
        String password = URLEncoder.encode(args[0], "US-ASCII");
        String username=URLEncoder.encode(args[1],"US-ASCII");
        URL url = new URL("http://192.168.0.75:23");
        URLConnection connection = url.openConnection();
        connection.setDoOutput(true);
            System.out.println("connection obj got");
        PrintWriter out = new PrintWriter(connection.getOutputStream());
        out.println(username);----------------------------------------------------------------------------------------------->passing username
        out.println(password);------------------------------------------------------------------------------------------------>passing password
            Process p = Runtime.getRuntime().exec("cmd /c perl C:\\perlsrc\\uname.pl");
        // out.println(args[0]);
            System.out.println("-----------connected---------------");
        out.close();
        BufferedReader in = new BufferedReader(new InputStreamReader(connection.getInputStream()));
        String inputLine;
        while ((inputLine = in.readLine()) != null)
        System.out.println(inputLine);
        in.close();
        }catch(Exception e){e.printStackTrace();}
        }output is as follows:
    connection obj got
    -----------connected---------------
    ÿûÿûÿýÿý
    User Access Verification
    Username: POST / HTTP/1.1--------------------------------------->here something is placed instead of my username
    Password:
    % Authentication failed.
    Username: Host: 192.168.0.75:23--------------------------------->here something is placed instead of my username
    Password:
    % Authentication failed.
    Username: Connection: keep-alive
    Password:
    % Authentication failed.
    Process exited with exit code 0.
    please explain me where i am missing???
    Regards,
    Nagaraju

    Hi ejp,
    i done as follows even i am getting same problem
    please help me
       public class ConnectRouter extends Authenticator
            static String username,password;
        public static void main(String[] args) throws Exception
            Authenticator.setDefault(new ConnectRouter());
        try
        if (args.length != 2) {
        System.err.println("Usage: java router username and  password");
        System.exit(1);
         password = URLEncoder.encode(args[0], "US-ASCII");
         username=URLEncoder.encode(args[1],"US-ASCII");
        URL url = new URL("http://192.168.0.75:23");
        URLConnection connection = url.openConnection();
        connection.setDoOutput(true);
            System.out.println("connection obj got");
        PrintWriter out = new PrintWriter(connection.getOutputStream());
        out.println(username);
        out.println(password);
            Process p = Runtime.getRuntime().exec("cmd /c perl C:\\perlsrc\\uname.pl");
        // out.println(args[0]);
            System.out.println("-----------connected---------------");
        out.close();
        BufferedReader in = new BufferedReader(new InputStreamReader(connection.getInputStream()));
        String inputLine;
        while ((inputLine = in.readLine()) != null)
        System.out.println(inputLine);
        in.close();
        }catch(Exception e){e.printStackTrace();}
        //@ovverriding the getPasswordAuhtentication method
        protected PasswordAuthentication getPasswordAuthentication()
            System.out.println("int the password authentication method");
            return new PasswordAuthentication(username,password.toCharArray());
        }output::
    connection obj got
    -----------connected---------------
    ÿûÿûÿýÿý
    User Access Verification
    Username: POST / HTTP/1.1--------------------------------------->here something is placed instead of my username
    Password:
    % Authentication failed.
    Username: Host: 192.168.0.75:23--------------------------------->here something is placed instead of my username
    Password:
    % Authentication failed.
    Username: Connection: keep-alive
    Password:
    % Authentication failed.
    Process exited with exit code 0.
    please explain me where i am missing again???
    Thanks in advance,
    Nagaraju.

  • My iPhone connects to a hotel network but my iPad3 while it shows connected will not connect to the Internet.

    My iPhone connects to a hotel network but my iPad3 while it shows connected will not connect to the Internet.

    Welcome to the support community group.
    First, are you sure that your AirPort Extreme has been configured correctly and is properly connected to your modem?
    Begin by telling us how you have things connected and if the Airport Extreme is replacing a previously owned router or is this an entirely new installation?
    First be sure that your modem is working and properly connects you to the internet using an ethernet cable directly connected to your laptop.  Once you're sure that's working, reset the AirPort to factory defaults by disconnecting it from power and pressing and holding in the small reset button on the back  for 15 - 20 seconds while you reconnect it to power.  Then turn everything off for 5 minutes. Connect the Airport to your modem with and ethernet cable to the Airport WAN port on the back (check the user guide to make sure you connect the cable to the correct port) then connect a second ethernet cable between the laptop and one of the LAN ports on the AirPort Extreme.
    Then power up the modem first, wait 5 minutes and then power up the Airport, wait 5 minutes and finally power up your laptop.
    Then run the airport configuration utility from your laptop.  Since you're not using an Apple computer, be sure that all of your firewall, and virus blocking and checking software is disabled before you run the airport configuration utility.  Once you run the utility, it should detect your AirPort and allow you to use the configuration wizard to set things up.
    Check back if you're still having problems.

  • Is there a way to change the color of the Bezier Curves and points to a different color other than black  I find it perplexing while setting points and curves working on a photo that needs to be separated from it's background for placement on transparent

    Is there a way to change the color of the Bezier Curves and points to a different color other than black  I find it perplexing while setting points and curves working on a photo that needs to be separated from it's background for placement on transparent backgrounds. Any thoughts?

    Yes. Well, sort of: instead of a "path", set the pen tool to "shape" in the tool properties. Then set the fill colour to transparent, and the stroke colour to the colour you want. You can also set the stroke width.
    Not perfect, but at least you can see the path more clearly - the anchor points and handles still remain the default colour. Open the path panel, and right-mouse click the path shape to create a selection based on that shape. The Paths panel menu also allows you to create work paths based on that shape.
    Unfortunately when you try to move the handles the black thin outline appears again until you release the mouse button.
    This is one of several things that works better in Photoline: in Photoline, once the path is set to a specific colour, editing the path uses the actual colour and stroke width. which is extremely handy for creating path based selection with awkward background colours and/or a high resolution screen. In Photoline the handles and bezier points are also much, much larger, which makes it rather simpler to work with as well - especially on a higher resolution screen. And when selected the handles and points are a clear red with a black outline - again easier to spot and identify. I just works better, in my opinion.

  • Getting error while setting up Apps Server VM

    Hi All,
    I'm getting couple of errors while setting up the apps VM. I was following the instructions at the link given below, but Im not getting any support from there so thought of posting here...
    http://only4left.jpiwowar.com/2012/12/1hr-ebs-sandbox/
    I'm getting the error while running the command...
    /etc/init.d/oraclevm-template start
    I'm posting content of log file here.... I'm posting the entire file as Im really clueless where the error is caused. Please help me get through this error.
    Started ApplyAppsTier at Wed Dec 25 09:56:26 EST 2013
    Version:
        ApplyAppsTier.java    :     120.4
    # Calling ApplyAppsTechStack...
    Executing runInstallDriver...
    Started unzipping files...
    Completed runInstallDriver.
    Executing home registration for s_weboh_oh...
    Registering using Registration Driver
    /u01/E-BIZ/apps/tech_st/10.1.3/appsutil/driver/regclone.drv
    instantiate file:
       source : /u01/E-BIZ/apps/tech_st/10.1.3/appsutil/template/adouiweboh.pl
       dest   : /u01/E-BIZ/apps/tech_st/10.1.3/appsutil/clone/ouicli.pl
       backup : /u01/E-BIZ/apps/tech_st/10.1.3/appsutil/clone/ouicli.pl to /u01/E-BIZ/inst/apps/VIS_jags/out/ouicli3.pl
       setting permissions: 700
       setting ownership: oracle:oinstall
    instantiate file:
       source : /u01/E-BIZ/apps/tech_st/10.1.3/appsutil/template/adlnkweboh.sh
       dest   : /u01/E-BIZ/apps/tech_st/10.1.3/appsutil/clone/adlnkweboh.sh
       backup : /u01/E-BIZ/apps/tech_st/10.1.3/appsutil/clone/adlnkweboh.sh to /u01/E-BIZ/inst/apps/VIS_jags/out/adlnkweboh1.sh
       setting permissions: 700
       setting ownership: oracle:oinstall
    instantiate file:
       source : /u01/E-BIZ/apps/tech_st/10.1.3/appsutil/template/txkstubcfg1013.pl
       dest   : /u01/E-BIZ/apps/tech_st/10.1.3/appsutil/clone/txkstubcfg1013.pl
       backup : /u01/E-BIZ/apps/tech_st/10.1.3/appsutil/clone/txkstubcfg1013.pl to /u01/E-BIZ/inst/apps/VIS_jags/out/txkstubcfg10131.pl
       setting permissions: 700
       setting ownership: oracle:oinstall
    instantiate file:
       source : /u01/E-BIZ/apps/tech_st/10.1.3/appsutil/template/apachectl_sh_1013_oh.tmp
       dest   : /u01/E-BIZ/apps/tech_st/10.1.3/Apache/Apache/bin/apachectl
       backup : /u01/E-BIZ/apps/tech_st/10.1.3/Apache/Apache/bin/apachectl to /u01/E-BIZ/inst/apps/VIS_jags/out/apachectl1
       setting permissions: 700
       setting ownership: oracle:oinstall
    Executing script in InstantiateFile:
    /u01/E-BIZ/apps/tech_st/10.1.3/perl/bin/perl -I /u01/E-BIZ/apps/tech_st/10.1.3/perl/lib/5.8.3 -I /u01/E-BIZ/apps/tech_st/10.1.3/perl/lib/site_perl/5.8.3 -I /u01/E-BIZ/apps/apps_st/appl/au/12.0.0/perl -I /u01/E-BIZ/apps/tech_st/10.1.3/Apache/Apache/mod_perl/lib/site_perl/5.8.3/i686-linux-thread-multi /u01/E-BIZ/apps/tech_st/10.1.3/appsutil/clone/ouicli.pl
    script returned:
    Beginning OUI CLI cloning for s_weboh_ohWed Dec 25 09:56:30 2013
    /u01/E-BIZ/apps/tech_st/10.1.3/jdk/bin/java -classpath /u01/E-BIZ/apps/apps_st/comn/clone/jlib/java:/u01/E-BIZ/apps/tech_st/10.1.3/oui/jlib/OraInstaller.jar:/u01/E-BIZ/apps/apps_st/comn/clone/jlib/xmlparserv2.jar:/u01/E-BIZ/apps/apps_st/comn/clone/jlib/ojdbc14.jar  oracle.apps.ad.clone.util.OracleHomeCloner  -OUICLI -e /u01/E-BIZ/inst/apps/VIS_jags/appl/admin/VIS_jags.xml -nolink -oaVar s_weboh_oh -homestub weboh -log /u01/E-BIZ/inst/apps/VIS_jags/admin/log/ohclone.log
    NON-COMPLIANT: /u01/E-BIZ/apps/tech_st/10.1.3/oraInst.loc does not point to an inventory inside the current ORACLE_HOME
    Rapid Clone only supports oraInst.loc at that location if its content points to an inventory inside the same ORACLE_HOME
    Please make the necessary changes to the following file:
    /u01/E-BIZ/apps/tech_st/10.1.3/oraInst.loc
    Running OUI CLI home cloning from within OracleHomeCloner:
      /u01/E-BIZ/apps/tech_st/10.1.3/oui/bin/runInstaller  -clone -silent -force -nolink -waitForCompletion -invPtrLoc /u01/E-BIZ/inst/apps/VIS_jags/admin/oraInst.loc session:ORACLE_HOME=/u01/E-BIZ/apps/tech_st/10.1.3 oracle.as.j2ee.top:s_asInstanceName=VIS_WEBOH__u01_E_BIZ_apps_tech_st_10_1_3 oracle.as.j2ee.top:s_adminName=oc4jadmin oracle.as.j2ee.top:s_adminPassword=welcome ORACLE_HOME_NAME=VIS_WEBOH__u01_E_BIZ_apps_tech_st_10_1_3 -J-Doracle.installer.noLink=true
    Finished OUI CLI cloning for s_weboh_oh with return code: 0Wed Dec 25 09:57:24 2013
    .end std out.
    .end err out.
    Executing script in InstantiateFile:
    /u01/E-BIZ/apps/tech_st/10.1.3/appsutil/clone/adlnkweboh.sh
    script returned:
    adlnkweboh.sh started at Wed Dec 25 09:57:24 EST 2013
    Log file located at /u01/E-BIZ/inst/apps/VIS_jags/logs/ora/10.1.3/install/make_12250957.log
    adlnkweboh.sh completed sucessfully
    .end std out.
    .end err out.
    Executing script in InstantiateFile:
    /u01/E-BIZ/apps/tech_st/10.1.3/perl/bin/perl -I /u01/E-BIZ/apps/tech_st/10.1.3/perl/lib/5.8.3 -I /u01/E-BIZ/apps/tech_st/10.1.3/perl/lib/site_perl/5.8.3 -I /u01/E-BIZ/apps/apps_st/appl/au/12.0.0/perl -I /u01/E-BIZ/apps/tech_st/10.1.3/Apache/Apache/mod_perl/lib/site_perl/5.8.3/i686-linux-thread-multi /u01/E-BIZ/apps/tech_st/10.1.3/appsutil/clone/txkstubcfg1013.pl
    script returned:
    .end std out.
    .end err out.
    instantiate file:
       source : /u01/E-BIZ/apps/tech_st/10.1.3/appsutil/template/adouiweboh.pl
       dest   : /u01/E-BIZ/apps/tech_st/10.1.3/appsutil/clone/ouicli.pl
       backup : /u01/E-BIZ/apps/tech_st/10.1.3/appsutil/clone/ouicli.pl to /u01/E-BIZ/inst/apps/VIS_jags/out/ouicli4.pl
       setting permissions: 700
       setting ownership: oracle:oinstall
    instantiate file:
       source : /u01/E-BIZ/apps/tech_st/10.1.3/appsutil/template/adlnkweboh.sh
       dest   : /u01/E-BIZ/apps/tech_st/10.1.3/appsutil/clone/adlnkweboh.sh
       backup : /u01/E-BIZ/apps/tech_st/10.1.3/appsutil/clone/adlnkweboh.sh to /u01/E-BIZ/inst/apps/VIS_jags/out/adlnkweboh2.sh
       setting permissions: 700
       setting ownership: oracle:oinstall
    instantiate file:
       source : /u01/E-BIZ/apps/tech_st/10.1.3/appsutil/template/txkstubcfg1013.pl
       dest   : /u01/E-BIZ/apps/tech_st/10.1.3/appsutil/clone/txkstubcfg1013.pl
       backup : /u01/E-BIZ/apps/tech_st/10.1.3/appsutil/clone/txkstubcfg1013.pl to /u01/E-BIZ/inst/apps/VIS_jags/out/txkstubcfg10132.pl
       setting permissions: 700
       setting ownership: oracle:oinstall
    instantiate file:
       source : /u01/E-BIZ/apps/tech_st/10.1.3/appsutil/template/apachectl_sh_1013_oh.tmp
       dest   : /u01/E-BIZ/apps/tech_st/10.1.3/Apache/Apache/bin/apachectl
       backup : /u01/E-BIZ/apps/tech_st/10.1.3/Apache/Apache/bin/apachectl to /u01/E-BIZ/inst/apps/VIS_jags/out/apachectl2
       setting permissions: 700
       setting ownership: oracle:oinstall
    Completed home registration for s_weboh_oh
    Executing home registration for s_tools_oh...
    Registering using Registration Driver
    /u01/E-BIZ/apps/tech_st/10.1.2/appsutil/driver/regclone.drv
    instantiate file:
       source : /u01/E-BIZ/apps/tech_st/10.1.2/appsutil/template/adouitools.pl
       dest   : /u01/E-BIZ/apps/tech_st/10.1.2/appsutil/clone/ouicli.pl
       backup : /u01/E-BIZ/apps/tech_st/10.1.2/appsutil/clone/ouicli.pl to /u01/E-BIZ/inst/apps/VIS_jags/out/ouicli5.pl
       setting permissions: 700
       setting ownership: oracle:oinstall
    instantiate file:
       source : /u01/E-BIZ/apps/tech_st/10.1.2/appsutil/template/adlnktools.sh
       dest   : /u01/E-BIZ/apps/tech_st/10.1.2/appsutil/clone/adlnktools.sh
       backup : /u01/E-BIZ/apps/tech_st/10.1.2/appsutil/clone/adlnktools.sh to /u01/E-BIZ/inst/apps/VIS_jags/out/adlnktools1.sh
       setting permissions: 700
       setting ownership: oracle:oinstall
    instantiate file:
       source : /u01/E-BIZ/apps/tech_st/10.1.2/appsutil/template/txkstubcfg1012.pl
       dest   : /u01/E-BIZ/apps/tech_st/10.1.2/appsutil/clone/txkstubcfg1012.pl
       backup : /u01/E-BIZ/apps/tech_st/10.1.2/appsutil/clone/txkstubcfg1012.pl to /u01/E-BIZ/inst/apps/VIS_jags/out/txkstubcfg10121.pl
       setting permissions: 700
       setting ownership: oracle:oinstall
    instantiate file:
       source : /u01/E-BIZ/apps/tech_st/10.1.2/appsutil/template/ftrace_cfg_1012.tmp
       dest   : /u01/E-BIZ/apps/tech_st/10.1.2/forms/server/ftrace.cfg
       backup : /u01/E-BIZ/apps/tech_st/10.1.2/forms/server/ftrace.cfg to /u01/E-BIZ/inst/apps/VIS_jags/out/ftrace1.cfg
       setting permissions: 700
       setting ownership: oracle:oinstall
    Executing script in InstantiateFile:
    /u01/E-BIZ/apps/tech_st/10.1.3/perl/bin/perl -I /u01/E-BIZ/apps/tech_st/10.1.3/perl/lib/5.8.3 -I /u01/E-BIZ/apps/tech_st/10.1.3/perl/lib/site_perl/5.8.3 -I /u01/E-BIZ/apps/apps_st/appl/au/12.0.0/perl -I /u01/E-BIZ/apps/tech_st/10.1.3/Apache/Apache/mod_perl/lib/site_perl/5.8.3/i686-linux-thread-multi /u01/E-BIZ/apps/tech_st/10.1.2/appsutil/clone/ouicli.pl
    script returned:
    Beginning OUI CLI cloning for s_tools_ohWed Dec 25 09:57:50 2013
    /u01/E-BIZ/apps/tech_st/10.1.3/jdk/bin/java -classpath /u01/E-BIZ/apps/apps_st/comn/clone/jlib/java:/u01/E-BIZ/apps/tech_st/10.1.2/oui/jlib/OraInstaller.jar:/u01/E-BIZ/apps/apps_st/comn/clone/jlib/xmlparserv2.jar:/u01/E-BIZ/apps/apps_st/comn/clone/jlib/ojdbc14.jar  oracle.apps.ad.clone.util.OracleHomeCloner  -OUICLI -e /u01/E-BIZ/inst/apps/VIS_jags/appl/admin/VIS_jags.xml -nolink -oaVar s_tools_oh -homestub tools -log /u01/E-BIZ/inst/apps/VIS_jags/admin/log/ohclone.log
    NON-COMPLIANT: /u01/E-BIZ/apps/tech_st/10.1.2/oraInst.loc does not point to an inventory inside the current ORACLE_HOME
    Rapid Clone only supports oraInst.loc at that location if its content points to an inventory inside the same ORACLE_HOME
    Please make the necessary changes to the following file:
    /u01/E-BIZ/apps/tech_st/10.1.2/oraInst.loc
    Running OUI CLI home cloning from within OracleHomeCloner:
      /u01/E-BIZ/apps/tech_st/10.1.2/oui/bin/runInstaller -debug -clone -silent -force -nolink -waitForCompletion -invPtrLoc /u01/E-BIZ/inst/apps/VIS_jags/admin/oraInst.loc session:ORACLE_HOME=/u01/E-BIZ/apps/tech_st/10.1.2 oracle.as.j2ee.top:s_asInstanceName=VIS_TOOLS__u01_E_BIZ_apps_tech_st_10_1_2 oracle.as.j2ee.top:s_adminName=ias_admin oracle.as.j2ee.top:s_adminPassword=welcome ORACLE_HOME_NAME=VIS_TOOLS__u01_E_BIZ_apps_tech_st_10_1_2 -J-Doracle.installer.noLink=true
    Finished OUI CLI cloning for s_tools_oh with return code: 0Wed Dec 25 09:58:24 2013
    .end std out.
    .end err out.
    Executing script in InstantiateFile:
    /u01/E-BIZ/apps/tech_st/10.1.2/appsutil/clone/adlnktools.sh
    script returned:
    adlnktools.sh started at Wed Dec 25 09:58:24 EST 2013
    Log file located at /u01/E-BIZ/inst/apps/VIS_jags/logs/ora/10.1.2/install/make_12250958.log
    Error while running adlnktools.sh.
      return code = .46
    Please check logfile located at /u01/E-BIZ/inst/apps/VIS_jags/logs/ora/10.1.2/install/make_12250958.log
    .end std out.
    .end err out.
    Executing script in InstantiateFile:
    /u01/E-BIZ/apps/tech_st/10.1.3/perl/bin/perl -I /u01/E-BIZ/apps/tech_st/10.1.3/perl/lib/5.8.3 -I /u01/E-BIZ/apps/tech_st/10.1.3/perl/lib/site_perl/5.8.3 -I /u01/E-BIZ/apps/apps_st/appl/au/12.0.0/perl -I /u01/E-BIZ/apps/tech_st/10.1.3/Apache/Apache/mod_perl/lib/site_perl/5.8.3/i686-linux-thread-multi /u01/E-BIZ/apps/tech_st/10.1.2/appsutil/clone/txkstubcfg1012.pl
    script returned:
    .end std out.
    .end err out.
    instantiate file:
       source : /u01/E-BIZ/apps/tech_st/10.1.2/appsutil/template/adouitools.pl
       dest   : /u01/E-BIZ/apps/tech_st/10.1.2/appsutil/clone/ouicli.pl
       backup : /u01/E-BIZ/apps/tech_st/10.1.2/appsutil/clone/ouicli.pl to /u01/E-BIZ/inst/apps/VIS_jags/out/ouicli6.pl
       setting permissions: 700
       setting ownership: oracle:oinstall
    instantiate file:
       source : /u01/E-BIZ/apps/tech_st/10.1.2/appsutil/template/adlnktools.sh
       dest   : /u01/E-BIZ/apps/tech_st/10.1.2/appsutil/clone/adlnktools.sh
       backup : /u01/E-BIZ/apps/tech_st/10.1.2/appsutil/clone/adlnktools.sh to /u01/E-BIZ/inst/apps/VIS_jags/out/adlnktools2.sh
       setting permissions: 700
       setting ownership: oracle:oinstall
    instantiate file:
       source : /u01/E-BIZ/apps/tech_st/10.1.2/appsutil/template/txkstubcfg1012.pl
       dest   : /u01/E-BIZ/apps/tech_st/10.1.2/appsutil/clone/txkstubcfg1012.pl
       backup : /u01/E-BIZ/apps/tech_st/10.1.2/appsutil/clone/txkstubcfg1012.pl to /u01/E-BIZ/inst/apps/VIS_jags/out/txkstubcfg10122.pl
       setting permissions: 700
       setting ownership: oracle:oinstall
    instantiate file:
       source : /u01/E-BIZ/apps/tech_st/10.1.2/appsutil/template/ftrace_cfg_1012.tmp
       dest   : /u01/E-BIZ/apps/tech_st/10.1.2/forms/server/ftrace.cfg
       backup : /u01/E-BIZ/apps/tech_st/10.1.2/forms/server/ftrace.cfg to /u01/E-BIZ/inst/apps/VIS_jags/out/ftrace2.cfg
       setting permissions: 700
       setting ownership: oracle:oinstall
    Completed home registration for s_tools_oh
    Completed home registration.
    Skipping AutoConfig execution. AutoConfig will be run as a part of ApplyAppltop
    ApplyApplTechStack Completed Successfully.
    # Calling ApplyApplTop...
    Executing runInstallDriver...
    Started unzipping files...
    Completed runInstallDriver.
    Skipping prodsetup driver processing; driver file not found at: /u01/E-BIZ/apps/apps_st/comn/clone//apps/driver/jags_prodsetup.drv
    Executing runAutoConfig...
    Deleting files of type INSTALL
    Processing driver file: /u01/E-BIZ/apps/apps_st/appl/icx/12.0.0/admin/driver/icxtmpl.drv
    Processing driver file: /u01/E-BIZ/apps/apps_st/appl/msc/12.0.0/admin/driver/msctmpl.drv
    Checking for file: /u01/E-BIZ/inst/apps/VIS_jags/admin/scripts/msc/mscmatlab.sh
    File exists
    File deleted
    Processing driver file: /u01/E-BIZ/apps/apps_st/appl/ieo/12.0.0/admin/driver/ieotmpl.drv
    Processing driver file: /u01/E-BIZ/apps/apps_st/appl/bis/12.0.0/admin/driver/bistmpl.drv
    Processing driver file: /u01/E-BIZ/apps/apps_st/appl/ams/12.0.0/admin/driver/amstmpl.drv
    Processing driver file: /u01/E-BIZ/apps/apps_st/appl/cct/12.0.0/admin/driver/ccttmpl.drv
    Processing driver file: /u01/E-BIZ/apps/apps_st/appl/wsh/12.0.0/admin/driver/wshtmpl.drv
    Processing driver file: /u01/E-BIZ/apps/apps_st/appl/cln/12.0.0/admin/driver/clntmpl.drv
    Processing driver file: /u01/E-BIZ/apps/apps_st/appl/oke/12.0.0/admin/driver/oketmpl.drv
    Processing driver file: /u01/E-BIZ/apps/apps_st/appl/okl/12.0.0/admin/driver/okltmpl.drv
    Processing driver file: /u01/E-BIZ/apps/apps_st/appl/oks/12.0.0/admin/driver/okstmpl.drv
    Processing driver file: /u01/E-BIZ/apps/apps_st/appl/csf/12.0.0/admin/driver/csftmpl.drv
    Processing driver file: /u01/E-BIZ/apps/apps_st/appl/igs/12.0.0/admin/driver/igstmpl.drv
    Processing driver file: /u01/E-BIZ/apps/apps_st/appl/iby/12.0.0/admin/driver/ibytmpl.drv
    Processing driver file: /u01/E-BIZ/apps/apps_st/appl/jtf/12.0.0/admin/driver/jtftmpl.drv
    Processing driver file: /u01/E-BIZ/apps/apps_st/appl/mwa/12.0.0/admin/driver/mwatmpl.drv
    Processing driver file: /u01/E-BIZ/apps/apps_st/appl/cn/12.0.0/admin/driver/cntmpl.drv
    Processing driver file: /u01/E-BIZ/apps/apps_st/appl/csi/12.0.0/admin/driver/csitmpl.drv
    Processing driver file: /u01/E-BIZ/apps/apps_st/appl/wip/12.0.0/admin/driver/wiptmpl.drv
    Processing driver file: /u01/E-BIZ/apps/apps_st/appl/fnd/12.0.0/admin/driver/fndtmpl.drv
    Checking for file: /u01/E-BIZ/inst/apps/VIS_jags/ora/10.1.3/Apache/Apache/conf/url_fw_ws.conf
    File exists
    File deleted
    Checking for file: /u01/E-BIZ/inst/apps/VIS_jags/ora/10.1.3/Apache/Apache/conf/custom.conf
    File exists
    File deleted
    Checking for file: /u01/E-BIZ/inst/apps/VIS_jags/ora/10.1.3/j2ee/oafm/config/mapViewerConfig.xml
    File exists
    File deleted
    Checking for file: /u01/E-BIZ/inst/apps/VIS_jags/ora/10.1.2/network/admin/tnsnames.ora
    File exists
    File deleted
    Checking for file: /u01/E-BIZ/inst/apps/VIS_jags/ora/10.1.3/network/admin/tnsnames.ora
    File exists
    File deleted
    Checking for file: /u01/E-BIZ/inst/apps/VIS_jags/admin/install/admk80ln.sql
    File exists
    File deleted
    Checking for file: /u01/E-BIZ/inst/apps/VIS_jags/admin/install/admk80ln.sh
    File exists
    File deleted
    Checking for file: /u01/E-BIZ/inst/apps/VIS_jags/admin/install/txkWfClone.sh
    File exists
    File deleted
    Processing driver file: /u01/E-BIZ/apps/apps_st/appl/cse/12.0.0/admin/driver/csetmpl.drv
    Processing driver file: /u01/E-BIZ/apps/apps_st/appl/eam/12.0.0/admin/driver/eamtmpl.drv
    Processing driver file: /u01/E-BIZ/apps/apps_st/appl/fte/12.0.0/admin/driver/ftetmpl.drv
    Processing driver file: /u01/E-BIZ/apps/apps_st/appl/ad/12.0.0/admin/driver/adtmpl.drv
    Checking for file: /u01/E-BIZ/inst/apps/VIS_jags/admin/install/txkConfigAppsOcm.pl
    File exists
    File deleted
    Checking for file: /u01/E-BIZ/inst/apps/VIS_jags/ora/10.1.3/Apache/Apache/conf/url_fw_ws.conf
    Checking for file: /u01/E-BIZ/inst/apps/VIS_jags/ora/10.1.3/Apache/Apache/conf/custom.conf
    Checking for file: /u01/E-BIZ/inst/apps/VIS_jags/ora/10.1.3/j2ee/oafm/config/mapViewerConfig.xml
    Checking for file: /u01/E-BIZ/inst/apps/VIS_jags/ora/10.1.2/network/admin/tnsnames.ora
    Checking for file: /u01/E-BIZ/inst/apps/VIS_jags/ora/10.1.3/network/admin/tnsnames.ora
    Checking for file: /u01/E-BIZ/inst/apps/VIS_jags/admin/install/admk80ln.sql
    Checking for file: /u01/E-BIZ/inst/apps/VIS_jags/admin/install/admk80ln.sh
    Checking for file: /u01/E-BIZ/inst/apps/VIS_jags/admin/install/txkWfClone.sh
    Processing driver file: /u01/E-BIZ/apps/apps_st/appl/ont/12.0.0/admin/driver/onttmpl.drv
    Processing driver file: /u01/E-BIZ/apps/apps_st/appl/ar/12.0.0/admin/driver/artmpl.drv
    Processing driver file: /u01/E-BIZ/apps/apps_st/appl/ahl/12.0.0/admin/driver/ahltmpl.drv
    Processing driver file: /u01/E-BIZ/apps/apps_st/appl/ozf/12.0.0/admin/driver/ozftmpl.drv
    Processing driver file: /u01/E-BIZ/apps/apps_st/appl/ies/12.0.0/admin/driver/iestmpl.drv
    Processing driver file: /u01/E-BIZ/apps/apps_st/appl/csd/12.0.0/admin/driver/csdtmpl.drv
    Processing driver file: /u01/E-BIZ/apps/apps_st/appl/igc/12.0.0/admin/driver/igctmpl.drv
    Starting CVM.....
        Using Context file          : /u01/E-BIZ/inst/apps/VIS_jags/appl/admin/VIS_jags.xml
    Attempting to create a back up of the Context file
    Created back up file of name :
          /u01/E-BIZ/inst/apps/VIS_jags/admin/out/12250959/VIS_jags.xml
    ===========================================================================
    Starting synchronization of file system Context file and its templates with those in the database
       Database connection     : Failed
       OAM Context editing support feature: Unverified
       OAM Customization support feature  : Unverified
       File system template    : /u01/E-BIZ/apps/apps_st/appl/ad/12.0.0/admin/template/adxmlctx.tmp
       Checking for customizations to Context template
       Warning: Unable to connect to Database.
               If the system is OAM enabled, this may result in loss of customizations.
       Looking for custom template at : /u01/E-BIZ/apps/apps_st/appl/ad/12.0.0/admin/template/custom/adxmlctx.tmp
       Custom template         : Not Available
       Customizations found    : None
       File system Context file :/u01/E-BIZ/inst/apps/VIS_jags/appl/admin/VIS_jags.xml
       Checking the Context file for possible updates from the Database
       Warning: Unable to connect to Database.
               If the system is OAM enabled, this may result in loss of customizations and the Context files in DataBase and in the file system may be unsynchronized
    ===========================================================================
    Starting Updates of Context file Wed Dec 25 09:59:56 EST 2013
          found context version     : 120.271.12010000.36
          available update version  : 120.271.12010000.36
    No updates to apply
    Ending Updates of Context file
    ===========================================================================
    ===========================================================================
    Config Tool CVMHelper started at Wed Dec 25 09:59:56 EST 2013
    ===========================================================================
    Updating local context file variables for Middle Tier
    Checking file /u01/E-BIZ/apps/apps_st/appl/ad/12.0.0/admin/template/adgendbc_ux.sh
    FND_SECURE: /u01/E-BIZ/inst/apps/VIS_jags/appl/fnd/12.0.0/secure
    DBC FILE NAME: VIS
    File exists, getting the version
    Version: 120.8.12010000.6
    No updates to s_fnd_secure needed
    Writing Context File back to File System
    Context file updated
    Making database connection using DBUtil
                       ADX Database Utility                       
    getConnectionUsingAppsJDBCConnector() -->
        APPS_JDBC_URL=''
        Trying to get connection using SID based connect descriptor
    getConnection() -->
        sDbHost    : jagdish
        sDbDomain  : oracle.com
        sDbPort    : 1563
        sDbSid     : VIS
        sDbUser    : APPS
        Trying to connect using SID...
    getConnectionUsingSID() -->
        JDBC URL: jdbc:oracle:thin:@jagdish.oracle.com:1563:VIS
        Exception occurred: java.sql.SQLException: ORA-28000: the account is locked
        Trying to connect using SID as ServiceName
    getConnectionUsingServiceName() -->
        JDBC URL: jdbc:oracle:thin:@(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=jagdish.oracle.com)(PORT=1563))(CONNECT_DATA=(SERVICE_NAME=VIS)))
        Exception occurred: java.sql.SQLException: ORA-28000: the account is locked
        Trying to connect using SID as ServiceName.DomainName
    getConnectionUsingServiceName() -->
        JDBC URL: jdbc:oracle:thin:@(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=jagdish.oracle.com)(PORT=1563))(CONNECT_DATA=(SERVICE_NAME=VIS.oracle.com)))
        Exception occurred: java.sql.SQLException: Listener refused the connection with the following error:
    ORA-12514, TNS:listener does not currently know of service requested in connect descriptor
    The Connection descriptor used by the client was:
    (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=jagdish.oracle.com)(PORT=1563))(CONNECT_DATA=(SERVICE_NAME=VIS.oracle.com)))
        Connection could not be obtained; returning null
    -------------------ADX Database Utility Finished---------------
    Exception occurred while preseeding variables in the context file: java.sql.SQLException: Could not get connection to the database
    StackTrace:
    java.sql.SQLException: Could not get connection to the database
        at oracle.apps.ad.tools.configuration.CVMHelper.processNewContextFile(CVMHelper.java:875)
        at oracle.apps.ad.context.CtxValueMgt.preSeed2Ctx(CtxValueMgt.java:1825)
        at oracle.apps.ad.context.CtxValueMgt.processCtxFile(CtxValueMgt.java:1620)
        at oracle.apps.ad.clone.ApplyApplTop.runCVM(ApplyApplTop.java:510)
        at oracle.apps.ad.clone.ApplyApplTop.runAutoConfig(ApplyApplTop.java:552)
        at oracle.apps.ad.clone.ApplyApplTop.doConf(ApplyApplTop.java:339)
        at oracle.apps.ad.clone.ApplyApplTop.doApply(ApplyApplTop.java:382)
        at oracle.apps.ad.clone.ApplyApplTop.<init>(ApplyApplTop.java:267)
        at oracle.apps.ad.clone.ApplyAppsTier.<init>(ApplyAppsTier.java:105)
        at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
        at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
        at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
        at java.lang.reflect.Constructor.newInstance(Constructor.java:513)
        at oracle.apps.ad.clone.util.CloneProcessor.run(CloneProcessor.java:67)
        at java.lang.Thread.run(Thread.java:619)
    ===========================================================================
    Starting synchronization of product tops at Wed Dec 25 09:59:56 EST 2013
       Contextfile             : /u01/E-BIZ/inst/apps/VIS_jags/appl/admin/VIS_jags.xml
       Topfile                 : /u01/E-BIZ/apps/apps_st/appl/admin/topfile.txt
    Verifying system requirements:
       ContextFile             : VALID
       TopFile                 : VALID
    Updating the Contextfile:
    [ s_blctop ]
       Action                  : Add the Product
       Path for Model          : /u01/E-BIZ/apps/apps_st/appl/blc/12.0.0
       Path in Contextfile     : /u01/E-BIZ/apps/apps_st/appl/blc/12.0.0
    [ s_ipdtop ]
       Action                  : Add the Product
       Path for Model          : /u01/E-BIZ/apps/apps_st/appl/ipd/12.0.0
       Path in Contextfile     : /u01/E-BIZ/apps/apps_st/appl/ipd/12.0.0
    [ s_rhxtop ]
       Action                  : Add the Product
       Path for Model          : /u01/E-BIZ/apps/apps_st/appl/rhx/12.0.0
       Path in Contextfile     : /u01/E-BIZ/apps/apps_st/appl/rhx/12.0.0
    [ s_ozstop ]
       Action                  : Add the Product
       Path for Model          : /u01/E-BIZ/apps/apps_st/appl/ozs/12.0.0
       Path in Contextfile     : /u01/E-BIZ/apps/apps_st/appl/ozs/12.0.0
    [ s_ozptop ]
       Action                  : Add the Product
       Path for Model          : /u01/E-BIZ/apps/apps_st/appl/ozp/12.0.0
       Path in Contextfile     : /u01/E-BIZ/apps/apps_st/appl/ozp/12.0.0
    [ s_zsatop ]
       Action                  : Add the Product
       Path for Model          : /u01/E-BIZ/apps/apps_st/appl/zsa/12.0.0
       Path in Contextfile     : /u01/E-BIZ/apps/apps_st/appl/zsa/12.0.0
    [ s_jtstop ]
       Action                  : Add the Product
       Path for Model          : /u01/E-BIZ/apps/apps_st/appl/jts/12.0.0
       Path in Contextfile     : /u01/E-BIZ/apps/apps_st/appl/jts/12.0.0
    [ s_ibatop ]
       Action                  : Add the Product
       Path for Model          : /u01/E-BIZ/apps/apps_st/appl/iba/12.0.0
       Path in Contextfile     : /u01/E-BIZ/apps/apps_st/appl/iba/12.0.0
    [ s_zfatop ]
       Action                  : Add the Product
       Path for Model          : /u01/E-BIZ/apps/apps_st/appl/zfa/12.0.0
       Path in Contextfile     : /u01/E-BIZ/apps/apps_st/appl/zfa/12.0.0
    [ s_abmtop ]
       Action                  : Add the Product
       Path for Model          : /u01/E-BIZ/apps/apps_st/appl/abm/12.0.0
       Path in Contextfile     : /u01/E-BIZ/apps/apps_st/appl/abm/12.0.0
    [ s_imttop ]
       Action                  : Add the Product
       Path for Model          : /u01/E-BIZ/apps/apps_st/appl/imt/12.0.0
       Path in Contextfile     : /u01/E-BIZ/apps/apps_st/appl/imt/12.0.0
    [ s_eaatop ]
       Action                  : Add the Product
       Path for Model          : /u01/E-BIZ/apps/apps_st/appl/eaa/12.0.0
       Path in Contextfile     : /u01/E-BIZ/apps/apps_st/appl/eaa/12.0.0
    [ s_vehtop ]
       Action                  : Add the Product
       Path for Model          : /u01/E-BIZ/apps/apps_st/appl/veh/12.0.0
       Path in Contextfile     : /u01/E-BIZ/apps/apps_st/appl/veh/12.0.0
    [ s_amftop ]
       Action                  : Add the Product
       Path for Model          : /u01/E-BIZ/apps/apps_st/appl/amf/12.0.0
       Path in Contextfile     : /u01/E-BIZ/apps/apps_st/appl/amf/12.0.0
    [ s_okrtop ]
       Action                  : Add the Product
       Path for Model          : /u01/E-BIZ/apps/apps_st/appl/okr/12.0.0
       Path in Contextfile     : /u01/E-BIZ/apps/apps_st/appl/okr/12.0.0
    [ s_okotop ]
       Action                  : Add the Product
       Path for Model          : /u01/E-BIZ/apps/apps_st/appl/oko/12.0.0
       Path in Contextfile     : /u01/E-BIZ/apps/apps_st/appl/oko/12.0.0
    [ s_okbtop ]
       Action                  : Add the Product
       Path for Model          : /u01/E-BIZ/apps/apps_st/appl/okb/12.0.0
       Path in Contextfile     : /u01/E-BIZ/apps/apps_st/appl/okb/12.0.0
    [ s_rcmtop ]
       Action                  : Add the Product
       Path for Model          : /u01/E-BIZ/apps/apps_st/appl/rcm/12.0.0
       Path in Contextfile     : /u01/E-BIZ/apps/apps_st/appl/rcm/12.0.0
    [ s_xnstop ]
       Action                  : Add the Product
       Path for Model          : /u01/E-BIZ/apps/apps_st/appl/xns/12.0.0
       Path in Contextfile     : /u01/E-BIZ/apps/apps_st/appl/xns/12.0.0
    [ s_fpttop ]
       Action                  : Add the Product
       Path for Model          : /u01/E-BIZ/apps/apps_st/appl/fpt/12.0.0
       Path in Contextfile     : /u01/E-BIZ/apps/apps_st/appl/fpt/12.0.0
    [ s_xnmtop ]
       Action                  : Add the Product
       Path for Model          : /u01/E-BIZ/apps/apps_st/appl/xnm/12.0.0
       Path in Contextfile     : /u01/E-BIZ/apps/apps_st/appl/xnm/12.0.0
    [ s_xnitop ]
       Action                  : Add the Product
       Path for Model          : /u01/E-BIZ/apps/apps_st/appl/xni/12.0.0
       Path in Contextfile     : /u01/E-BIZ/apps/apps_st/appl/xni/12.0.0
    [ s_xnctop ]
       Action                  : Add the Product
       Path for Model          : /u01/E-BIZ/apps/apps_st/appl/xnc/12.0.0
       Path in Contextfile     : /u01/E-BIZ/apps/apps_st/appl/xnc/12.0.0
    [ s_evmtop ]
       Action                  : Add the Product
       Path for Model          : /u01/E-BIZ/apps/apps_st/appl/evm/12.0.0
       Path in Contextfile     : /u01/E-BIZ/apps/apps_st/appl/evm/12.0.0
    [ s_cuntop ]
       Action                  : Add the Product
       Path for Model          : /u01/E-BIZ/apps/apps_st/appl/cun/12.0.0
       Path in Contextfile     : /u01/E-BIZ/apps/apps_st/appl/cun/12.0.0
    [ s_cuetop ]
       Action                  : Add the Product
       Path for Model          : /u01/E-BIZ/apps/apps_st/appl/cue/12.0.0
       Path in Contextfile     : /u01/E-BIZ/apps/apps_st/appl/cue/12.0.0
    [ s_ahmtop ]
       Action                  : Add the Product
       Path for Model          : /u01/E-BIZ/apps/apps_st/appl/ahm/12.0.0
       Path in Contextfile     : /u01/E-BIZ/apps/apps_st/appl/ahm/12.0.0
    [ s_metop ]
       Action                  : Add the Product
       Path for Model          : /u01/E-BIZ/apps/apps_st/appl/me/12.0.0
       Path in Contextfile     : /u01/E-BIZ/apps/apps_st/appl/me/12.0.0
    [ s_rlatop ]
       Action                  : Add the Product
       Path for Model          : /u01/E-BIZ/apps/apps_st/appl/rla/12.0.0
       Path in Contextfile     : /u01/E-BIZ/apps/apps_st/appl/rla/12.0.0
    [ s_csstop ]
       Action                  : Add the Product
       Path for Model          : /u01/E-BIZ/apps/apps_st/appl/css/12.0.0
       Path in Contextfile     : /u01/E-BIZ/apps/apps_st/appl/css/12.0.0
    Synchronization of product tops successful
    ===========================================================================
    ===========================================================================
    Starting synchronization of product tops at Wed Dec 25 09:59:57 EST 2013
       Contextfile             : /u01/E-BIZ/inst/apps/VIS_jags/appl/admin/VIS_jags.xml
       Topfile                 : /u01/E-BIZ/apps/apps_st/appl/admin/topfile.txt
    Verifying system requirements:
       ContextFile             : VALID
       TopFile                 : VALID
    No updates to Contextfile for Product Tops needed
    Synchronization of product tops successful
    ===========================================================================
    ===========================================================================
    Starting location of IANA character set
    [s_iana_cset]
        IANA Charset obtained from Database    : null
        IANA Charset present in Context file   : UTF-8
        IANA Charset based on APPL_TOP char set: UTF-8
        IANA Charset decided for Context file  : UTF-8
        Action taken : None, since the correct value exists in the Context file
    ===========================================================================
    ===========================================================================
    Starting Context Value Management System at Wed Dec 25 09:59:57 EST 2013
    Using version 120.13.12010000.3
    Options:
       Force               : no
       Contextfile         : /u01/E-BIZ/inst/apps/VIS_jags/appl/admin/VIS_jags.xml
       Templatefile        : /u01/E-BIZ/apps/apps_st/appl/ad/12.0.0/admin/template/adxmlctx.tmp
       ValueUpdateFile     : /u01/E-BIZ/apps/apps_st/appl/ad/12.0.0/admin/template/adcvmat.xml
    Verifying value management system requirements:
       ContextFile         : VALID
       Template File       : VALID
       ValueUpdateFile     : VALID
    Parsing the ValueUpdateFile
    [ s_contextfile ]
       Action             : seed
       Change reason      : Setting the location to what has been specified by user
       New value          : /u01/E-BIZ/inst/apps/VIS_jags/appl/admin/VIS_jags.xml
    [ s_javamailer_imap_user ]
       Action             : askUser
       Change reason      : These values will be used for the Java-based Workflow Mailer utility.
       Expected value     : changeOnJavaMailerInstall
       Found value        : NoImapUser
       INFO               : Customer has already set a value - skipping
    [ s_javamailer_reply_to ]
       Action             : askUser
       Change reason      : These values will be used for the Java-based Workflow Mailer utility.
       Expected value     : changeOnJavaMailerInstall
       Found value        : NoReplyTo
       INFO               : Customer has already set a value - skipping
    [ s_javamailer_imaphost ]
       Action             : askUser
       Change reason      : These values will be used for the Java-based Workflow Mailer utility.
       Expected value     : changeOnJavaMailerInstall
       Found value        : NoImapHost
       INFO               : Customer has already set a value - skipping
    [ s_javamailer_imapdomainname ]
       Action             : askUser
       Change reason      : These values will be used for the Java-based Workflow Mailer utility.
       Expected value     : changeOnJavaMailerInstall
       Found value        : NoImapDomain
       INFO               : Customer has already set a value - skipping
    [ s_ohs_serveradmin ]
       Action             : askUser
       Change reason      : This value will be used for OHS Administator email address.
       Expected value     : changeOnOHSInstall
       Found value        : [email protected]
       INFO               : Customer has already set a value - skipping
    [ s_perl5lib ]
       Action             : translate
       Change reason      : Removal of hard-coded value in the templates.
       Expected value     : [/u01/E-BIZ/apps/tech_st/10.1.3/perl/lib/5.8.3:/u01/E-BIZ/apps/tech_st/10.1.3/perl/lib/site_perl/5.8.3:/u01/E-BIZ/apps/apps_st/appl/au/12.0.0/perl]
       Found value        : /u01/E-BIZ/apps/tech_st/10.1.3/perl/lib/5.8.3:/u01/E-BIZ/apps/tech_st/10.1.3/perl/lib/site_perl/5.8.3:/u01/E-BIZ/apps/apps_st/appl/au/12.0.0/perl:/u01/E-BIZ/apps/tech_st/10.1.3/Apache/Apache/mod_perl/lib/site_perl/5.8.3/i686-linux-thread-multi
       New value          : /u01/E-BIZ/apps/tech_st/10.1.3/perl/lib/5.8.3:/u01/E-BIZ/apps/tech_st/10.1.3/perl/lib/site_perl/5.8.3:/u01/E-BIZ/apps/apps_st/appl/au/12.0.0/perl:/u01/E-BIZ/apps/tech_st/10.1.3/Apache/Apache/mod_perl/lib/site_perl/5.8.3/i686-linux-thread-multi
       Check Condition    : Unconditional
       INFO               : Customer has the new value already in place - skipping
    [ s_tools_oranls ]
       Action             : translate
       Change reason      : ORA_NLS10 needs to point to the correct location.
       Expected value     : [/u01/E-BIZ/apps/tech_st/10.1.2/ocommon/nls/admin/data]
       Found value        : /u01/E-BIZ/apps/tech_st/10.1.2/nls/data/9idata
       New value          : /u01/E-BIZ/apps/tech_st/10.1.2/nls/data/9idata
       Check Condition    : Unconditional
       INFO               : Customer has the new value already in place - skipping
    [ s_cmanport ]
       Action             : translate
       Change reason      : Removing hardcoded value of s_cmanport to use s_dbport instead
       Expected value     : [1521]
       Found value        : 1563
       New value          : 1563
       Check Condition    : Unconditional
       INFO               : Customer has the new value already in place - skipping
    [ s_tools_ldlib ]
       Action             : translate
       Change reason      : To support the third-party libraries in $SHT_TOP/lib
       Expected value     : [/u01/E-BIZ/apps/tech_st/10.1.2/lib32:/u01/E-BIZ/apps/tech_st/10.1.2/lib:/usr/X11R6/lib:/usr/openwin/lib:/u01/E-BIZ/apps/tech_st/10.1.2/jdk/jre/lib/i386:/u01/E-BIZ/apps/tech_st/10.1.2/jdk/jre/lib/i386/server:/u01/E-BIZ/apps/tech_st/10.1.2/jdk/jre/lib/i386/native_threads]
       Found value        : /u01/E-BIZ/apps/tech_st/10.1.2/lib32:/u01/E-BIZ/apps/tech_st/10.1.2/lib:/usr/X11R6/lib:/usr/openwin/lib:/u01/E-BIZ/apps/tech_st/10.1.2/jdk/jre/lib/i386:/u01/E-BIZ/apps/tech_st/10.1.2/jdk/jre/lib/i386/server:/u01/E-BIZ/apps/tech_st/10.1.2/jdk/jre/lib/i386/native_threads:/u01/E-BIZ/apps/apps_st/appl/sht/12.0.0/lib
       New value          : /u01/E-BIZ/apps/tech_st/10.1.2/lib32:/u01/E-BIZ/apps/tech_st/10.1.2/lib:/usr/X11R6/lib:/usr/openwin/lib:/u01/E-BIZ/apps/tech_st/10.1.2/jdk/jre/lib/i386:/u01/E-BIZ/apps/tech_st/10.1.2/jdk/jre/lib/i386/server:/u01/E-BIZ/apps/tech_st/10.1.2/jdk/jre/lib/i386/native_threads:/u01/E-BIZ/apps/apps_st/appl/sht/12.0.0/lib
       Check Condition    : Unconditional
       INFO               : Customer has the new value already in place - skipping
    [ s_oacore_ld_lib_path ]
       Action             : translate
       Change reason      : To support the usage of third-party libraries in $SHT_TOP/lib by the Java Concurrent Programs
       Expected value     : [/u01/E-BIZ/apps/tech_st/10.1.3/lib32:/u01/E-BIZ/apps/tech_st/10.1.3/lib:/u01/E-BIZ/apps/apps_st/appl/cz/12.0.0/bin:/u01/E-BIZ/apps/apps_st/appl/iby/12.0.0/bin:/u01/E-BIZ/apps/apps_st/appl/pon/12.0.0/bin]
       Found value        : /u01/E-BIZ/apps/tech_st/10.1.3/lib32:/u01/E-BIZ/apps/tech_st/10.1.3/lib:/u01/E-BIZ/apps/apps_st/appl/cz/12.0.0/bin:/u01/E-BIZ/apps/apps_st/appl/iby/12.0.0/bin:/u01/E-BIZ/apps/apps_st/appl/pon/12.0.0/bin:/u01/E-BIZ/apps/apps_st/appl/sht/12.0.0/lib
       New value          : /u01/E-BIZ/apps/tech_st/10.1.3/lib32:/u01/E-BIZ/apps/tech_st/10.1.3/lib:/u01/E-BIZ/apps/apps_st/appl/cz/12.0.0/bin:/u01/E-BIZ/apps/apps_st/appl/iby/12.0.0/bin:/u01/E-BIZ/apps/apps_st/appl/pon/12.0.0/bin:/u01/E-BIZ/apps/apps_st/appl/sht/12.0.0/lib
       Check Condition    : Unconditional
       INFO               : Customer has the new value already in place - skipping
    [ s_jto_debug_string ]
       Action             : translate
       Change reason      : To reduce the default level of logging for the Fulfillment Server
       Expected value     : [full]
       Found value        : off
       New value          : off
       Check Condition    : Unconditional
       INFO               : Customer has the new value already in place - skipping
    [ s_jto_log_level ]
       Action             : translate
       Change reason      : To reduce the default level of logging for the Fulfillment Server
       Expected value     : [9]
       Found value        : 1
       New value          : 1
       Check Condition    : Unconditional
       INFO               : Customer has the new value already in place - skipping
    [ s_jtffstart ]
       Action             : translate
       Change reason      : To prevent the content of the DBC file from being written into the Fulfillment Server log file
       Expected value     : [/u01/E-BIZ/apps/tech_st/10.1.3/appsutil/jdk/jre/bin/java -ms128m -mx256m -classpath .:/u01/E-BIZ/apps/apps_st/comn/java/lib/jdbc6.zip:/u01/E-BIZ/apps/apps_st/comn/java/lib/orai18n.zip:/u01/E-BIZ/apps/tech_st/10.1.3/lib/xmlparserv2.jar:/u01/E-BIZ/apps/apps_st/comn/java/classes:/u01/E-BIZ/apps/apps_st/comn/java/classes/3rdparty/RFJavaInt.zip::/u01/E-BIZ/apps/apps_st/comn/java/lib/appsborg2.zip -Dengine.LogPath=/u01/E-BIZ/inst/apps/VIS_jags/logs/appl/admin/log -Dengine.TempDir=/u01/E-BIZ/inst/apps/VIS_jags/temp -Dengine.CommandPort=9342 -Dengine.AOLJ.config=/u01/E-BIZ/inst/apps/VIS_jags/appl/fnd/12.0.0/secure/VIS.dbc -Dengine.ServerID=5000 -Ddebug=off -Dengine.LogLevel=1 -Dlog.ShowWarnings=false -Dengine.FaxEnabler=oracle.apps.jtf.fm.engine.rightfax.RfFaxEnablerImpl -Dengine.PrintEnabler=oracle.apps.jtf.fm.engine.rightfax.RfPrintEnablerImpl -Dfax.TempDir=/u01/E-BIZ/inst/apps/VIS_jags/logs/appl/admin/log -Dprint.TempDir=/u01/E-BIZ/inst/apps/VIS_jags/logs/appl/admin/log -Dengine.ServerInstanceID=5000 -DTurnOffLowPriorityMonitor=no -Dengine.MaxBatchThreads=12 oracle.apps.jtf.fm.FulfillmentServer >> /u01/E-BIZ/inst/apps/VIS_jags/logs/appl/admin/log/jtffmctl.txt]
       Found value        : /u01/E-BIZ/apps/tech_st/10.1.3/appsutil/jdk/jre/bin/java -ms128m -mx256m -classpath .:/u01/E-BIZ/apps/apps_st/comn/java/lib/jdbc6.zip:/u01/E-BIZ/apps/apps_st/comn/java/lib/orai18n.zip:/u01/E-BIZ/apps/tech_st/10.1.3/lib/xmlparserv2.jar:/u01/E-BIZ/apps/apps_st/comn/java/classes:/u01/E-BIZ/apps/apps_st/comn/java/classes/3rdparty/RFJavaInt.zip::/u01/E-BIZ/apps/apps_st/comn/java/lib/appsborg2.zip -Dengine.LogPath=/u01/E-BIZ/inst/apps/VIS_jags/logs/appl/admin/log -Dengine.TempDir=/u01/E-BIZ/inst/apps/VIS_jags/temp -Dengine.CommandPromptEnabled=false -Dengine.CommandPort=9342 -Dengine.AOLJ.config=/u01/E-BIZ/inst/apps/VIS_jags/appl/fnd/12.0.0/secure/VIS.dbc -Dengine.ServerID=5000 -Ddebug=off -Dengine.LogLevel=1 -Dlog.ShowWarnings=false -Dengine.FaxEnabler=oracle.apps.jtf.fm.engine.rightfax.RfFaxEnablerImpl -Dengine.PrintEnabler=oracle.apps.jtf.fm.engine.rightfax.RfPrintEnablerImpl -Dfax.TempDir=/u01/E-BIZ/inst/apps/VIS_jags/logs/appl/admin/log -Dprint.TempDir=/u01/E-BIZ/inst/apps/VIS_jags/logs/appl/admin/log -Dengine.ServerInstanceID=5000 -DTurnOffLowPriorityMonitor=no -Dengine.MaxBatchThreads=12 oracle.apps.jtf.fm.FulfillmentServer >> /u01/E-BIZ/inst/apps/VIS_jags/logs/appl/admin/log/jtffmctl.txt
       New value          : /u01/E-BIZ/apps/tech_st/10.1.3/appsutil/jdk/jre/bin/java -ms128m -mx256m -classpath .:/u01/E-BIZ/apps/apps_st/comn/java/lib/jdbc6.zip:/u01/E-BIZ/apps/apps_st/comn/java/lib/orai18n.zip:/u01/E-BIZ/apps/tech_st/10.1.3/lib/xmlparserv2.jar:/u01/E-BIZ/apps/apps_st/comn/java/classes:/u01/E-BIZ/apps/apps_st/comn/java/classes/3rdparty/RFJavaInt.zip::/u01/E-BIZ/apps/apps_st/comn/java/lib/appsborg2.zip -Dengine.LogPath=/u01/E-BIZ/inst/apps/VIS_jags/logs/appl/admin/log -Dengine.TempDir=/u01/E-BIZ/inst/apps/VIS_jags/temp -Dengine.CommandPromptEnabled=false -Dengine.CommandPort=9342 -Dengine.AOLJ.config=/u01/E-BIZ/inst/apps/VIS_jags/appl/fnd/12.0.0/secure/VIS.dbc -Dengine.ServerID=5000 -Ddebug=off -Dengine.LogLevel=1 -Dlog.ShowWarnings=false -Dengine.FaxEnabler=oracle.apps.jtf.fm.engine.rightfax.RfFaxEnablerImpl -Dengine.PrintEnabler=oracle.apps.jtf.fm.engine.rightfax.RfPrintEnablerImpl -Dfax.TempDir=/u01/E-BIZ/inst/apps/VIS_jags/logs/appl/admin/log -Dprint.TempDir=/u01/E-BIZ/inst/apps/VIS_jags/logs/appl/admin/log -Dengine.ServerInstanceID=5000 -DTurnOffLowPriorityMonitor=no -Dengine.MaxBatchThreads=12 oracle.apps.jtf.fm.FulfillmentServer >> /u01/E-BIZ/inst/apps/VIS_jags/logs/appl/admin/log/jtffmctl.txt
       Check Condition    : Unconditional
       INFO               : Customer has the new value already in place - skipping
    [ s_jtffstart ]
       Action             : translate
       Change reason      : To prevent the content of the DBC file from being written into the Fulfillment Server log file
       Expected value     : [/u01/E-BIZ/apps/tech_st/10.1.3/appsutil/jdk/jre/bin/java -ms128m -mx256m -classpath .:/u01/E-BIZ/apps/apps_st/comn/java/lib/jdbc6.zip:/u01/E-BIZ/apps/apps_st/comn/java/lib/orai18n.zip:/u01/E-BIZ/apps/tech_st/10.1.3/lib/xmlparserv2.jar:/u01/E-BIZ/apps/apps_st/comn/java/classes:/u01/E-BIZ/apps/apps_st/comn/java/classes/3rdparty/RFJavaInt.zip::/u01/E-BIZ/apps/apps_st/comn/java/lib/appsborg2.zip -Dengine.LogPath=/u01/E-BIZ/inst/apps/VIS_jags/logs/appl/admin/log -Dengine.TempDir=/u01/E-BIZ/inst/apps/VIS_jags/temp -Dengine.CommandPort=9342 -Dengine.AOLJ.config=/u01/E-BIZ/inst/apps/VIS_jags/appl/fnd/12.0.0/secure/VIS.dbc -Dengine.ServerID=5000 -Ddebug=full -Dengine.LogLevel=9 -Dlog.ShowWarnings=false -Dengine.FaxEnabler=oracle.apps.jtf.fm.engine.rightfax.RfFaxEnablerImpl -Dengine.PrintEnabler=oracle.apps.jtf.fm.engine.rightfax.RfPrintEnablerImpl -Dfax.TempDir=/u01/E-BIZ/inst/apps/VIS_jags/logs/appl/admin/log -Dprint.TempDir=/u01/E-BIZ/inst/apps/VIS_jags/logs/appl/admin/log -Dengine.ServerInstanceID=5000 -DTurnOffLowPriorityMonitor=no -Dengine.MaxBatchThreads=12 oracle.apps.jtf.fm.FulfillmentServer >> /u01/E-BIZ/inst/apps/VIS_jags/logs/appl/admin/log/jtffmctl.txt]
       Found value        : /u01/E-BIZ/apps/tech_st/10.1.3/appsutil/jdk/jre/bin/java -ms128m -mx256m -classpath .:/u01/E-BIZ/apps/apps_st/comn/java/lib/jdbc6.zip:/u01/E-BIZ/apps/apps_st/comn/java/lib/orai18n.zip:/u01/E-BIZ/apps/tech_st/10.1.3/lib/xmlparserv2.jar:/u01/E-BIZ/apps/apps_st/comn/java/classes:/u01/E-BIZ/apps/apps_st/comn/java/classes/3rdparty/RFJavaInt.zip::/u01/E-BIZ/apps/apps_st/comn/java/lib/appsborg2.zip -Dengine.LogPath=/u01/E-BIZ/inst/apps/VIS_jags/logs/appl/admin/log -Dengine.TempDir=/u01/E-BIZ/inst/apps/VIS_jags/temp -Dengine.CommandPromptEnabled=false -Dengine.CommandPort=9342 -Dengine.AOLJ.config=/u01/E-BIZ/inst/apps/VIS_jags/appl/fnd/12.0.0/secure/VIS.dbc -Dengine.ServerID=5000 -Ddebug=off -Dengine.LogLevel=1 -Dlog.ShowWarnings=false -Dengine.FaxEnabler=oracle.apps.jtf.fm.engine.rightfax.RfFaxEnablerImpl -Dengine.PrintEnabler=oracle.apps.jtf.fm.engine.rightfax.RfPrintEnablerImpl -Dfax.TempDir=/u01/E-BIZ/inst/apps/VIS_jags/logs/appl/admin/log -Dprint.TempDir=/u01/E-BIZ/inst/apps/VIS_jags/logs/appl/admin/log -Dengine.ServerInstanceID=5000 -DTurnOffLowPriorityMonitor=no -Dengine.MaxBatchThreads=12 oracle.apps.jtf.fm.FulfillmentServer >> /u01/E-BIZ/inst/apps/VIS_jags/logs/appl/admin/log/jtffmctl.txt
       New value          : /u01/E-BIZ/apps/tech_st/10.1.3/appsutil/jdk/jre/bin/java -ms128m -mx256m -classpath .:/u01/E-BIZ/apps/apps_st/comn/java/lib/jdbc6.zip:/u01/E-BIZ/apps/apps_st/comn/java/lib/orai18n.zip:/u01/E-BIZ/apps/tech_st/10.1.3/lib/xmlparserv2.jar:/u01/E-BIZ/apps/apps_st/comn/java/classes:/u01/E-BIZ/apps/apps_st/comn/java/classes/3rdparty/RFJavaInt.zip::/u01/E-BIZ/apps/apps_st/comn/java/lib/appsborg2.zip -Dengine.LogPath=/u01/E-BIZ/inst/apps/VIS_jags/logs/appl/admin/log -Dengine.TempDir=/u01/E-BIZ/inst/apps/VIS_jags/temp -Dengine.CommandPromptEnabled=false -Dengine.CommandPort=9342 -Dengine.AOLJ.config=/u01/E-BIZ/inst/apps/VIS_jags/appl/fnd/12.0.0/secure/VIS.dbc -Dengine.ServerID=5000 -Ddebug=off -Dengine.LogLevel=1 -Dlog.ShowWarnings=false -Dengine.FaxEnabler=oracle.apps.jtf.fm.engine.rightfax.RfFaxEnablerImpl -Dengine.PrintEnabler=oracle.apps.jtf.fm.engine.rightfax.RfPrintEnablerImpl -Dfax.TempDir=/u01/E-BIZ/inst/apps/VIS_jags/logs/appl/admin/log -Dprint.TempDir=/u01/E-BIZ/inst/apps/VIS_jags/logs/appl/admin/log -Dengine.ServerInstanceID=5000 -DTurnOffLowPriorityMonitor=no -Dengine.MaxBatchThreads=12 oracle.apps.jtf.fm.FulfillmentServer >> /u01/E-BIZ/inst/apps/VIS_jags/logs/appl/admin/log/jtffmctl.txt
       Check Condition    : Unconditional
       INFO               : Customer has the new value already in place - skipping
    [ s_jtffstart ]
       Action             : translate
       Change reason      : To prevent the content of the DBC file from being written into the Fulfillment Server log file
       Expected value     : [/u01/E-BIZ/apps/tech_st/10.1.3/appsutil/jdk/jre/bin/java -ms128m -mx256m -classpath .:/u01/E-BIZ/apps/apps_st/comn/java/lib/jdbc6.zip:/u01/E-BIZ/apps/apps_st/comn/java/lib/orai18n.zip:/u01/E-BIZ/apps/tech_st/10.1.3/lib/xmlparserv2.jar:/u01/E-BIZ/apps/apps_st/comn/java/classes:/u01/E-BIZ/apps/apps_st/comn/java/classes/3rdparty/RFJavaInt.zip::/u01/E-BIZ/apps/apps_st/comn/java/lib/appsborg2.zip -Dengine.LogPath=/u01/E-BIZ/inst/apps/VIS_jags/logs/appl/admin/log -Dengine.TempDir=/u01/E-BIZ/inst/apps/VIS_jags/temp -Dengine.CommandPort=9342 -Dengine.AOLJ.config=/u01/E-BIZ/inst/apps/VIS_jags/appl/fnd/12.0.0/secure/VIS.dbc -Dengine.ServerID=5000 -Ddebug=full -Dengine.LogLevel=1 -Dlog.ShowWarnings=false -Dengine.FaxEnabler=oracle.apps.jtf.fm.engine.rightfax.RfFaxEnablerImpl -Dengine.PrintEnabler=oracle.apps.jtf.fm.engine.rightfax.RfPrintEnablerImpl -Dfax.TempDir=/u01/E-BIZ/inst/apps/VIS_jags/logs/appl/admin/log -Dprint.TempDir=/u01/E-BIZ/inst/apps/VIS_jags/logs/appl/admin/log -Dengine.ServerInstanceID=5000 -DTurnOffLowPriorityMonitor=no -Dengine.MaxBatchThreads=12 oracle.apps.jtf.fm.FulfillmentServer >> /u01/E-BIZ/inst/apps/VIS_jags/logs/appl/admin/log/jtffmctl.txt]
       Found value        : /u01/E-BIZ/apps/tech_st/10.1.3/appsutil/jdk/jre/bin/java -ms128m -mx256m -classpath .:/u01/E-BIZ/apps/apps_st/comn/java/lib/jdbc6.zip:/u01/E-BIZ/apps/apps_st/comn/java/lib/orai18n.zip:/u01/E-BIZ/apps/tech_st/10.1.3/lib/xmlparserv2.jar:/u01/E-BIZ/apps/apps_st/comn/java/classes:/u01/E-BIZ/apps/apps_st/comn/java/classes/3rdparty/RFJavaInt.zip::/u01/E-BIZ/apps/apps_st/comn/java/lib/appsborg2.zip -Dengine.LogPath=/u01/E-BIZ/inst/apps/VIS_jags/logs/appl/admin/log -Dengine.TempDir=/u01/E-BIZ/inst/apps/VIS_jags/temp -Dengine.CommandPromptEnabled=false -Dengine.CommandPort=9342 -Dengine.AOLJ.config=/u01/E-BIZ/inst/apps/VIS_jags/appl/fnd/12.0.0/secure/VIS.dbc -Dengine.ServerID=5000 -Ddebug=off -Dengine.LogLevel=1 -Dlog.ShowWarnings=false -Dengine.FaxEnabler=oracle.apps.jtf.fm.engine.rightfax.RfFaxEnablerImpl -Dengine.PrintEnabler=oracle.apps.jtf.fm.engine.rightfax.RfPrintEnablerImpl -Dfax.TempDir=/u01/E-BIZ/inst/apps/VIS_jags/logs/appl/admin/log -Dprint.TempDir=/u01/E-BIZ/inst/apps/VIS_jags/logs/appl/admin/log -Dengine.ServerInstanceID=5000 -DTurnOffLowPriorityMonitor=no -Dengine.MaxBatchThreads=12 oracle.apps.jtf.fm.FulfillmentServer >> /u01/E-BIZ/inst/apps/VIS_jags/logs/appl/admin/log/jtffmctl.txt
       New value          : /u01/E-BIZ/apps/tech_st/10.1.3/appsutil/jdk/jre/bin/java -ms128m -mx256m -classpath .:/u01/E-BIZ/apps/apps_st/comn/java/lib/jdbc6.zip:/u01/E-BIZ/apps/apps_st/comn/java/lib/orai18n.zip:/u01/E-BIZ/apps/tech_st/10.1.3/lib/xmlparserv2.jar:/u01/E-BIZ/apps/apps_st/comn/java/classes:/u01/E-BIZ/apps/apps_st/comn/java/classes/3rdparty/RFJavaInt.zip::/u01/E-BIZ/apps/apps_st/comn/java/lib/appsborg2.zip -Dengine.LogPath=/u01/E-BIZ/inst/apps/VIS_jags/logs/appl/admin/log -Dengine.TempDir=/u01/E-BIZ/inst/apps/VIS_jags/temp -Dengine.CommandPromptEnabled=false -Dengine.CommandPort=9342 -Dengine.AOLJ.config=/u01/E-BIZ/inst/apps/VIS_jags/appl/fnd/12.0.0/secure/VIS.dbc -Dengine.ServerID=5000 -Ddebug=off -Dengine.LogLevel=1 -Dlog.ShowWarnings=false -Dengine.FaxEnabler=oracle.apps.jtf.fm.engine.rightfax.RfFaxEnablerImpl -Dengine.PrintEnabler=oracle.apps.jtf.fm.engine.rightfax.RfPrintEnablerImpl -Dfax.TempDir=/u01/E-BIZ/inst/apps/VIS_jags/logs/appl/admin/log -Dprint.TempDir=/u01/E-BIZ/inst/apps/VIS_jags/logs/appl/admin/log -Dengine.ServerInstanceID=5000 -DTurnOffLowPriorityMonitor=no -Dengine.MaxBatchThreads=12 oracle.apps.jtf.fm.FulfillmentServer >> /u01/E-BIZ/inst/apps/VIS_jags/logs/appl/admin/log/jtffmctl.txt
       Check Condition    : Unconditional
       INFO               : Customer has the new value already in place - skipping
    [ s_jtffstart ]
       Action             : translate
       Change reason      : To prevent the content of the DBC file from being written into the Fulfillment Server log file
       Expected value     : [/u01/E-BIZ/apps/tech_st/10.1.3/appsutil/jdk/jre/bin/java -ms128m -mx256m -classpath .:/u01/E-BIZ/apps/apps_st/comn/java/lib/jdbc6.zip:/u01/E-BIZ/apps/apps_st/comn/java/lib/orai18n.zip:/u01/E-BIZ/apps/tech_st/10.1.3/lib/xmlparserv2.jar:/u01/E-BIZ/apps/apps_st/comn/java/classes:/u01/E-BIZ/apps/apps_st/comn/java/classes/3rdparty/RFJavaInt.zip::/u01/E-BIZ/apps/apps_st/comn/java/lib/appsborg2.zip -Dengine.LogPath=/u01/E-BIZ/inst/apps/VIS_jags/logs/appl/admin/log -Dengine.TempDir=/u01/E-BIZ/inst/apps/VIS_jags/temp -Dengine.CommandPort=9342 -Dengine.AOLJ.config=/u01/E-BIZ/inst/apps/VIS_jags/appl/fnd/12.0.0/secure/VIS.

    Please paste the log file of
    /u01/E-BIZ/inst/apps/VIS_jags/admin/log/ApplyAppsTier_12250956.log
    Also check
    Troubleshooting RapidClone issues with Oracle Applications R12 (Doc ID 603104.1)

  • The KitKat upgrade has been a disaster. home wireless is no longer recognized, even going through the set-up process.  It does not connect to the car through Bluetooth seamlessly--I have to add my phone as a new device each time I get in the car.  In atte

    My home wireless is no longer recognized, even going through the set-up process.  It does not connect to the car through Bluetooth seamlessly--I have to add my phone as a new device each time I get in the car.  In attempting to solve these problems I have gone to settings-phone-upgrade and it states that the upgrade is available-select to continue-(which I do)- it checks -please wait and it then states that update not available - try later.

    Maybe not too late to help you.
    For specifically fixing the Bluetooth, un-pair your phone with the car, and go through the process of repairing the two.
    In general, the KK update requires many of us (different phones) to perform a Factory Data Reset after we back up our personal content (pictures, music, movies, or other downloaded files) to a PC or MAC. This will result in you having to do a bit of work to setup icons for the programs you use, and maybe putting in the specifics again for email accounts and other specialized apps. So if you are going to do this sort of thing... copy important information/settings down on paper.
    HTH.

  • [Xtra] "An error occured while setting up drive

    I just bought a Creative Nomad Jukebox Zen Xtra 60GB.When I try to install the NOMAD Explorer, I get the following error ''An error occured while setting up drivers''.
    I tried to install drivers before plugging the device but it still gives me an error while installing the drivers "an error occured while setting up drivers."
    It is most likely because I connected my jukebox to the PC before installing the driver/software. In the instructions manual it said to install the software before connecting the player. It said on a website '' to unplug the device, boot SAFE MODE and remove the device from the device manager. Reboot, install the drivers, reboot and then plug it in.'' but I don't find my nomad in the device manager...
    I have two USB plugs and have tried the Nomad in both. I run Win ME.Any help is appreciated.<!-- / message --><!-- sig -->

    bump

  • Hi, in our Enterprise environment, we have a single mac with Mavericks version 10.9.2 and Office for Mac 14.4.1. When setting up outlook, we are trying to connect to a mailbox on exchange server 2007.

    Hi, in our Enterprise environment, we have a single mac with Mavericks version 10.9.2 and Office for Mac 14.4.1. When setting up outlook, we are trying to connect to a mailbox on exchange server 2007. We put in the EWS details in the server field since our autodiscover function is not functioning. But still it doesn't work. There are no errors, no popups. We turned on the logging and in the logs, it says a error of -3259. We are stuck and any help will be really appreciated.

    I have a customer experiencing exactly the same issue. Their computer is running Windows 7 Pro with Office 2007 SP3. After seemingly exhausting all troubleshooting options, I backed up their data, formatted the hard drive and performed a clean install of
    Windows and all their applications. It didn't solve the problem!
    What's strange is the customer also has a laptop computer, running the same version of Outlook, and that doesn't experience any problems connecting to Office 365 on the same network.
    My next step is to send the customer a new ADSL modem/router to try.
    I have another customer on Office 365, also running Outlook 2007, and they also experience issues with emails sitting in the outbox while Outlook displays the status message “Outlook is trying to retrieve data from the Microsoft exchange server outlook.office365.com.”
    In this case Outlook doesn't freeze/stop responding, like it does for the first customer I mentioned.

  • Setting up Directory Handlers under Cisco Unity Connection

    Good Day All,
    I am in the process of setting up directory handlers for Cisco Unity connection.
    When I dial the extension for the directory handler ;  I hear the default Cisco Unity connection greeting instead of being prompted for the search.
    Can anyone shed any light on why this is happening?
    Any help is greatly appreciated.
    Thanks very much
    Regards
    Amanda

    Hi javalenc,
    Of course ,  that was right.  I worked it out in the end.
    I was trying to copy the configuration from an older version of CUC and basically added an un-needed call forwarding rule under the Directory Handler.  As soon as I removed it; the directory worked normally.
    The other thing I learned last weekend was that the order of the routing rules is important.
    My directory had the first priority and it was causing people who wanted to leave a voicemail for other users to get the prompts for the directory. 
    Thanks so much for the help though.
    Regards,
    Amanda Lalli-Cafini

  • I have done al the right things to set up home sharing for mine and my sons itunes lib but i still not getting the icon showing in the menu for us to select can anyne help?

    Hi I have done all the right things to set up the home sharing, turned it on, aurthorised it with the same details, but we still have not got the home icon in the menu to select. can anyone help?

    If you have iTunes 11 on your computer then you can enable the left-hand sidebar on it via option-command-S on a Mac, control-S on a PC - when connected (and if your computer's iTunes is up-to-date) your iPad should then appear on that sidebar under a 'Devices' heading :
    If you select the iPad on that sidebar you can then use the Movies tab on the right-hand side of the iTunes screen to select and sync that film to your iPad's Videos app.
    Has your iPad been synced to the computer before ? If not then you might find this page for syncing to a new computer useful : https://discussions.apple.com/docs/DOC-3141

  • E1000 won't connect to Cisco Connect or the Web based set up

    My router is working fine but I cannot connect to Cisco Connect or the web based advanced features now. I know I broke the cardinal rule by using advanced set up so that explains why Cisco connect won't work. But I can't figure out why I can't connect to the advanced web based utility now. Who made the decision to put some features in cisco connect but not include those features in advanced settings? And then if you use advanced settings cisco connect no longer works. This is such a turn off I'm actually thinking about returning the thing to Best Buy. That's like saying "if you open the hood of your car and touch anything parts of your car will no longer function". I call support and they repeat what they read on paper "reset the router and start over and don't use advanced settings". What a pain in the &^%$.

    I've reinstalled the router again and just switched the ssid and password where it was before so all the devices in our home can connect. I first shut down the guest account using Cisco Connect (which is the only place you can control the guest account) and now I just use the advanced settings. So of course Cisco connect no longer works. I've got a strong signal all over our home. No disconnection issues at all. But this software design that puts some features in one part and other features in advanced and then shuts down cisco connect if you use advanced is insane. If I knew cisco was planning a firmware upgrade to give the advanced mode everything cisco connect has and more then I'd keep this thing. For the life of me I cannot understand why any software engineer would come up with such a design as this. And quite honestly I tried to play by their goofy rules of not using advanced settings and cisco connect died after about 4 uses. Never would connect again. Just said call support (in India) and after telling your life's story to someone simply being told to hit the reset button, power off and start the process all over again. If anyone at Cisco reads this stuff I think I have a legitimate complaint. Why on earth would you put features in Cisco Connect that aren't in advanced and why would you stop running Cisco connect just because I hard coded some mac addresses in advanced mode? I would love to know the logic behine such a crazy implementation of software.

  • Why Did I Get A Activation Error On My New Ipad While Setting Up

    On my new iOS 7.1.2 iPad While Setting Up It Said:
    Activation Error
    This device is not registered as part of the iPad Developer Program. If you are
    a member of the iPad Developer Program, please register your device in the iPad
    Developer Program Portal at http://developer.apple.com/ios
    So then i checked the link and it said to join i have to pay 99$/per year
    I don't have that money so i can't join or use my iPad now.
    is there anything I can do???
    PLEEEEEEEEEEEEEEASSSSSEEEEEEEEEEEEEE

    Where did you get this iPad from? Sounds like it's running a beta version of iOS (presently iOS 8). Connect it to iTunes on a computer and restore it: http://support.apple.com/kb/HT1414.

Maybe you are looking for

  • How to set SSL from an Webservice EJB client

    I want to invoke a web service from a stateless session EJB. How do I configure Weblogic 9.0/8.1 so that the transport uses SSL? I have a set of SSL related properties that I want to set e.g. Client Authentication Enabled, Private Key file, Client Ce

  • Struts ApplicationResource & WL6.1 EAR

    Hi All, Using Struts 1.02 and WL6.1SP3, we are running into a problem where a jsp using struts tags cannot find any key in the ApplicationResource.properties file. The properties file is located in WEB-INF/classes in a WAR, which is part of an EAR. I

  • Illustrator CS6 beta GRID question.

    Can someone who is beta-testing Illustrator CS6.. Does it yet allow you to change the grid to Thousandths? I use Illustrator with CADtools plugin for architectural drafting.  I need to adopt a drawing to 1/8 (.125) or 3/8 (.375) scale.  As it is, CS5

  • New Installation - 11.5.10.2 - Rapid Start - Forms don´t goes up.

    Good evening, I've just finished installing Oracle E-Business Suite - 11.5.10.2 version Rapid Start (if u don't know it is a pre-setup environment, but it is exactly the same product) I've installed it on Oracle Enterprise Linux version 4, following

  • Batch Determination in Process Order Creation - COR1

    Hi All I have a requirement wherein i have to map the standard sap methodology of batch determination that happens in a process order. Currently, in the tcode COR1, whenever a user selects a component material and triggers batch determination, sap de