Oracle fusion 11g configuration problem.

Dears,
I have a problem configuring classic instance of oracle fusion 11g.
Here is what I have.
Oracle virtual box 4.0.8 with windows xp sp2 32 bit.
Installed Oracle database 11g r2.
Installed sun jdk java 16 update 20.
Installed WLS using generic wls1033_generic.jar
Installed Oracle Fusion Middleware win32_11.1.1.2.0_32 software only.
Installed Oracle Fusion Middleware win32_11.1.1.3.0_32 patch.
When starting config.bat from D:\Oracle\Middleware\as_1\bin and provide some parameters, it start configuring and then sleep in the stage of creating domain, I checked the log files and no problem shown.
Please help with that.
Thanks in advance.

WinXP SP2 is not certified with FMW 11g, try to use latest patch (Portal, Discoverer, Forms, Reports 11.1.1.4, others 11.1.1.5).
M.

Similar Messages

  • Help on Oracle streams 11g configuration

    Hi Streams experts
    Can you please validate the following creation process steps ?
    What is need to have streams doing is a one way replication of the AR
    schema from a database to another database. Both DML and DDL shall do
    the replication of the data.
    Help on Oracle streams 11g configuration. I would also need your help
    on the maintenance steps, controls and procedures
    2 databases
    1 src as source database
    1 dst as destination database
    replication type 1 way of the entire schema FaeterBR
    Step 1. Set all databases in archivelog mode.
    Step 2. Change initialization parameters for Streams. The Streams pool
    size and NLS_DATE_FORMAT require a restart of the instance.
    SQL> alter system set global_names=true scope=both;
    SQL> alter system set undo_retention=3600 scope=both;
    SQL> alter system set job_queue_processes=4 scope=both;
    SQL> alter system set streams_pool_size= 20m scope=spfile;
    SQL> alter system set NLS_DATE_FORMAT=
    'YYYY-MM-DD HH24:MI:SS' scope=spfile;
    SQL> shutdown immediate;
    SQL> startup
    Step 3. Create Streams administrators on the src and dst databases,
    and grant required roles and privileges. Create default tablespaces so
    that they are not using SYSTEM.
    ---at the src
    SQL> create tablespace streamsdm datafile
    '/u01/product/oracle/oradata/orcl/strepadm01.dbf' size 100m;
    ---at the replica:
    SQL> create tablespace streamsdm datafile
    ---at both sites:
    '/u02/oracle/oradata/str10/strepadm01.dbf' size 100m;
    SQL> create user streams_adm
    identified by streams_adm
    default tablespace strepadm01
    temporary tablespace temp;
    SQL> grant connect, resource, dba, aq_administrator_role to
    streams_adm;
    SQL> BEGIN
    DBMS_STREAMS_AUTH.GRANT_ADMIN_PRIVILEGE (
    grantee => 'streams_adm',
    grant_privileges => true);
    END;
    Step 4. Configure the tnsnames.ora at each site so that a connection
    can be made to the other database.
    Step 5. With the tnsnames.ora squared away, create a database link for
    the streams_adm user at both SRC and DST. With the init parameter
    global_name set to True, the db_link name must be the same as the
    global_name of the database you are connecting to. Use a SELECT from
    the table global_name at each site to determine the global name.
    SQL> select * from global_name;
    SQL> connect streams_adm/streams_adm@SRC
    SQL> create database link DST
    connect to streams_adm identified by streams_adm
    using 'DST';
    SQL> select sysdate from dual@DST;
    SLQ> connect streams_adm/streams_adm@DST
    SQL> create database link SRC
    connect to stream_admin identified by streams_adm
    using 'SRC';
    SQL> select sysdate from dual@SRC;
    Step 6. Control what schema shall be replicated
    FaeterBR is the schema to be replicated
    Step 7. Add supplemental logging to the FaeterBR schema on all the
    tables?
    SQL> Alter table FaeterBR.tb1 add supplemental log data
    (ALL) columns;
    SQL> alter table FaeterBR.tb2 add supplemental log data
    (ALL) columns;
    etc...
    Step 8. Create Streams queues at the primary and replica database.
    ---at SRC (primary):
    SQL> connect stream_admin/stream_admin@ORCL
    SQL> BEGIN
    DBMS_STREAMS_ADM.SET_UP_QUEUE(
    queue_table => 'streams_adm.FaeterBR_src_queue_table',
    queue_name => 'streams_adm.FaeterBR_src__queue');
    END;
    ---At DST (replica):
    SQL> connect stream_admin/stream_admin@STR10
    SQL> BEGIN
    DBMS_STREAMS_ADM.SET_UP_QUEUE(
    queue_table => 'stream_admin.FaeterBR_dst_queue_table',
    queue_name => 'stream_admin.FaeterBR_dst_queue');
    END;
    Step 9. Create the capture process on the source database (SRC).
    SQL> BEGIN
    DBMS_STREAMS_ADM.ADD_SCHEMA_RULES(
    schema_name =>'FaeterBR',
    streams_type =>'capture',
    streams_name =>'FaeterBR_src_capture',
    queue_name =>'FaeterBR_src_queue',
    include_dml =>true,
    include_ddl =>true,
    include_tagged_lcr =>false,
    source_database => NULL,
    inclusion_rule => true);
    END;
    Step 10. Instantiate the FaeterBR schema at DST. by doing export
    import : Can I use now datapump to do that ?
    ---AT SRC:
    exp system/superman file=FaeterBR.dmp log=FaeterBR.log
    object_consistent=y owner=FaeterBR
    ---AT DST:
    ---Create FaeterBR tablespaces and user:
    create tablespace FaeterBR_datafile
    '/u02/oracle/oradata/str10/FaeterBR_01.dbf' size 100G;
    create tablespace ws_app_idx datafile
    '/u02/oracle/oradata/str10/FaeterBR_01.dbf' size 100G;
    create user FaeterBR identified by FaeterBR_
    default tablespace FaeterBR_
    temporary tablespace temp;
    grant connect, resource to FaeterBR;
    imp system/123db file=FaeterBR_.dmp log=FaeterBR.log fromuser=FaeterBR
    touser=FaeterBR streams_instantiation=y
    Step 11. Create a propagation job at the source database (SRC).
    SQL> BEGIN
    DBMS_STREAMS_ADM.ADD_SCHEMA_PROPAGATION_RULES(
    schema_name =>'FaeterBR',
    streams_name =>'FaeterBR_src_propagation',
    source_queue_name =>'stream_admin.FaeterBR_src_queue',
    destination_queue_name=>'stream_admin.FaeterBR_dst_queue@dst',
    include_dml =>true,
    include_ddl =>true,
    include_tagged_lcr =>false,
    source_database =>'SRC',
    inclusion_rule =>true);
    END;
    Step 12. Create an apply process at the destination database (DST).
    SQL> BEGIN
    DBMS_STREAMS_ADM.ADD_SCHEMA_RULES(
    schema_name =>'FaeterBR',
    streams_type =>'apply',
    streams_name =>'FaeterBR_Dst_apply',
    queue_name =>'FaeterBR_dst_queue',
    include_dml =>true,
    include_ddl =>true,
    include_tagged_lcr =>false,
    source_database =>'SRC',
    inclusion_rule =>true);
    END;
    Step 13. Create substitution key columns for äll the tables that
    haven't a primary key of the FaeterBR schema on DST
    The column combination must provide a unique value for Streams.
    SQL> BEGIN
    DBMS_APPLY_ADM.SET_KEY_COLUMNS(
    object_name =>'FaeterBR.tb2',
    column_list =>'id1,names,toys,vendor');
    END;
    Step 14. Configure conflict resolution at the replication db (DST).
    Any easier method applicable the schema?
    DECLARE
    cols DBMS_UTILITY.NAME_ARRAY;
    BEGIN
    cols(1) := 'id';
    cols(2) := 'names';
    cols(3) := 'toys';
    cols(4) := 'vendor';
    DBMS_APPLY_ADM.SET_UPDATE_CONFLICT_HANDLER(
    object_name =>'FaeterBR.tb2',
    method_name =>'OVERWRITE',
    resolution_column=>'FaeterBR',
    column_list =>cols);
    END;
    Step 15. Enable the capture process on the source database (SRC).
    BEGIN
    DBMS_CAPTURE_ADM.START_CAPTURE(
    capture_name => 'FaeterBR_src_capture');
    END;
    Step 16. Enable the apply process on the replication database (DST).
    BEGIN
    DBMS_APPLY_ADM.START_APPLY(
    apply_name => 'FaeterBR_DST_apply');
    END;
    Step 17. Test streams propagation of rows from source (src) to
    replication (DST).
    AT ORCL:
    insert into FaeterBR.tb2 values (
    31000, 'BAMSE', 'DR', 'DR Lejetoej');
    AT STR10:
    connect FaeterBR/FaeterBR
    select * from FaeterBR.tb2 where vendor= 'DR Lejetoej';
    Any other test that can be made?

    Check the metalink doc 301431.1 and validate
    How To Setup One-Way SCHEMA Level Streams Replication [ID 301431.1]
    Oracle Server Enterprise Edition - Version: 10.1.0.2 to 11.1.0.6
    Cheers.

  • Oracle Reports 11g: Configuration done through EM Console lost on restart

    I am looking for some help in understanding how the configuration files are synched up with Managed Server domain in Oracle Reports 11g.
    I have an HA environment that contains two managed servers on two nodes with admin server shared between the two nodes via NAS.
    I am observing that configuration changes done to in-process reports server configuration using EM console (e.g. max Connections or shared job repositor etc) do not persist a server restart.
    I have observed that the changes made by EM update the configuration files (rwserver.conf and rwservlet.properties files) under managed server domain directory.
    But when the managed server is restarted, these files are overwritten by some other copy of the same file.
    I am not able to zero down on the location of this master copy.
    Any help in identifying that configuration and resolving this issue will be great!
    I can provide more information if required.
    Thanks!
    Vikran

    Thanks, The problem seem to persist in the opmn.log.
    The logs say that there is a problem with the Connection. Particularly
    01/21/03 07:27:09 Connection 1,206.101.32.36,6201
    connect (errno=111)
    Another error we are seeing is 6201
    There is something about the DISPLAY variable being set in the configuration files. We made sure it was set according to the document note you have mentioned. After testing, the problem seem to persit.
    02/10/01 07:27:09 Connection 1,206.101.32.36,6201 connect (errno=146). Document ID 283586.995 on Metalink mention some thing similar.
    Thanks

  • Oracle Fusion 11g Vs Oracle Fusion 10g

    Hi,
    What are the major changes and how complex or simple they made it in Fusion 11g over Fusion 10g? Please share this knowledge.
    Thanks.

    In the form there is an existing parameter of CHAR type and this is assigned to a number variable within the, but this cannot be the error as when the radio button clicks for some data it display details and for some data this gives a above error.
    Never say never! Anytime you let Oracle automatically cast data from one data type to another - you are introducing risk; not to mention that it is a poor programming habit. You should ALWAYS explicitly cast your data between types because you will get inconsistent results otherwise - Oracle has always warned agaist this!
    Since you have a CHAR parameter that is being assigned to a NUMBER variable you should be using the TO_NUMBER() function to cast the CHAR to a NUMBER. For example:
    DECLARE
       n_num_data   NUMBER;
    BEGIN
       n_num_data := TO_NUMBER(:PARAMETER.Char_Data);
    EXCEPTION
       WHEN VALUE_ERROR THEN
          --Someone passed a non-numeric CHAR
          Clear_Message;
          Message('Parameter is not NUMBER');
          Message(' ');
          RAISE Form_Trigger_Failure;
    END;Hope this helps,
    Craig B-)
    If someone's response is helpful or correct, please mark it accordingly.
    Edited by: CraigB on Oct 11, 2011 7:51 AM

  • Oracle Reports In Oracle Forms 11g Parameter problem.

    Hello techies,  
                I am using Weblogic server 10.3.5 with oracle forms 11g at windows 7.I have a report that is Bar_code.rdf.It has two parameters as:
    P_1---->character type---->accepts the options(barcode generated or barcode not generated)
    P_2---->Number type------->accepts the subgroupitemId.
    This report is well working with oracle report builder. Now I tried to run it from my oracle forms.It runs but it does not accept Parameter P_2. I have used
    sParms := 'P_1='||:L_BAR||' P_2='||TO_NUMBER(:TXT_ITM_GRP);
    set_report_object_property(roRepid,report_other,sParms||' paramform=yes');
    set_report_object_property(roRepid,REPORT_SERVER,sReportServer);
      v_rep := RUN_REPORT_OBJECT(roRepid); 
    sJob := SUBSTR(v_rep,LENGTH(sReportServer)+2);   --
    But there is a parameter form is shown but when i click submmit query the,,,,there is
    Error 500--Internal Server Error
    From RFC 2068 Hypertext Transfer Protocol -- HTTP/1.1:
    10.5.1 500 Internal Server Error
    The server encountered an unexpected condition which prevented it from fulfilling the request.
    please give me the solution
    thank you
    regards
    aaditya

    Hi
    are there character symbol appeared in your parameter ?
    i've suffering for some unexpected error for parameter value end up with slash , like D:\temp\   ....
    and oracle sr (support) says that with workaround mechanism (add additional slash like D:\temp\\ ) they have not plan to fix this issue .
    hope this helpful for you.

  • Oracle JDBC Pool Configuration problems

    Hi all,
    I'm usin oracle 8.1.6 & thin driver (classes12.zip).
    I've set up correctly a pool in a wl 6.1 windows 2K machine.
    I've copied EXACTLY the configuration values in a wl 6.1 solaris 7 machine and
    doesn't works (it seems wl can't find the listener).
    My cuestions;
    -Why the wl console adds automatically the propertie dll=ocijdbc8 when i'm configuration
    the pool? I don´t want to use the OCI driver!
    -Can this be the problem?
    -Should I place classes12.zip first on the classpath than weblogic.jar?
    TIA.
    Pablo.

    Hi. The issue isn't the zip, it's probably the properties you supply for the pool.
    The oracle driver will try to use the type-2 native libraries if you specify
    a server in the properties.
    Joe
    Pablo wrote:
    Hi all,
    I'm usin oracle 8.1.6 & thin driver (classes12.zip).
    I've set up correctly a pool in a wl 6.1 windows 2K machine.
    I've copied EXACTLY the configuration values in a wl 6.1 solaris 7 machine and
    doesn't works (it seems wl can't find the listener).
    My cuestions;
    -Why the wl console adds automatically the propertie dll=ocijdbc8 when i'm configuration
    the pool? I don´t want to use the OCI driver!
    -Can this be the problem?
    -Should I place classes12.zip first on the classpath than weblogic.jar?
    TIA.
    Pablo.

  • New to the Oracle fusion 11g

    I am trying to start the SOA with the getting started with oracle SOA suite 11g but i am not able to find any creditcheck.xsd,fulfillment.xsd,orderbookingdiscount,po.xsd ,I even checked in SOA samples can any one help me on this..?

    These files are part of the Lab files that are used for this book.
    You can download the lab samples from the location: http://download.oracle.com/technology/products/soa/soasuite/books/SOA11g_GettingStarted.zip
    Thanks,
    Navaneeth

  • Oracle RAC 11G Configuration on windows server 2008 Using Hyper V

    Hi,
    I want to implement 2 node RAC with CENTOS As my virtual machine using microsoft Hyper V.
    I am confused about this ip setup Especially private and VIP.
    Can anyone help on this please
    Thanks,
    Vinodh

    Yes thanks for the reply. i did that yesterday with Oracle VM and i am almost finished with my setup.
    Found this article on net which has clear explanations. If someone need this it they can use this.
    http://www.lab128.com/rac_installation_using_vb/article_text.html
    Anyway once i fully complete this setup will close this thread until then in case of doubts i will update here.
    Thanks,
    Vinodh

  • Oracle Forms 11g Installation. Create domain problem

    Hi,
    I am installing Oracle Forms 11g on Windows 7 32-bit system. Installation is done. Create domain is failing during the configuration process.
    I searched everywhere but cudnt find a solution specific to the problem.
    Only recognisable error message is 'CSF Entries will not be parsed since the AdminServer is unreachable'.
    I have checked Node Manager is not running.
    Please find below the snapshot of the last few lines of the log file
    [2014-05-23T13:43:22.554+05:30] [as] [TRACE] [] [oracle.as.install.engine.modules.presentation] [tid: 21] [ecid: 0000KOc8z4d1NeLqyOedMG1JVjlV00000C,0] [SRC_CLASS: oracle.as.install.template.screens.ConfigurationPage] [SRC_METHOD: onDescriptionChange]  [CONFIG PAGE] New Description: Application Configuration
    [2014-05-23T13:43:22.554+05:30] [as] [TRACE] [] [oracle.as.install.engine.modules.presentation] [tid: 21] [ecid: 0000KOc8z4d1NeLqyOedMG1JVjlV00000C,0] [SRC_CLASS: oracle.as.install.template.screens.ConfigurationPage] [SRC_METHOD: onDescriptionChange]  [CONFIG PAGE] Old Description: Application Configuration
    [2014-05-23T13:43:22.570+05:30] [as] [NOTIFICATION] [] [oracle.as.install.engine] [tid: 21] [ecid: 0000KOc8z4d1NeLqyOedMG1JVjlV00000C,0] Setting valueOf(DOMAIN_HOME_PATH) to:C:/Oracle/Middleware/user_projects/domains/ClassicDomain. Value obtained from:USER
    [2014-05-23T13:43:23.787+05:30] [as] [NOTIFICATION] [] [oracle.as.install.engine] [tid: 21] [ecid: 0000KOc8z4d1NeLqyOedMG1JVjlV00000C,0] Setting valueOf(DOMAIN_PORT) to:7001. Value obtained from:USER
    [2014-05-23T13:43:27.297+05:30] [as] [NOTIFICATION] [] [oracle.as.install.engine.config] [tid: 21] [ecid: 0000KOc8z4d1NeLqyOedMG1JVjlV00000C,0] Starting Action:Application Configuration
    [2014-05-23T13:43:27.297+05:30] [as] [TRACE:16] [] [oracle.as.provisioning] [tid: 21] [ecid: 0000KOc8z4d1NeLqyOedMG1JVjlV00000C,0] [SRC_CLASS: oracle.as.install.classic.ca.standard.ClassicConfigMain] [SRC_METHOD: doExecute] ENTRY
    [2014-05-23T13:43:35.117+05:30] [as] [WARNING] [] [oracle.as.provisioning] [tid: 21] [ecid: 0000KOc8z4d1NeLqyOedMG1JVjlV00000C,0] CSF Entries will not be parsed since the AdminServer is unreachable
    [2014-05-23T13:43:35.133+05:30] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 21] [ecid: 0000KOc8z4d1NeLqyOedMG1JVjlV00000C,0] Executing a Jaxb workflow ...
    [2014-05-23T13:43:35.133+05:30] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 21] [ecid: 0000KOc8z4d1NeLqyOedMG1JVjlV00000C,0] Begining Oracle Fusion Middleware Configuration ...
    [2014-05-23T13:43:35.133+05:30] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 21] [ecid: 0000KOc8z4d1NeLqyOedMG1JVjlV00000C,0] Begining Oracle Fusion Middleware Configuration ...
    [2014-05-23T13:43:35.180+05:30] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 21] [ecid: 0000KOc8z4d1NeLqyOedMG1JVjlV00000C,0] ENTRY ASDomain.createDomain
    [2014-05-23T13:43:35.180+05:30] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 21] [ecid: 0000KOc8z4d1NeLqyOedMG1JVjlV00000C,0] ENTRY ASDomain.createDomain
    [2014-05-23T13:43:35.180+05:30] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 21] [ecid: 0000KOc8z4d1NeLqyOedMG1JVjlV00000C,0] reportStartConfigAction: ENTRY........
    [2014-05-23T13:43:35.180+05:30] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 21] [ecid: 0000KOc8z4d1NeLqyOedMG1JVjlV00000C,0] reportStartConfigAction: eventStatus........oracle.as.provisioning.engine.ConfigEventStatus@180874
    [2014-05-23T13:43:35.180+05:30] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 21] [ecid: 0000KOc8z4d1NeLqyOedMG1JVjlV00000C,0] reportStartConfigAction: 2........
    [2014-05-23T13:43:35.180+05:30] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 21] [ecid: 0000KOc8z4d1NeLqyOedMG1JVjlV00000C,0] reportStartConfigAction: Set the Extion Id to START........
    [2014-05-23T13:43:35.180+05:30] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 21] [ecid: 0000KOc8z4d1NeLqyOedMG1JVjlV00000C,0] reportStartConfigAction: Did the assignment...
    [2014-05-23T13:43:35.180+05:30] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 21] [ecid: 0000KOc8z4d1NeLqyOedMG1JVjlV00000C,0] reportStartConfigAction: EXIT........
    [2014-05-23T13:43:35.320+05:30] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 21] [ecid: 0000KOc8z4d1NeLqyOedMG1JVjlV00000C,0] Domain Home: C:/Oracle/Middleware/user_projects/domains/ClassicDomain
    [2014-05-23T13:43:35.320+05:30] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 21] [ecid: 0000KOc8z4d1NeLqyOedMG1JVjlV00000C,0] Oracle Home: C:/Oracle/Middleware/Oracle_FRHome2
    [2014-05-23T13:43:35.320+05:30] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 21] [ecid: 0000KOc8z4d1NeLqyOedMG1JVjlV00000C,0] Setting os object values in Python
    [2014-05-23T13:44:18.861+05:30] [as] [ERROR] [] [oracle.as.provisioning] [tid: 21] [ecid: 0000KOc8z4d1NeLqyOedMG1JVjlV00000C,0] [[
    oracle.as.provisioning.exception.ASProvWorkflowException: Error Executing workflow.
    at oracle.as.provisioning.engine.WorkFlowExecutor._createDomain(WorkFlowExecutor.java:686)
    at oracle.as.provisioning.engine.WorkFlowExecutor.executeWLSWorkFlow(WorkFlowExecutor.java:391)
    at oracle.as.provisioning.engine.Config.executeConfigWorkflow_WLS(Config.java:866)
    at oracle.as.install.classic.ca.standard.StandardWorkFlowExecutor.execute(StandardWorkFlowExecutor.java:65)
    at oracle.as.install.classic.ca.standard.AbstractProvisioningTask.execute(AbstractProvisioningTask.java:26)
    at oracle.as.install.classic.ca.standard.StandardProvisionTaskList.execute(StandardProvisionTaskList.java:61)
    at oracle.as.install.classic.ca.ClassicConfigMain.doExecute(ClassicConfigMain.java:124)
    at oracle.as.install.engine.modules.configuration.client.ConfigAction.execute(ConfigAction.java:375)
    at oracle.as.install.engine.modules.configuration.action.TaskPerformer.run(TaskPerformer.java:88)
    at oracle.as.install.engine.modules.configuration.action.TaskPerformer.startConfigAction(TaskPerformer.java:105)
    at oracle.as.install.engine.modules.configuration.action.ActionRequest.perform(ActionRequest.java:15)
    at oracle.as.install.engine.modules.configuration.action.RequestQueue.perform(RequestQueue.java:96)
    at oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager.start(StandardConfigActionManager.java:186)
    at oracle.as.install.engine.modules.configuration.boot.ConfigurationExtension.kickstart(ConfigurationExtension.java:81)
    at oracle.as.install.engine.modules.configuration.ConfigurationModule.run(ConfigurationModule.java:86)
    at java.lang.Thread.run(Thread.java:662)
    Any help is highly appreciated.

    Hi,
    Please run the below commands in the command prompt :-
    1)hostname
       Ex:-
           C:\Users>hostname
            celvpint8511
    2)nslookup <Result of the step 1>
       Ex :-  C:\Users>nslookup celvpint8511
                Server:         192.135.82.132
               Address:        192.135.82.132#53
               Name:   celvpint8511.us.oracle.com
               Address: 10.64.166.6 [ So this is the IP Address which needs to be used ]
    So please get the right IP and then update it in the host file.
    Regards,
    Prakash.

  • Slow Problems with Oracle Forms 10g and Oracle Database 11g

    Hi, I wonder if there is a compatibility problem between Version 10.1.2.0.2 32 Oracle Forms and Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production. This is because my application runs correctly on a version of Oracle Database 10g, and when we migrated the database to an Oracle Database 11g, slowness problems came out.
    Thanks.

    We have the same issue happening with our custom forms and with some of the standard forms in EBSO. So far we have found that the form invoking a view causes ridiculous slowness in opening the form (40 mins). Using a table access has shortened the open time significantly. At this time Oracle DBAs at OOD have no clear idea why it is happening.
    we are on 11.1 database with 11.5 EBSO
    Edited by: user3223867 on Feb 4, 2011 7:55 AM

  • Error running SOA 11g Fusion Middleware Configuration Wizard

    Hi,
    I'm running Oracle Fusion Middleware Configuration Wizard ./config.sh after a new&fresh installation of SOA 11.1.1.3.0 on standalone laptop with linux CentOS in order to create a soa_domain on WLS. All steps & tests_connections to the database rcu/soa schemas are OK, but conf wizard freezes (java 99% CPU) at the end of the procedure, when saving the domain.
    Any hint is welcomed.
    log:
    2010-05-06 02:01:52,657 INFO [WizardController] com.oracle.cie.domain.AbstractTemplate - Setting symbol for component oracle.as.soa.top version 11.1.1.2.0 to oracle.as.soa.top_11.1.1.2.0_SOA_ORACLE_HOME
    2010-05-06 02:01:52,721 INFO [WizardController] com.oracle.cie.domain.AbstractTemplate - Setting symbol for component oracle.sdp.messaging version 11.1.1.2.0 to oracle.sdp.messaging_11.1.1.2.0_SOA_ORACLE_HOME
    2010-05-06 02:01:52,972 INFO [WizardController] com.oracle.cie.domain.AbstractTemplate - Setting symbol for component oracle.sdp.messaging version 11.1.1.2.0 to oracle.sdp.messaging_11.1.1.2.0_SOA_ORACLE_HOME
    2010-05-06 02:01:53,061 INFO [WizardController] com.oracle.cie.domain.AbstractTemplate - Adding top-level component reference: oracle.as.common.top version 11.1.1.2.0
    2010-05-06 02:01:53,061 INFO [WizardController] com.oracle.cie.domain.AbstractTemplate - Setting symbol for component oracle.as.common.top version 11.1.1.2.0 to oracle.as.common.top_11.1.1.2.0_oracle_common_ORACLE_HOME
    2010-05-06 02:01:53,137 INFO [WizardController] com.oracle.cie.domain.AbstractTemplate - Setting symbol for component oracle.integration.soainfra version 11.1.1.2.0 to oracle.integration.soainfra_11.1.1.2.0_SOA_ORACLE_HOME
    2010-05-06 02:01:53,419 WARN [WizardController] com.oracle.cie.domain.aspect.XBeanConfigAspect - Unable to locate property:Target on type:class com.oracle.cie.domain.xml.configxb.impl.MachineTypeImpl
    2010-05-06 02:01:53,428 WARN [WizardController] com.oracle.cie.domain.aspect.XBeanConfigAspect - Unable to locate property:Target on type:class com.oracle.cie.domain.xml.configxb.impl.ServerTypeImpl
    2010-05-06 02:04:11,585 INFO [WizardController] com.oracle.cie.domain.DomainChecker - ListenPort internal Validation result= [null]
    2010-05-06 02:04:11,588 INFO [WizardController] com.oracle.cie.domain.DomainChecker - ListenPort external Validation result= [null]
    thx,
    Mihai

    I understood that 11.1.1.3 installs over 11.1.1.2. I download 11.1.1.3, runInstaller of 11.1.1.3 on the same SOA_HOME as 11.1.1.2 and installer finished without errors. I'am not aware if other "things" should be installed/configured. It seems that WizzardController didn't change the version of what it writes in its logs.
    (that pb with the config.sh - create domain - was present also in my 11.1.1.2 installation; that is the reason I installed the upgrade to 11.1.1.3 - just to try to resolve somehow this issue).
    thanks,
    Mihai

  • Oracle Fusion Middleware 11G  B2B Document Type not getting Identified

    Hello,
    I have installed Oracle Fusion Middleware 11g on my local machine and created a custom document type with proper .xsd definition and XPath Expression Identifier in Oracle B2B interface and configured its trading partners ( Host & Remote ) along with an agreement between the partners.
    I have also configured the host listening channel of Generic-File type which picks xml files from my c:\orclsrvs_in folder.
    My problem is that the moment I drop any sample file in the expected directory, it gets picked up from B2B , but there isn't any record of the same under Reports and Metrics links.
    The Business message, Application message and Conversation message tabs are also not showing any information about the record picked, but in wire message tab, the record is shown in PROCESSING state.
    I am not able to conclude whats wrong behind this.. where can i track the logs for the same ??
    kindly help to resolve this issue.
    Thanks & Regards
    Hiteshkumar Chaudhary

    Hi Hitesh,
    i came to know that B2B extracts the TP name from the filename itselfYes, in case of Generic File, Generic SFTP and Generic FTP, file name provides the necessary values to Oracle B2B to identify the Trading Partner. You can define your own file name format in the Delivery Channel under Transport Protocol Parameters in field "Filename format" (It's an optional field but it is always good to define your own format, otherwise B2B will take it's default format - TradingPartner_DocumentType_Revision_msgType_msgId_replytoMsgID_extension.xml ). Following Filename formats can be used -
    %FROM_PARTY%
    %TO_PARTY%
    %DOCTYPE_NAME%
    %DOCTYPE_REVISION%
    %MSG_ID%
    %TIMESTAMP%
    These file name formats can be used in any combination; for example,
    %TO_PARTY%_%DOCTYPE_NAME%_%DOCTYPE_REVISION%.dat
    Note - Any file extension is allowed.
    what are the system parameters to be set in weblogic console and how?? This activity is part of the pre and post installation steps. If you have done those without getting any errors then nothing else is required.
    how shall I reinstall XEngine properly ??XEngine is part of B2B installation. If B2B gets installed without flashing any errors then we assume that other components of this part has installed properly.
    Regards,
    Anuj
    Edited by: Anuj Dwivedi, Infosys on Aug 28, 2009 5:51 PM

  • Updating .rpd file in oracle Fusion middleware control 11G

    Hi people,
    I've a problem. I tried to upload my .rpd file by loggin in oracle Fusion middleware control 11G, doing this steps:
    correaplications-> implantation-> repository -> block editconfiguration-> search repository in folder -> insert password-> apply configuration-> restart all services. But, doesn't work. The log errors are:
    severe: element type:domain, element ID: null, opertaion result: waiting_for_opmn, detail message: timeout, waiting for opmn to start process
    severe: element type:BI_INSTANCE, element ID: coreapplication, operation result: failed_to_start, detail message: error in start one or more components of BI instance
    My coreapplication_obis1 is down and i can't start it!!! I need help, can anyone help me?
    I had to done anything before trying to upload the .rpd file?
    Thanks.
    Lucas R. A.

    Hello,
    I've resolved the problem. I just started the BI service without de opmnctl. Import the rpd, start the opmnctl and restart de bi service. After this I login in the analytics

  • Oracle fusion Middleware 11g -- forms issue while hitting url

    Hi ,
    we are facing one issue while hitting the url mentioned below
    http://scrmskr.apac.nsroot.net:7801/forms/html/CRMS_KR.htm
    FRM-92052:fatal error: cannot connect to the server at URL /forms/lservlet
    here in the above CRMS_KR.htm we have hard-coded all the parameters value that in other case is read from formsweb.cfg
    whereas if we hit the same CRMS_KR.htm renaming it to basejpi.htm and hitting below url then its opening our home page i.e our test.fmx called from this .htm file
    http://scrmskr.apac.nsroot.net:7801/forms/frmservlet
    We have gone through Oracle® Fusion Middleware Forms Services Deployment Guide
    11g Release 1 (11.1.1)
    but not able to get the issue.
    Please let us know where we are going wrong or what mapping or config settings are we missing.
    Config files:
    CRMSKR.htm_
    ======================================================
    <HTML>
    <!-- FILE: basejpi.htm (Oracle Forms) -->
    <!-- -->
    <!-- This is the default base HTML file for running a form on the -->
    <!-- web using the JDK Java Plugin. This is used for example when -->
    <!-- running with Netscape on Unix. -->
    <!-- -->
    <!-- IMPORTANT NOTES: -->
    <!-- Default values for all the variables which appear below -->
    <!-- (enclosed in percent characters) are defined in the servlet -->
    <!-- configuration file (formsweb.cfg). It is preferable to make -->
    <!-- changes in that file where possible, rather than this one. -->
    <!-- -->
    <!-- This file will be REPLACED if you reinstall Oracle Forms, so -->
    <!-- you are advised to create your own version if you want to make -->
    <!-- any modifications. You should then set the baseHTMLjpi -->
    <!-- parameter in the Forms Servlet configuration file (formsweb.cfg) -->
    <!-- to point to your new file instead of this one. -->
    <HEAD><TITLE>Credit & Risk Management System</TITLE></HEAD>
    <BODY bgcolor=#c0c0c0 SCROLL="no">
    <!-- Forms applet definition (start) -->
    <OBJECT classid="clsid:CAFEEFAC-0016-0000-0012-ABCDEFFEDCBA"
    codebase="http://java.sun.com/update/1.6.0/jinstall-6-windows-i586.cab#Version=1,6,0,12"
    WIDTH="920"
    HEIGHT="680"
    HSPACE="0"
    VSPACE="0"
    ID="">
    <SCRIPT LANGUAGE="JavaScript" SRC="/forms/frmjscript/forms_ie.js"></SCRIPT>
    <PARAM NAME="TYPE" VALUE="application/x-java-applet;jpi-version=1.6.0_12">
    <PARAM NAME="CODEBASE" VALUE="/forms/java">
    <PARAM NAME="CODE" VALUE="oracle.forms.engine.Main" >
    <PARAM NAME="ARCHIVE" VALUE="frmall.jar,crms_icons.jar" >
    <PARAM NAME="serverURL" VALUE="/forms/lservlet?ifcfs=/forms/frmservlet?acceptLanguage=en-us">
    <PARAM NAME="networkRetries" VALUE="50">
    <PARAM NAME="serverArgs"
    VALUE="escapeParams=true module=/rcrmap1/rcrrgbg2/crms/10as/fmx_dir/CRMS_LOGIN.fmx userid= debug=no host= port= obr=no record= tracegroup= log= term= ssoProxyConnect=no">
    <PARAM NAME="separateFrame" VALUE="false">
    <PARAM NAME="splashScreen" VALUE="">
    <PARAM NAME="background" VALUE="">
    <PARAM NAME="lookAndFeel" VALUE="Generic">
    <PARAM NAME="colorScheme" VALUE="teal">
    <PARAM NAME="serverApp" VALUE="default">
    <PARAM NAME="logo" VALUE="no">
    <PARAM NAME="imageBase" VALUE="CodeBase">
    <PARAM NAME="formsMessageListener" VALUE="">
    <PARAM NAME="recordFileName" VALUE="">
    <PARAM NAME="EndUserMonitoringEnabled" VALUE="">
    <PARAM NAME="EndUserMonitoringURL" VALUE="">
    <PARAM NAME="heartbeat" VALUE="">
    <PARAM NAME="MaxEventWait" VALUE="">
    <PARAM NAME="allowAlertClipboard" VALUE="true">
    <PARAM NAME="disableValidateClipboard" VALUE="false">
    <PARAM NAME="enableJavascriptEvent" VALUE="true">
    <PARAM NAME="MAYSCRIPT" VALUE="true">
    <PARAM NAME="digitSubstitution" VALUE="context">
    <PARAM NAME="legacy_lifecycle" VALUE="false">
    <PARAM NAME="JavaScriptBlocksHeartBeat" VALUE="false">
    <PARAM NAME="highContrast" VALUE="false">
    <PARAM NAME="disableMDIScrollbars" VALUE="">
    <PARAM NAME="clientDPI" VALUE="">
    <PARAM name="applet_stop_timeout" value="800">
    <COMMENT>
    <EMBED SRC="" PLUGINSPAGE="http://java.sun.com/products/archive/j2se/6u12/index.html"
    TYPE="application/x-java-applet;jpi-version=1.6.0_12"
    java_codebase="/forms/java"
    java_code="oracle.forms.engine.Main"
    java_archive="frmall.jar,crms_icons.jar"
    WIDTH="920"
    HEIGHT="680"
    HSPACE="0"
    VSPACE="0"
    NAME=""
    serverURL="/forms/lservlet?ifcfs=/forms/frmservlet"
    networkRetries="0"
    serverArgs="escapeParams=true module=/rcrmap1/rcrrgbg2/crms/10as/fmx_dir/CRMS_LOGIN.fmx userid= debug=no host= port= obr=no record= tracegroup= log= term= ssoProxyConnect=no"
    separateFrame="false"
    splashScreen=""
    background=""
    lookAndFeel="Generic"
    colorScheme="teal"
    serverApp="default"
    logo="no"
    imageBase="CodeBase"
    recordFileName=""
    EndUserMonitoringEnabled=""
    EndUserMonitoringURL=""
    heartBeat=""
    MaxEventWait=""
    disableValidateClipboard="false"
    allowAlertClipboard="true"
    enableJavascriptEvent="true"
    MAYSCRIPT="true"
    digitSubstitution="context"
    legacy_lifecycle="false"
    JavaScriptBlocksHeartBeat="false"
    highContrast="false"
    disableMDIScrollbars=""
    clientDPI=""
    applet_stop_timeout="800"
    >
    <NOEMBED>
    </COMMENT>
    </NOEMBED></EMBED>
    </OBJECT>
    <!-- Forms applet definition (end) -->
    <table border="0" width="1005" height="30" >
    <tr>
    <td width="74%" height="30" align="left"><img border="0" src="/rcrms/icons/f_cblogo.gif" width="65px" height="20px"><br>
    <font face="Garamond" size="1" >www.citigroup.net</font>
    </td>
    <td width="26%" height="30" align ="left" ><font face="Garamond" size="1.5">
    Terms,conditions, caveats and small print.<br>
    Copyright &copy; 2003 Citigroup. All rights reserved. Unpublished.</font>
    </td>
    </tr>
    </table>
    </BODY>
    </HTML>
    ======================================================
    forms.conf
    ====================================================
    # Name
    # forms.conf - Forms component Apache directives configuration file.
    # Purpose
    # It should include the weblogic managed server (routing) directives for
    # the servers where Forms applications are deployed and other miscellaneous
    # Forms component OHS directives.
    # Remarks
    # This file is included with the OHS configuration under
    # $OI/config/OHS/<OHS Node Name>/moduleconf sub-directory.
    # virtual mapping for the /forms/html mapping.
    RewriteEngine on
    RewriteRule ^/forms/html/(..*) /workaroundhtml/$1 [PT]
    RewriteRule ^/rcrms/html/(..*) /workaroundhtml/$1 [PT]
    AliasMatch ^/workaroundhtml/(..*) "/rcrmap2/weblogic/bea/rcrms/config/FormsComponent/forms/html/$1"
    AliasMatch ^/rcrms/icons/(..*) "/rcrmap2/weblogic/bea/ORA_PFRD/forms/java/$1"
    # Virtual path mapping for Forms Java jar and class files (codebase)
    AliasMatch ^/forms/java/(..*) "/rcrmap2/weblogic/bea/ORA_PFRD/forms/java/$1"
    # Virtual path mapping for testcrms (codebase)
    AliasMatch ^/rcrms/java/(..*) "/rcrmap2/weblogic/bea/ORA_PFRD/forms/java/$1"
    <Location /forms>
    SetHandler weblogic-handler
    WebLogicHost kauh0079
    WebLogicPort 8001
    </Location>
    ====================================================
    Thanks,
    Harish

    Hi Michael,
    Thanks for your valuable inputs.
    Below line in CRMS_KR.htm was causing the problem because while directly hitting the CRMS_KR.htm we had hard-coded all the tag values which in other case is read from formweb.cfg
    Before:
    *<PARAM NAME="serverURL" VALUE="/forms/lservlet?ifcfs=/forms/frmservlet?acceptLanguage=en-us">*
    We modified it to
    After:
    *<PARAM NAME="serverURL" VALUE="/forms/lservlet">*
    Now we are able to hit the below URL sucessfully
    http://scrmskr.apac.nsroot.net:7801/forms/html/CRMS_KR.htm
    Thanks & Regards,
    Harish

  • Oracle 11g Installation problems

    Hi there, Im a new Oracle's user, and I am trying to install Oracle 11g in my computer I have Windows Vista SP2 32bits, but I have a lot of problems.
    The program send me various messages of Warnings and Errors so I couldnt finished the complete instalation and configuration.
    Somebody can help me with some of this errors.
    This are the errors: (In Spanish)
    ORA-31011: Fallo en el analisis de XML
    ORA-19202: Se ha producido un error en el procesamiento
    ORA-06512: en "SYS.XMLTYPE", linea 272
    ORA-06512: en "XDB.XDB_CONFIGURATION", linea 69
    ORA-06512: en "XDB.DBMX_XDB", linea 209
    ORA-06512: en "XDB.XDB_CONFIGURATION", linea 92
    La configuración de Enterprise Manager ha fallado debido al
    siguiente error:
    Error al iniciar Database Control
    Consulte el archivo log en C:\oraclecfgtoollogsdbca\orc\emConfig.log para obtener mas información
    Posteriormente, puede reintentar la configuración de esta base de datos con
    Enterprise Manager ejecutando manualmente el archivo de comandos C:\oracle\product\11.1.0\db_1\bin\emca
    nstaller ha instalado productos en el grupo de componentes "Oracle Windows Interfaces".
    Para soportar un desarrollo perfecto en Microsoft Visual Studio con la base de datos Oracle,
    Oracle recomienda descargar e instalar la última versión de
    "Oracle Developer Tools for Visual Studio .NET" de Oracle Technology Network.
    I will aprecciatte your help.
    Thank you!

    user12191943 wrote:
    I have Windows Vista SP2 32bitsPlease specifiy WHICH edition of Vista. Oracle does have many problems with Vista Home.

Maybe you are looking for

  • I cannot start the "SQL Server Reporting Services (SCE)" service

    Attempts to run any of the Windows Computer Reports fail with an error: Date: 10/29/2008 10:19:30 AM Application: System Center Essentials Application Version: 6.0.1251.0 Severity: Error Message: Cannot initialize report. Microsoft.Reporting.WinForms

  • HT4718 My copy of Lion is damaged and can't be used for reinstallation, what can i do?

    when I launch Lion Recovery and try to reinstall the OS, there is a message that says that my copy of lion is damaged and can't be used for reinstallation. what can I do?

  • Invoice

    Dear All, When I want to add AP Credit memo, the error message appears : "payment amount is greater than invoice amount", what could be the caused of the error message ? The invoice is closed and I want to create AP CM to the closed invoice by duplic

  • Print symbol '*' only on blank pages.

    Oracle have seeded vat Report which print symbol '*' at the end of the report i.e after printing Detail and summary. Now user need summary should be printed on Next page(This is achivable). and symbol '*' should be printed on blank pages after Detail

  • MacBook Pro doesn't start up to Apple Diagnostic

    I have the issue that after an Adobe Flash update the Facetime/iSight camera is no longer recognized by the system. System profiler claims that there is no camery installed. the day before I had a nice Facetime call. See Here: Adobe Flash update kill