SOLARIS X86 TO SOLARIS SPARC MIGRATION

hi
i have a maxdb database production in Solaris 2200 x86 server , but i need move that database into Solaris 5120 sparc server.
how can i do that migration, because the recovery backup don't work from x86 to sparc server

is the option transport tables of database studio and this option is functionally for data transport from x86  to sparc plataform in two way ¿?
Hmm... why don't you just test it out?
Loadercli in general uses a dataformat that is platform-independent.
Know what?
Read the documentation MaxDB documentation - Loader and try out the transport with a little test table.
There's even a Loader-Tutorial available...
It's much easier than making up all kinds of questions of what might possibly work or not.
regards,
Lars

Similar Messages

  • Migration from Solaris Sparc server to Solaris  x86

    Hi ,
    I would like to know.
    Migration from SAP ECC6 , Oracle , Solaris Sparc to Ecc6, Oracle, Solaris x86 , Is this consider Heterogeneous or Homogeneous system copy?
    Thanks.
    Best Regards,
    ck chai

    Solaris on SPARC is a BIgEndian platform, Solaris on X86 is LittleEndian - so it's heterogeneous --> you need to use R3load to performa a migration - and you need to have a certified migration consultant on-site to do that migration (http://service.sap.com/osdbmigration --> FAQ).
    Markus

  • Bundle Patch1 is now available for Solaris (SPARC), Solaris (x86-64), AIX

    [OTN |http://www.oracle.com/technetwork/oem/enterprise-manager/downloads/index.html?origref=http://www.oracle.com/technetwork/oem/grid-control/index.html] Hi All,
    EM Binaries updated with bundle patch1 are now available on OTN
    OMS and Management Agents for platform ::: Solaris (SPARC), Solaris (x86-64), and IBM AIX (64-bit)
    Management Agents for platform::: HP-UX, or HP-UX Itanium
    The BP1 workbook is updated with various use-cases specific to these platform. We strongly recommend you to follow the instruction from the workbook to apply BP1 patches. If you have any doubts feel free to drop me an email.
    http://docs.oracle.com/cd/E24628_01/doc.121/e35229/toc.htm
    Regards
    Akanksha

    Oracle Instant Client was a "feature" introduced with Oracle 10g. There is no 9i version.
    Code that links with Oracle 9i libraries should be able to be linked with Instant Client 10gR2.
    The resulting application will be able to connect to databases from Oracle 8.1 onwards.

  • Installing oracle 10.2.0.2 x86 on solaris sparc 64bit

    hi,
    Can i install oracle 10.2.0.2 x86 on solaris sparc 64 bit server.
    Regards,
    Veeresh S

    Can i install oracle 10.2.0.2 x86 on solaris sparc 64 bit server.No as x86 and SPARC are different architectures.

  • Re:  migrate our ERP database from Solaris Sparc 64 to Linux x86_

    hi ,
    We want to migrate our ERP database from Solaris Sparc 64 to Linux x86_64 .
    Please suggest some docs .
    Regards.

    I assume you are on R12 since you want to migrate the application tier node to Linux 64-bit (which is certified for the application tier node on R12 but not 11i), so please refer to the docs in this thread -- Re: Has anyone migrate/upgrade from R12.0.6 on Solaris to R12.1.3 on Linux?
    Thanks,
    Hussein

  • Latest (November) EIS-Patching ISO for Solaris SPARC & X86 systems download.

    Hi All,
    I hope someone can assist as this has given me a headache for the last few days.
    I require the latest (November) EIS-Patching ISO for Solaris SPARC & X86 systems.
    I require the ISO and not just the Patch set.
    Please advise.
    Kind regards,
    Paul

    The current ISO (october) is available at the usual place : EIS for Partner
    And for information, the next planned EIS will be available very soon but not this month.

  • OracleAS R2 - Cluster Mixed Solaris SPARC/x86?

    Is a mixed Solaris SPARC/x86 active-active cluster environment supported for OracleAS R2? What I mean by this is, can I put together a supported environment where an Identity Management node (node 1) is running as SPARC, and a second Identity Management node (node 2) is running Solaris x86?
    Both OS's would be as identically configured as possible (both OS version & patch levels).
    Cheers, Brad

    Metalink note 429995.1
    Says
    Goal
    Is it supported to install Application Server Oracle Homes on different operating systems or different versions of the same operating system?
    Example 1: AS Infrastructure is installed on a Solaris 8 server and a Business Intelligence and Forms Middle Tier is installed on a Solaris 10 server.
    Example 2: AS Infrastructure is installed on a Red Hat linux server and Business Intelligence and Forms Middle Tiers are installed on Windows 2003 servers.
    Solution
    It is completely supported to install each Application Server oracle home onto a different operating system or onto different versions of the same operating system.
    Both of the above example scenarios are supported.
    The only restriction is that members of a Middle-tier DCM-Managed OracleAS Cluster must be on the same operating system 'flavour'. As per the High Availability Guide:
    All Oracle Application Server instances that are to be members of a DCM-Managed OracleAS Cluster must be installed on the same flavour operating system. For example, different variants of UNIX are clusterable together, but they are not clusterable with Windows systems.
    Greetings

  • W2100z Supplemental 2.5 XpReburn produces non-bootable ISO in Solaris Sparc

    Just posting in case helps someone else...
    The XpReburn script from the W2100z Supplemental 2.5 CD is commented as being able to run on Solaris Sparc:
    # This script was developed on Solaris X86. It will run on Solaris Sparc
    # and Red Hat Enterprise Linux 3. It is not guaranteed to work unmodified  
    # accross all versions of Linux. This script is experimental. Some end user
    # MODIFICations may be necessary for it to run on other linux distributions 
    # and system configurations.Running XpReburn under Solaris Sparc 10 produced an .ISO image apparently without error, but the resulting image would not boot.
    Found the cause of the non-bootable image was the following section of XpReburn. It was using dd and od to extract 16-bit LBA values. On Solaris Sparc it ended up reading little-endian values as big-endian, hence extracting the boot loader from the wrong part of the XP CD. To get it to work under Solaris Sparc added conv=swab twice as shown below:
    # Read the boot loader from the CD into the image directory as a file. This process takes
    # several steps because the boot record has to be consulted to locate the RBA (the
    # starting LBA of the boot catalog). The boot record always resides at LBA 17
    ${ECHO} "Reading WinXP Boot Loader from CD..."
    ${ECHO} "  Looking up boot catalog lba from boot record..."
    ${DD} if=$CD_DEVICE bs=2048 count=1 skip=17 | ${DD} bs=71 skip=1 count=1 | ${DD} conv=swab bs=4 count=1 of=$SCRIPTDIR/foo
    BOOTCATLBA=`od -d $SCRIPTDIR/foo | ${AWK} '{print $2}'`
    ${ECHO} "  Boot Catalog is at LBA $BOOTCATLBA, looking up boot image LBA..."
    ${DD} if=$CD_DEVICE bs=2048 count=1 skip=$BOOTCATLBA | ${DD} bs=40 skip=1 count=1 | ${DD} conv=swab bs=4 count=1 of=$SCRIPTDIR/foo
    BOOTIMGLBA=`od -d $SCRIPTDIR/foo | ${AWK} '{print $2}'`
    ${ECHO} "  Reading Boot Image from LBA $BOOTIMGLBA..."
    ${DD} if=$CD_DEVICE bs=2048 count=1 skip=$BOOTIMGLBA | ${DD} bs=2048 count=1 of=$IMAGEDIR/$BOOTIMAGE
    ${RM} -f $SCRIPTDIR/fooWith the above mod, XpReburn generated an image which booted the XP Pro installer and allowed XP to be installed.

    MAAL wrote:
    have thought about submitting this hint/article to the BigAdmin community ?
    http://www.sun.com/bigadmin/common/submittals.html
    Michael,
    Reading the submission guidelines it appears BigAdmin is for you own work:
    By submitting content to the BigAdmin portal, you are attesting that your submission is your own non-confidential property and does not infringe the intellectual property rights of any party.
    Whereas my "hint" above is really a bug report / enhancement request for a Sun supplied script.
    I only have a basic support plan so don't think I can raise a bug report.
    Also:
    1) The modification listed was a quick hack to get the script to work under Sparc Solaris, but which would have caused the script to generate a non-bootable ISO if run under X86 Solaris.
    2) If you run the script on a ZFS filesystem you get an error that the filesystem isn't local - the script should be updated to consider a ZFS filesystem as local.
    3) If the script is run on a Solaris system with two optical drives, the script fails with an error because fails to correctly read the volume name of the XP CD. Can't remember the details, but just hacked the script to work.
    So, so for now will just leave the "hint" in this thread.

  • Orion download Solaris/SPARC

    Just downloaded Orion Users Guide from
    http://www.oracle.com/technology/software/tech/orion/index.html
    The Users Guide (on page 2) states that the Orion software is available for Linux/x86, Solaris/SPARC and Windows/x86.
    However only the following software files are listed on the download page:
         orion_linux_em64t.gz (767,380 bytes)
         orion10.2_linux.gz (630,354 bytes)
         orion10.2_windows.msi (7,865,856 bytes)
    Please include a link to the Solaris/SPARC version, if it exists !
    -- Peter

    You can find the Sparc downloads on the site. The problem is actually getting it to run. I've been trying to run it for some time and it keeps giving me the following error:
    Parse error: View help screen using orion -help
    although I'm 100% sure that the parameters are right. trussing shows that Orion relies on a lot more than the documentation says. I'm currently downloading Instant Client to try to satisfy the requirements (this wasn't mentioned anywhere by the way). http://www.oracle.com/technology/software/tech/oci/instantclient/htdocs/sol64soft.html
    For example, some libraries such as libociei.so, libclntsh.so.10.1 and libociicus.so to name a few.

  • Solaris/Sparc vs. Tru64/Alpha

    Hi,
    I posted this a week ago, but now that the newsgroup server has been
    moved I no longer see the thread (in other words, sorry if this is a
    duplicate)
    Does anyone have any comments on running WLS, WLCS on Solaris/Sparc vs.
    Tru64/Alpha? I particularly interested in performance and platform
    support.
    Thanks,
    Ian R. Brandt
    Software Engineer
    Genomics Collaborative, Inc.
    99 Erie Street
    Cambridge, MA 02139
    (617)661-2400 Ext.2244
    (617)661-8899 FAX
    [email protected]

    Then you start getting to the high end gear with
    features like hot swap components. Redundant power
    supply. Splitting boxes into redundant hardware
    domains etc. These features are insanely expensive in
    the sparc world, but pretty much don't exist in the
    x86 world...Why such features don't exist is x86 world?
    There are a lot of servers based on x86 (Compaq/HP ProLiant, HP Netserver, IBM NETFINITY atd etc.), they have redundant power supplys, hot plug/swap hard drives and other redundant hardware.
    I worked few years with Compaq/HP ProLiant servers, they are entry level in pricing, but giving a nice performance and redundancy. Actually, in 3 years of my work, they never failed, exepting hard drives failure and hot swapping them to new ones without work interruption.
    x86 based servers can be even up to 8 CPU's and more.
    Still largest servers are based and will be based on RISC architecture.

  • Acrobat 9.1 for Solaris Sparc

    Hi,
    Have to start with, thanks for the 9.1 on Solaris x86 port, much needed since we where using version 4 which started to become old...
    But, we are still very much on Solaris Sparc, when is 9.1 planned to be be released since I would like to have the same version on both platforms.
    once again, thanks for 9.1
    Michael

    Hello Michael/Karl,
    In 9.1, there is no SPARC release, only x86.
    The latest SPARC compatible Adobe Reader version is 8.l.4
    We will keep you posted if any more developments arise.
    You may also visit our blog site (http://blogs.adobe.com/acroread/) to read about latest announcements/sneak-peaks etc.
    Thanks
    Atanu Dhar
    adharATadobeDOTcom

  • EM12c: Oracle Solaris Sparc Agent unabailable

    Hi everyone!
    I have this problem. I deployed EM12C on a server (Solaris x86) and I managed to deploy the agent donwloading it with EM12c into a Solaris Sparc.
    I was able to view metrics and manage the databases on Solaris Sparc server.
    Our client refused to use the Solaris x86, and now we have installed EM12C over a Windows Server. We want to reach the old Solaris Sparc Agent but we are unabailable. I have network connectivity from the W2k to the Sparc and I reach the port. The agent is started but I cant discover it again.
    $ emctl status agent
    Oracle Enterprise Manager 12c Cloud Control 12.1.0.1.0
    Copyright (c) 1996, 2012 Oracle Corporation.  All rights reserved.
    Agent Version     : 12.1.0.1.0
    OMS Version       : (unknown)
    Protocol Version  : 12.1.0.1.0
    Agent Home        : /oracle/agent12c/agent_inst
    Agent Binaries    : /oracle/agent12c/core/12.1.0.1.0
    Agent Process ID  : 21824
    Parent Process ID : 21600
    Agent URL         : https://10.4.24.12:3872/emd/main/
    Repository URL    : https://server:4899/empbs/upload
    Started at        : 2012-10-31 17:15:07
    Started by user   : oracle
    Last Reload       : (none)
    Last successful upload                       : (none)
    Last attempted upload                        : (none)
    Total Megabytes of XML files uploaded so far : 0
    Number of XML files pending upload           : 4,901
    Size of XML files pending upload(MB)         : 2.35
    Available disk space on upload filesystem    : 91.61%
    Collection Status                            : [DISK_FULL]
    Last attempted heartbeat to OMS              : 2012-11-02 09:13:23
    Last successful heartbeat to OMS             : (none)
    Agent is Running and ReadyEM12c Server hasn't got internet so I cant download the agent again an rediscover it. I've tried to download the Sparc agent and upload it into EM12c but when all of them I always get that the software is too big. And I always see the Agent Software as "Oracle Solaris Sparc Agent unabailable"!
    Any idea?
    Thanks

    I got this message, the agent was stopped
    /oracle/agent12c/core/12.1.0.1.0/sysman/install/agentDeploy.sh AGENT_BASE_DIR=/oracle/agent12c OMS_HOST=OMSserver EM_UPLOAD_PORT=4890 AGENT_INSTANCE_HOME=/oracle/agent12c/agent_inst -configOnly
    ERROR: The instance directory /oracle/agent12c/agent_inst is not empty. If you want to configure the Management Agent in the same instance home, then stop the existing agent, manually delete the targets monitored by this management agent from the Cloud Control console, and then manually delete the agent instance home associated with this Management Agent. If you want to configure the agent in a different instance home, then enter a new instance home location by passing AGENT_INSTANCE_HOME argument.
    $
    $ pwd
    Do I delete sysman?
    /oracle/agent12c/agent_inst
    $ ls
    bin diag install sysman
    Those are my port list in this range:
    TCP 0.0.0.0:3389 OMSserver : 0 LISTENING
    TCP 0.0.0.0:3872 OMSserver : 0 LISTENING
    TCP 0.0.0.0:4889 OMSserver : 0 LISTENING
    TCP 0.0.0.0:6701 OMSserver : 0 LISTENING
    OMS details:
    C:\oracle\agent\core\12.1.0.2.0>emctl status oms -details
    Oracle Enterprise Manager Cloud Control 12c Release 2
    Copyright (c) 1996, 2012 Oracle Corporation. All rights reserved.
    Enter Enterprise Manager Root (SYSMAN) Password :
    Console Server Host : OMSserver
    HTTP Console Port : 7788
    HTTPS Console Port : 7799
    HTTP Upload Port : 4889
    HTTPS Upload Port : 1159
    EM Instance Home : C:\oracle\middleware\gc_inst\em\EMGC_OMS1
    OMS Log Directory Location : C:\oracle\middleware\gc_inst\em\EMGC_OMS1/sysman
    g
    OMS is not configured with SLB or virtual hostname
    Agent Upload is locked.
    OMS Console is locked.
    Active CA ID: 1
    Console URL: https://OMSservername :7799/em
    Upload URL: https://OMSservername :1159/empbs/upload
    WLS Domain Information
    Domain Name : GCDomain
    Admin Server Host: OMSserver
    Managed Server Information
    Managed Server Instance Name: EMGC_OMS1
    Managed Server Instance Host: OMSserver
    WebTier is Up
    Oracle Management Server is Down
    I think I'm unable to reach OMS port from the agent machine:
    $ telnet OMSserver 4890
    Trying OMSserver ...
    telnet: Unable to connect to remote host: Connection refused
    $ telnet OMSserver 4889
    Trying OMSserver ...
    Connected to OMSserver .
    Escape character is '^]'.
    C:\Users\Oracle>telnet agentserver 3872
    Connecting To agentserver ...Could not open connection to the host, on port 3872: C
    onnect failed
    Thanks
    Edited by: 957237 on Nov 7, 2012 3:46 AM

  • ODSM installation failing on Solaris Sparc

    Hi Guys,
    we are trying to install ODSM on a Solaris server (Solaris Sparc 11). However the installer is throwing the following error while creating domain -
    [2013-01-10T15:50:52.888-06:00] [as] [TRACE] [] [oracle.as.provisioning] [tid: 12] [ecid: 0000JkaSLdW7a695Nf4Eye1GvnD8000003,0] [SRC_CLASS: oracle.as.idm.install.config.event.IdMProvisionEventListener] [SRC_METHOD: onConfigurationStatus] onConfigurationStatus: 92185386-b8be-44a0-9a5f-0d0bc9657eb4
    [2013-01-10T15:50:52.888-06:00] [as] [TRACE] [] [oracle.as.provisioning] [tid: 12] [ecid: 0000JkaSLdW7a695Nf4Eye1GvnD8000003,0] [SRC_CLASS: oracle.as.idm.install.config.event.IdMProvisionEventListener] [SRC_METHOD: onConfigurationStatus] [OOB IDM CONFIG EVENT] onConfigurationStatus -> Description: Starting Domain.
    [2013-01-10T15:50:52.888-06:00] [as] [TRACE] [] [oracle.as.provisioning] [tid: 12] [ecid: 0000JkaSLdW7a695Nf4Eye1GvnD8000003,0] [SRC_CLASS: oracle.as.idm.install.config.event.IdMProvisionEventListener] [SRC_METHOD: onConfigurationStatus] [OOB IDM CONFIG EVENT] onConfigurationStatus -> State: START
    [2013-01-10T15:50:52.889-06:00] [as] [TRACE] [] [oracle.as.provisioning] [tid: 12] [ecid: 0000JkaSLdW7a695Nf4Eye1GvnD8000003,0] [SRC_CLASS: oracle.as.idm.install.config.event.IdMProvisionEventListener] [SRC_METHOD: onConfigurationStatus] [OOB IDM CONFIG EVENT] onConfigurationStatus -> Component Name : StartDomain
    [2013-01-10T15:50:52.889-06:00] [as] [TRACE] [] [oracle.as.provisioning] [tid: 12] [ecid: 0000JkaSLdW7a695Nf4Eye1GvnD8000003,0] [SRC_CLASS: oracle.as.idm.install.config.event.IdMProvisionEventListener] [SRC_METHOD: onConfigurationStatus] [OOB IDM CONFIG EVENT] onConfigurationStatus -> Component Type : WLSDomain
    [2013-01-10T15:50:52.889-06:00] [as] [TRACE] [] [oracle.as.provisioning] [tid: 12] [ecid: 0000JkaSLdW7a695Nf4Eye1GvnD8000003,0] [SRC_CLASS: oracle.as.idm.install.config.event.IdMProvisionEventListener] [SRC_METHOD: onConfigurationStatus] ________________________________________________________________________________
    [2013-01-10T15:50:52.889-06:00] [as] [TRACE] [] [oracle.as.provisioning] [tid: 12] [ecid: 0000JkaSLdW7a695Nf4Eye1GvnD8000003,0] [SRC_CLASS: oracle.as.idm.install.config.event.IdMProvisionEventListener] [SRC_METHOD: onConfigurationStatus] [OOB IDM CONFIG EVENT] onConfigurationStatus ->92185386-b8be-44a0-9a5f-0d0bc9657eb4 StatusMsg:Starting Domain.
    [2013-01-10T15:50:52.890-06:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 12] [ecid: 0000JkaSLdW7a695Nf4Eye1GvnD8000003,0] reportStartConfigAction: EXIT........
    [2013-01-10T17:04:38.884-06:00] [as] [ERROR] [] [oracle.as.provisioning] [tid: 12] [ecid: 0000JkaSLdW7a695Nf4Eye1GvnD8000003,0]
    [2013-01-10T17:04:38.886-06:00] [as] [ERROR] [] [oracle.as.provisioning] [tid: 12] [ecid: 0000JkaSLdW7a695Nf4Eye1GvnD8000003,0] [[
    oracle.as.provisioning.util.ConfigException:
    Error while starting the domain.
    Cause:
    Starting the Admin_Server timed out.
    Action:
    See logs for more details.
    at oracle.as.provisioning.util.ConfigException.createConfigException(ConfigException.java:123)
    at oracle.as.provisioning.weblogic.ASDomain.startDomain(ASDomain.java:3150)
    at oracle.as.provisioning.weblogic.ASDomain.startDomain(ASDomain.java:3040)
    at oracle.as.provisioning.engine.WorkFlowExecutor._startAdminServer(WorkFlowExecutor.java:1645)
    at oracle.as.provisioning.engine.WorkFlowExecutor._createDomain(WorkFlowExecutor.java:635)
    at oracle.as.provisioning.engine.WorkFlowExecutor.executeWLSWorkFlow(WorkFlowExecutor.java:391)
    at oracle.as.provisioning.engine.Config.executeConfigWorkflow_WLS(Config.java:866)
    at oracle.as.idm.install.config.BootstrapConfigManager.doExecute(BootstrapConfigManager.java:690)
    at oracle.as.install.engine.modules.configuration.client.ConfigAction.execute(ConfigAction.java:371)
    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:64)
    at oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager.start(StandardConfigActionManager.java:160)
    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)
    [2013-01-10T17:04:38.888-06:00] [as] [TRACE] [] [oracle.as.provisioning] [tid: 12] [ecid: 0000JkaSLdW7a695Nf4Eye1GvnD8000003,0] [SRC_CLASS: oracle.as.idm.install.config.event.IdMProvisionEventListener] [SRC_METHOD: onConfigurationError] [OOB IDM CONFIG EVENT] onConfigurationError -> configGUID 92185386-b8be-44a0-9a5f-0d0bc9657eb4
    [2013-01-10T17:04:38.889-06:00] [as] [TRACE] [] [oracle.as.provisioning] [tid: 12] [ecid: 0000JkaSLdW7a695Nf4Eye1GvnD8000003,0] [SRC_CLASS: oracle.as.idm.install.config.event.IdMProvisionEventListener] [SRC_METHOD: onConfigurationError] [OOB IDM CONFIG EVENT] ErrorID: 35091
    [2013-01-10T17:04:38.889-06:00] [as] [TRACE] [] [oracle.as.provisioning] [tid: 12] [ecid: 0000JkaSLdW7a695Nf4Eye1GvnD8000003,0] [SRC_CLASS: oracle.as.idm.install.config.event.IdMProvisionEventListener] [SRC_METHOD: onConfigurationError] [OOB IDM CONFIG EVENT] Description: [[
    Error while starting the domain.
    Cause:
    An error occurred while starting the domain.
    Action:
    See logs for more details.
    [2013-01-10T17:04:38.891-06:00] [as] [TRACE] [] [oracle.as.provisioning] [tid: 12] [ecid: 0000JkaSLdW7a695Nf4Eye1GvnD8000003,0] [SRC_CLASS: oracle.as.idm.install.config.event.IdMProvisionEventListener] [SRC_METHOD: onConfigurationError] ________________________________________________________________________________
    [2013-01-10T17:04:38.892-06:00] [as] [TRACE] [] [oracle.as.provisioning] [tid: 12] [ecid: 0000JkaSLdW7a695Nf4Eye1GvnD8000003,0] [SRC_CLASS: oracle.as.idm.install.config.event.IdMProvisionEventListener] [SRC_METHOD: onConfigurationError] [OOB IDM CONFIG EVENT] onConfigurationError -> eventResponse ==oracle.as.provisioning.engine.ConfigEventResponse@50cb14aa
    [2013-01-10T17:04:38.892-06:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 12] [ecid: 0000JkaSLdW7a695Nf4Eye1GvnD8000003,0] [OOB IDM CONFIG EVENT] onConfigurationError -> Configuration Status: -1
    [2013-01-10T17:04:38.892-06:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 12] [ecid: 0000JkaSLdW7a695Nf4Eye1GvnD8000003,0] [OOB IDM CONFIG EVENT] onConfigurationError -> Asking User for RETRY or ABORT
    [2013-01-10T17:04:38.893-06:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 12] [ecid: 0000JkaSLdW7a695Nf4Eye1GvnD8000003,0] [OOB IDM CONFIG EVENT] onConfigurationError -> ActionStep:Create_Domain
    [2013-01-10T17:04:38.895-06:00] [as] [TRACE] [] [oracle.as.provisioning] [tid: 12] [ecid: 0000JkaSLdW7a695Nf4Eye1GvnD8000003,0] [SRC_CLASS: oracle.as.idm.install.config.event.IdMProvisionEventListener] [SRC_METHOD: onConfigurationError] [OOB IDM CONFIG EVENT] onConfigurationError -> wait for User Input ....
    [2013-01-10T17:21:34.980-06:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.statistics] [tid: 11] [ecid: 0000JkaOCte7a695Nf4Eye1GvnD8000002,0] Writing profile to file:/u01/app/oraInventory/logs/installProfile2013-01-10_03-31-48PM.log
    [2013-01-10T17:21:34.981-06:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.statistics] [tid: 11] [ecid: 0000JkaOCte7a695Nf4Eye1GvnD8000002,0] outputFile:/u01/app/oraInventory/logs/installProfile2013-01-10_03-31-48PM.log
    [2013-01-10T17:21:34.981-06:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.statistics] [tid: 11] [ecid: 0000JkaOCte7a695Nf4Eye1GvnD8000002,0] in writeProfile method..
    [2013-01-10T17:21:34.982-06:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.statistics] [tid: 11] [ecid: 0000JkaOCte7a695Nf4Eye1GvnD8000002,0] Adding Element:INTERVIEW_TIME_ID for writing.
    [2013-01-10T17:21:34.983-06:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.statistics] [tid: 11] [ecid: 0000JkaOCte7a695Nf4Eye1GvnD8000002,0] Adding Element:COPY_TIME_ID for writing.
    [2013-01-10T17:21:34.983-06:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.statistics] [tid: 11] [ecid: 0000JkaOCte7a695Nf4Eye1GvnD8000002,0] Adding Element:LINK_TIME_ID for writing.
    [2013-01-10T17:21:34.983-06:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.statistics] [tid: 11] [ecid: 0000JkaOCte7a695Nf4Eye1GvnD8000002,0] Adding Element:CONFIGURATION_TIME_ID for writing.
    We couldn't find any way forward for this error Can anyone please advise if they have seen this error in their environment and what is the way forward? Thanks

    khaleel2 wrote:
    Hi Gurus,
    Too frequent INS-32025 errors. Tried everything possible, finally found in oraInstall2012-05-06_07-50-25PM.err file......
    ---# Begin Stacktrace #---------------------------
    ID: oracle.install.driver.oui.OUISetupDriver:13
    oracle.cluster.verification.VerificationException: An internal error occurred within cluster verification framework
    <Line 206, Column 12>: XML-20211: (Fatal Error) '--' is not allowed in comments.
    <Line 206, Column 12>: XML-20211: (Fatal Error) '--' is not allowed in comments.
    at oracle.ops.verification.framework.util.VerificationUtil.isPreReqSupported(VerificationUtil.java:4505)
    at oracle.ops.verification.framework.util.VerificationUtil.isPreReqSupported(VerificationUtil.java:4443)
    at oracle.cluster.verification.ClusterVerification.isPreReqSupported(ClusterVerification.java:6382)
    at oracle.install.driver.oui.OUISetupDriver.verifyEnvironment(OUISetupDriver.java:299)
    at oracle.install.driver.oui.OUISetupDriver.load(OUISetupDriver.java:422)
    Please help soon. Appreciated if you give main points instead of providing document links.errors indicate that cluster (RAC) is involved.
    At which step in cluster configuration, does this failure occur?

  • Oracle 8.1.6 on Solaris (SPARC) & EJB's

    Hi all,
    I would like to know if anybody is successfully using Oracle 8.1.6 on Solaris (SPARC) and EJB's or any other JServer Technology? If you have any advice for implementing JServer technologies on Solaris, please feel free to elaborate.
    Thanks in advance,
    Rob
    null

    Could you tell us how to do that????
    We all met the ORA-01034 problem!
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Wile E. Coyote:
    Yes, that's no problem
    I've installed 8.1.6 on several machines running Solaris 8 without any problem<HR></BLOCKQUOTE>
    null

  • Patch number for Oracle 8.1.7.4 on Solaries SPARC 64bit

    Guys,
    Oracle Version: 8.1.6.0
    OS: Solaris SPARC 64-bit
    I would like to patch to 8.1.7.4. I need a patch number for this, I find it very difficult to search for the patch on Metalink. Would you please suggest the patch number and maybe also suggest the easier way to search for patches on Metalink.
    Thanks in advance
    Durbanite

    Go to Metalink
    Click on "Patches & Updates" tab
    Click on "Simple Search"
    Search by "Product and Family" and enter RDBMS Server
    Choose the target release you are looking for (8.1.7.4)
    Patch type => "Patchset/Minipack"
    Classification => "Any"
    Choose the "Platform or Language" your plateform (Sun Solaris SPARC 64bits)
    And finally click on Go button.
    You'll get only one row as result, the patchset you are looking for actually.
    Nicolas.

Maybe you are looking for

  • "Permissions differ on usr/share/derby"

    Hi, After some strange behavior on my MacPro I verified disk permissions and got: Permissions differ on "usr/share/derby" should be drwxr-xr-x, they are lrwxr-xr-x and Warning: SUID file "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Cont

  • Error creating business service with EJB transport on Unix

    I have ALSB 3.0 installed on a Unix system and I am unable to create a business service based on the EJB transport. After I associate the client jar to the business service, ALSB recognizes the home and remote interfaces in the jar file but as soon a

  • Backup to USB disk on AirPort Extreme fails

    I have been using Backup to save files from my MacBooc to a USB Disk connected to my AirPort Extreme. Since I've installed Snow Leopard this doesn't work any longer. Backup keeps saying that it is 'Waiting for volume AirPortDisk', although the reques

  • PS Elements 11 - external storage

    I have just switched to a mac air with limited space and i want to use an external hard drive to manage and store all the photos and have minimum effect on the onboard disc space......i have about 20Gb of photos on the external drive already organise

  • 2008 macbook pro spinning ball and now won't completely start up.

    i woke my computer up this morning and it wouldn't respond. it started with the spinning rainbow pinwheel, but now it won't log in. the farthest it's gotten is the desktop but it's blank - no icons, dock, or top bar. is there a way to troubleshoot th