MDM 5.5 SP05 - Failure to unarchive standard Repositories

Hi,
We have recently upgraded to 5.5 SP05, I now experience failures when trying to unarchive any of the 55510_ or 55520_ Repositories, although with the 55410_, 55420_ and 55430_ Repositories there are no problems.
These are the last few lines of one error log:
<Trace ts="2007/09/07 09:01:27.145 GMT" tid="3085" entry-no="13128"><LF/>  Table 210 MaterialsV51_m000-A2i_Data_87:</Trace>
          <Trace ts="2007/09/07 09:01:27.165 GMT" tid="3085" entry-no="13131">    creation failed (probably exists)</Trace>
          <Trace ts="2007/09/07 09:01:27.183 GMT" tid="3085" entry-no="13132">    Processing A2i_Data_87 - </Trace>
          <Trace ts="2007/09/07 09:01:27.184 GMT" tid="3085" entry-no="13133">saving 1 row of 1 in source</Trace>
          <Trace ts="2007/09/07 09:01:27.205 GMT" tid="3085" entry-no="13135">Error inserting into  A2i_Data_87 table</Trace>
          <Trace ts="2007/09/07 09:01:27.215 GMT" tid="3085" entry-no="13136">$$$ Operation ended in ERROR : 84020000H : General error, contact customer support</Trace>
          <Trace ts="2007/09/07 09:01:27.218 GMT" tid="3085" entry-no="13137">Dropping failed target Repository [07/09/07 09:01:27]</Trace>
Any help much appreciated.
Kind regards
Kevan

Hi Kevan,
This behavior occurs when Unarchiving to Oracle or DB2.  The standard repository
was created on SQL Server and uses some very long Japanese and Korean strings.
These character sets expand greatly in Oracle and DB2 and exceed the storage
allotted.  A work-around for this problem is available in 5.5 SP05 Patch02.
Please read the release notes for placing
     Increase TextStart Storage=true
into the mds.ini file.
I think this will fix the problem, however, you may have found a new bug.
Hope this helps.
D Poy.

Similar Messages

  • Problems with MDM 5.5 SP05 Portal Content - ResultSet iView

    Hello Experts,
         We are having problems with standard iViews from MDM 5.5, more specific with ResultSet iView. We created an iView using English as default browser’s language but our client wanted it in Portuguese, so in the MDM Repository both languages were defined and used in MDM Data Manager, when passed to the Portal iView an error occur, but only in a ResultSet iView from the MDM Portal Content, the others iViews (itemDetails, PicklistSearch, etc...) are shown in Portuguese, and we cannot figure out why it works fine in English and not in Portuguese. We left the default language defined by client’s browser. Below I’m sending the LOG, which by the way, doesn't help much, but I put it also here. Any ideas of what should I do ?
    LOG ERROR:
    java.lang.IllegalArgumentException: unknown format type at
    We are using Portal 7.0 SPS11 and MDM 5.5 SP05 - Portal Content in a Win2003/Oracle server each.

    Alex,
    sorry to disturb you with this issue, can you explain me basic steps in order to setup standard MDM iviews from the portal?
    I mean, I have already installed all standard mdm business content, and also have configured system and aliases in the portal to connect to my mdm repositories. Those system/aliases are working propperly.
    But, when I try to preview standard MDM iviews/pages I got several JAVA errors in trace logs.
    Specific iviews are: Item Details, Show products, etc..any iview execution fails.
    So, am I missing something?, do i have to create a specific user in portal?, assign specifi roles or groups???.
    Platform is: nw2004s SR2, SP11, MDM content 5.5
    Thank you in advance.

  • How to create a taxonomy using MDM 5.5 SP05 JAVA API?

    Hi ALL,
    I have a requirement in which i have to create a taxonomy using MDM 5.5 SP05 JAVA API.
    Can anyone tell me how that functionality can be achieved?
    Thanks in Advance.
    Rajat.

    HI, Rajat.
    For exposing hierarchy in WD view you need to use node with recursive children in the context and Tree/TreeNodeType UI elements in view layout.
    For load hierarchy records you have to use RetrieveLimitedHierTreeCommand. You can load whole hierarchy (as I know, SP05 API have a bug - only first 1000 record can be loaded) or load hierarchy nodes on demand (using OnLoadChildren action of TreeNodeType element).
    Refer to this example of loading child records:
    // Context structure:
    // Tree (model node, model class built from com.sap.mdm.data.Record interface)
    //  |-- Children (recursive child node repeating Tree node)
    //  |-- DisplayValue (string value attribute, TreeNodeType's text property bound here)
    //  |-- HasChildren (boolean value attribute, TreeNodeType's hasChildren property bound here)
    // parentElem is element of node Tree or Children for which we must load child records, null for first level of hierarchy
    private void fillNodeWithChildren(IPrivateHierarchySelectView.ITreeElement parentElem) {
         // Determining RecordId of parent record and context node to which child records belong
         RecordId parentRecordId = null;
         if (parentElem != null) parentRecordId = parentElem.modelObject().getId();
         IPrivateHierarchySelectView.ITreeNode parentNode =
              parentElem == null
                   ? wdContext.nodeTree()
                   : parentElem.nodeChildren();
         // Loading children with RetrieveLimitedHierTreeCommand
         try {
              RetrieveLimitedHierTreeCommand retTreeCmd = new RetrieveLimitedHierTreeCommand(...); // use suitable constructor
              if (parentRecordId != null) retTreeCmd.setRootNode(parentRecordId);
              retTreeCmd.setResultDefinition(...); // don't forget set ResultDefinition
              retTreeCmd.execute();
              HierNode subRoot = retTreeCmd.getTree()
              parentNode.invalidate();
              // Processing loaded child records - add elements into parentNode
              if (subRoot == null) return;
              IPrivateHierarchySelectView.ITreeElement childElem;
              HierNode childRecord;
              HierNode[] children = subRoot.getChildren();
              int count = children == null ? 0 : children.length;
              for (int i = 0; i < count; i++) {
                   childRecord = children<i>;
                   childElem = parentNode.createTreeElement(childRecord);
                   childElem.setDisplayValue(childRecord.getDisplayValue());
                   childElem.setHasChildren(!childRecord.isLeaf());
                   parentNode.addElement(childElem);
              if (parentElem != null) parentElem.setHasChildren(count > 0);
         } catch (/* Some MDM Exceptions */) {}
    Don't forget call fillNodeWithChildren(null) in wdDoInit for load first level of hierarchy.

  • MDM 7.1 SP05 server is going down all of a sudden : Any Inputs?

    Hi All,
    I am working on SAP MDM 7.1 SP05 and my repository is going down all of a sudden and when I get in to Log I see the following message :
    The specified value for the Server Listening Port (0) is outside the range of available listening ports for system use. Please use only values between 49152 and 65535.
    I went through the SAP Note and we upgraded all the components as per the guidlines... Does any one been through this issue, please share how to get rid of it.
    Thanks
    Rajeev.

    HI,
    we have MDM server port, MDS Port, MDSS Port, MDIS port..
    all these ports are differnet... as we are integrated with other applicaitons.. other applicaitons are accessing MDM using MDM server port....
    Apart from this wondering need to dig down .... we are not sure where the issue is... why MDM server getting restarted...
    Your inputs are appreciated.
    Regards,
    Rajeev.

  • Which Oracle version required for MDM 5.5 SP05

    Hi guys,
         I do have MDM 5.5 SP05 but which Oracle version is required or which is strongly recommended by SAP.
    I am having Oracle 10g will that work efficently or let me know if any other version is needed or any other patch is needed with this version.
    Please do suggest...............

    hi Tejas,
    have a look at "oracle DBMS" section
    of this doc:
    https://websmp209.sap-ag.de/~sapidb/011000358700000271882007E
    it mentiones that there are some problems with 9.2
    but 10g should be ok (from this doc)
    <b>for recommended parameters on oracle 10g have a look at
    SAP note : 830576 </b>
    is that what you're looking for?
    Regards,
    michal
    <a href="/people/michal.krawczyk2/blog/2005/06/28/xipi-faq-frequently-asked-questions"><b>XI / PI FAQ - Frequently Asked Questions</b></a>

  • Can not download MDM 5.5 SP05 Application Patch 1 (Build 5.5.41.58)

    I was able to download all other components of MDM SP5 Patch 1, except
    MDM 5.5 SP05 Application Patch 1 (Build 5.5.41.58) (BPMDMA55005P_1-20001090.ZIP). It doesn't show up in download manager.
    Anybody else had luck downloading this file?
    Is it a bug or access issue?
    Thanks,
    Abhay

    No error message.
    Component doesn't show up in Download basket. So can not download it.
    Earlier it was nice, just right click on the link you could save the Zip file.
    Abhay

  • OS compatibility details MDM 5.5 SP05

    Hi All
    we are planning to upgrade our MDM environment from MDM 5.5 SP03 to SP05.
    Here is our OS details..
    "Linux amuscinsela2i01 2.4.21-27.0.2.ELsmp #1 SMP Wed Jan 12 23:35:44 EST 2005 i686 i686 i386 GNU/Linux"
    Could you please confirm the Compatibility of the OS with SP05.
    Where can I find the above detail?
    We are not using MDM Import Server & MDM Syndication Server
    I had gone through Product Availability Matirx at https://service.sap.com/pam
    But, they have not provided any product matirx for MDM server as such.
    Please help.
    Regards
    Prakash A

    hi,
    Requirement Type Requirement
    Hardware
    Requirements
    See MDM 5.5 Sizing Guide at service.sap.com/installMDM.
    Operating Systems See Product Availability Matrix (PAM) on SAP Service Marketplace at
    service.sap.com/pam &#1048687; SAP NETWEAVER &#1048687; SAP MDM
    Minimum Database
    Versions
    &#1048696; MaxDB 7.7.01
    &#1048696; IBM DB2: 8.2
    &#1048696; IBM DB2 for z/OS: 8 in New Function Mode
    &#1048696; IBM DB2 for i5/OS: V5R4
    &#1048696; Oracle 9: 9.2.0.7
    &#1048696; Oracle 10: 10.2
    &#1048696; MS SQL: 8 SP3
    The related documentation about MDM is located on SAP Service Marketplace at SAP
    MDM 5.5 Documentation Center: service.sap.com/ instguidesNW04 &#1048687; Upgrade &#1048687;
    SAP MDM &#1048687; SAP MDM 5.5 Documentation Center:
    &#1048696; MDM 5.5 SP05 – Master Guide
    &#1048696; MDM 5.5 SP05 – Configuration Guide
    &#1048696; MDM 5.5 SP05 – Installation Guide
    &#1048696; MDM 5.5 SP05 – Solution Operation Guide (available with MDM 5.5 SP05 Patch 1),
    hope this may help you,
    Regards,
    srinivas

  • Where can i download the "MDM 5.5 SP05 patch1(5.5.41.58uFF09"?

    Hi gurus:
        where can i download the "MDM 5.5 SP05 patch1(5.5.41.58&#65289;"?
    alex zhang

    Hi Per:
            I find the path :Support Packages and Patches -> SAP NetWeaver,but under this there is not "SAP MDM",What is wrong about it ,and what can i do ?
            If this path is not visible for me, whether i don't have the proper MDM license?
    alex zhang

  • MDM 7.1 SP05

    Hi Guys,
    I have a few questions about new version of MDM 7.1:
    1) What does the new WF step "Wait" does ??
    2) Is it possible to configure the matching scope in the Match Web Dynpro UI with MDM 7.1 SP05 ?
    3) Will there be just one step for enrichment WF with SP05 and not the two process steps together as we have till SP04?
    4) Any plans to make MDM WF more flexible, as in integration with the Org hierachies or dynamic approvals ?
    Best Regards,
    Dheeraj

    Hi Dheeraj,
    1) What does the new WF step "Wait" does ??
    The records coming from syndication or import and one of the record field contains the date that a Wait step should wait for. The dates may be different for different records.  When the user moves the workflow job to a Wait step, the user can choose a date at run time. For more details Please refer SAP Note: 1329424
    Also refer this thread for more understanding, Re: Delay step in MDM Workflow
    2) Is it possible to configure the matching scope in the Match Web Dynpro UI with MDM 7.1 SP05 ?
    I think yes, Please refer below link for more details :
    http://help.sap.com/saphelp_nwmdm71/helpdata/en/4b/f48066166e043ae10000000a42189b/content.htm
    Complete Guide: http://help.sap.com/saphelp_nwmdm71/helpdata/en/4b/f48066166e043ae10000000a42189b/frameset.htm
    3) Will there be just one step for enrichment WF with SP05 and not the two process steps together as we have till SP04?
    As of MDM 7.1 SP05 Yes, it is there Now you can use only one step that replaces the trigger and wait steps. For more details, Please refer, http://help.sap.com/saphelp_nwmdm71/helpdata/en/44/bedae9317456a3e10000000a1553f6/content.htm
    4) Any plans to make MDM WF more flexible, as in integration with the Org hierachies or dynamic approvals ?
    I think for Dynamic Approvals as of MDM 7.1 SP05 it is not there, can hope in future releases
    With MDM 7.1 SP05, In MDM Workflow: Enhanced: Added new EC Service workflow step for use with MDM Enrichment Controller to enable the user to specify and maintain the EC related settings directly as part of the step definition.
    For more details, Please refer SAP Note: 1422355 - SAP NetWeaver MDM 7.1 SP05 Release, 1st pt under MDM workflow
    Kindly update the status of thread
    Regards,
    Mandeep Saini

  • Integrate EP 5.5 with MDM Standard Repositories

    Hi everyone,
      Does Anyone experienced the EP integration with MDM Standard Repositories.  If yes.  Please share your experiences here.  I am trying to do the same.
    Thanks
    Veera

    hello sir,
    These are the common question come to your mind when you dealing with repositories.
    1. Will there be separate repositories for IT
        scenarios, GDS & Catalog publishing?
    2. How data is harmonized in SAP MDM 5.5? What is the
        difference between Syndicator, GDS & SCM?
    > As far as my knowledge goes there is no separate
    > repository for IT scenarios, GDS and catalog
    > publishing. GDS stores the trade item data in MDM
    > repository iteself.
    Though GDS is an application built upon MDM platform and uses hence its repository this repository can not be used for other purposes than GDS. In other words, this is a private GDS repository and if you want to leverage product data for other purposes you have to build another MDM repository.
    In regards to IT scenarios it actually depends on your business scenarios. It may be one repository used for harmonization and central data management or two different. Anyway it's one repository per object family (Customers, Products, Employees and so on
    Hope IT Helps...!!
    Thanks
    Varun CN

  • MDM 5.5 SP05 JAVA API

    Heii All,
    As per If we use Java API from MDM 5.5 SP04. We will not be able to find any classes that will retrieve image and pdf data. The old API was able to do this, In API of SP05 version we can make it, but does SP04 version have any classes that will retrieve this data?
    Please help me out.
    Thanks
    -KT

    Heii,
    As per my knowledge The SP 05 version of MDM Java API has a RetrieveBlobCommand command. As per I know this command was only added in SP 05 and does not exist in SP04.
    This will help you.Please Reward Full if you find it useful.
    Rgds
    Deepak

  • Error connecting MDM system from XI through Java proxies-standard component

    Dear Friends
    We are trying to connect to the MDM system from XI through Java proxies(i.e standard components),in relation to that we have done the following:
    1)registered the interfaces
    a)http://XIserver:port/ProxyServer/register?ns=http://sap.com/xi/GDSConsole&interface=GDS_Data_Import_In&bean=localejbs/sap.com/GDS/DataImport&method=gDSDataImportIn
    b)http://XIserver:port/ProxyServer/register?ns=http://sap
    .com/xi/GDSConsole&interface=GDS_DP_In&bean=localejbs/sap.com/GDS/Dat
    aPoolIn&method=gDSDPIn
    2)Deployed the ears within Build10.zip, i.e
    a)GDS_1.0.6.1_Build10.ear and
    b)GDS_ExternalValidations_1.0.6.1_build10.ear
    3)set the sap.application.global.properties file inside the  GDS_1.0.6.1_Build10.ear
    as follows:
    SAP application properties
    #!Path to GDS folder containing the configuration files
    ConfigurationFilesLocation=/usr/sap/P70/DVEBMGS00/j2ee/cluster/server0/apps/sap.com/GDS
    #!External validation modules (EJB names) delimited by semicolon character.
    ExternalValidationModules=ExternalValidations_EJBs
    #!IP or server name of MDM server
    MDM.server=172.18.139.200
    #!MDM repository port as appears in MDM console
    MDM.port=2000
    #!MDM repository name as appears in MDM console
    MDM.repositoryName=GDS_1
    #!version of MDM server and connector
    MDM.version=5.5.42.103
    #? secure=true
    #! MDM Admin user password
    MDM.AdminPassword=
    #!Data pool name - should match a remote system defined in MDM console
    DestinationDataPoolName=
    #!Data pool 13 digits GLN
    DestinationDataPoolGln=
    #!Provider 13 digits GLN
    ProviderGln=
    #!Provider time zone e.g. EST
    ProviderTimeZone=
    #!Data pool schema URL
    SchemaLocation=
    #!Message Timeout
    MessageTimeout=10
    #!Backend import client system - should match a remote system defined in MDM console.
    ImportData.ClientSystem.Name=R3
    !# The format that dates will appear in the UI
    #Available date formats:      MM/dd/yyyy
    #                     dd/MM/yyyy
    #                     MM-dd-yyyy
    #                     dd-MM-yyyy
    #                     dd-MMM-yyyy
    #                     dd/MMM/yyyy
    #                     MMM dd, yyyy
    Where MM=1-12, MMM=Jan,Feb,Mar,etc.
    Note: Extreme caution should be taken when choosing to use month names,
    #          since different regional settings on the client and server machines
    #          will cause dates to be uninterpretable.
    #          It is strongly advised to use numeric month format, eg. MM-dd-yyyy, etc.
    DateFormat=dd/MM/yyyy
    DEBUG.SaveIncomingMessagesToFile=false
    #!defines if incoming message will be saved in arc folder
    DEBUG.ImportData.SaveArchive=false
    #!defines if outgoing message will be saved
    DEBUG.SaveOutgoingMessagesToFile=false
    But still we are getting errors as:
    a)com.sap.aii.af.ra.ms.api.MessagingException: com.sap.mdm.gds.proxy.dataimport.GDSConsole_Message_Exception: : com.sap.aii.proxy.xiruntime.core.ApplicationFaultException: com.sap.mdm.gds.proxy.dataimport.GDSConsole_Message_Exception
    inside SXMB_MONI
    when we trigger an Idoc and try to send the data inside the MDM GDS system.
    and
    b)Failed to send message,reason:Exception on method gDSDPOut
    when we try to register something,even after the data is validated by the system.
    Can anybody help??
    It is of urgent requirement.
    Edited by: Arjun Ghose on Jul 15, 2008 4:36 PM

    Hi ,
       I found a document which says that MDM4J is the legacy API and is considered deprecated .The MDM Java API is the new one .I have both of them in the java build path . I am not sure if this is that cause of the problem .
    Now I had a look at the javadoc for the new API but I am not able to locate the class to obtain a connection to the MDM server from a custom application being built in Netweaver Developer Studio . Can someone help me out with the same ?What would be the code to obtain the connection to the MDM server with the new JAVA API ?
    Regards
    DeepaK Singh

  • MDM 3.0: error when deleting a Standard Address

    Hi,
    when loading delections in MDM 3.0, the function module BUPA_ADDRESS_REMOVE can't delete addresses if in the table BUT021_FS the field XDFADU is = 'X'.
    This means that I can't delete a Standard Address.
    Do you know how can I by-pass this problem?
    I need to delete those addresses.
    Thanks in advance.
    Fabrizio Rubino

    Hi Fabrizio,
    first of all this is a correct behaviour of the SAP Business Partner (BP). The address handling is designed in a way, that you cannot delete a default address if a BP already had one. The question is what do you want to do with the addresses? Do you want to delete all addresses of a BP? Then the answer is that this is not possible (at least it is not possible without modifying SAP code). If you want to replace the standard address, the sollution is to import the new standard address first, change the "is standard address" flag and then delete the old one.
    Kind regards
    Michael

  • MDM 5.5 SP05 installation - Anyone installed it on SUSE Linux?

    In accordance to my previous post, I will give the whole story of my installation in order to make it clear.
    It is about a test server , running Linux SUSE LES 9.3. We want to install on it MDM5.5 (without NetWeaver -stand alone installation) and ORACLE 10g database.
    So I started with the ORACLE 10.2 installation which went fine.
    Now I am in the process of installing the MDM 5.5 on the same Linux server.
    The installation guide is very poor regarding instructions for Linux like systems:
    Extract the MDM Server, Import Server, and Syndication Server files from the archives with the
    following name structure:
    <server>.<incremental version>.<rebuild version>-<platform>-<compiler>.tar.<archive extension>
    2. Place the server files in the root directory under /opt.
    We recommend to place and install all servers (MDS, MDIS, MDSS) in the same folder, for
    example /opt/MDM/bin.
    3. Install each server folder by executing tar -xvf <server file>.
    4. Delete the server archives and files.
    Launching the Servers
    1. Define a user account named mdm to run the MDM Servers on.
    A process may not allocate more memory than the value of the ulimit -d command. So set
    this value as large as possible for the mdm user. On some Unix-based OS, unlimited is
    default, but on others, the kernel imposes a maximum value. Check your system carefully to
    determine the optimum setting.
    For AIX 64bit, we recommend adding ulimit -d unlimited to the user profile of mdm.
    2. Log in as the mdm user.
    3. In the mdm account's home directory (or a subdirectory), set up execution directories for the servers.
    The execution directories will contain various runtime files (for example, nohup.out for error
    messages) that are created and used by the MDM server software. Normally these directories do not
    require any manual intervention.
    We strongly recommend to set up an execution folder structure similar to the following example
    to run each server process in its dedicated folder:
    ~mdm/mdm/mds
    /mdis
    /mdss
    This ensures that the runtime files of the different servers are clearly separated.
    Ensure that you make the dedicated execution directory the current one before launching one of
    the servers. Use pushd to set the execution directory each time you run one of the servers.
    4. Launch each server (MDM Server, Import Server, and Syndication Server) from the mdm user
    account by executing mds, mdis, or mdss from within the server's dedicated execution directory.
    Do not run mds, mdis,or mdss from the installation directory or any subdirectory (this is the directory defined in the MDM_HOME variable).
    So I have followed all these instructions but I am not sure what does it mean to "set execution directory"!!! My MDM home is /opt/MDM/bin under binI have mds,mdis and mdss with the respective scripts. I run them to launch the servers and I get the error:
    mdm@mucsapt2:/opt/MDM/bin> ./mds-r
    ./mds-r: error while loading shared libraries: libxerces-c.so.26: cannot open shared object file: No such file or directory
    The libraries are there under /opt/MDM/liband with the right access rights.
    The document says to run the mds-r from the execution path which should be under /home/mdm. Does it mean that I have to copy all the scripts there? It is not clear at all.
    I am surprised, such  a big forum and nobody had faced this issue. Is there anybody who did the installation on Linux? From what I see there are not too many questions for the installation itself. Was it so straight forward for all you?
    Thanks in advance,
    Loukas

    Unsupported Linux version should not make a major difference in this case...
    This happens because your system runs out of swap space necessary for installer to fork and exec external process which configures the domain. Solution is to increase the amount of swap space available to installer - on Solaris this is usually done by cleaning up any unnecessary content from /tmp partition and shuting down non-essential processes prior to reinstalling. I suppose the same steps would help on Linux.
    Before reinstallation you should also use provided uninstaller to cleanup this failed installation if you intend to install in the same location.

  • How to Introduce Client System in Standard Repositories

    Hi People
       I am facing a problem to know how to add my client system in "VendorDemo" repository which is given as standard Repository by SAP MDM 5.5 SP2.
      Is this not available in Demo system are is there any other method to add it ?
    Veera

    Hi Veera,
    as to my knowledge, there are no restrictions regarding the number of client systems for the demo repositories. But in order to add a new client system [or edit an existing one] you have to unload the rep. first, then the context menu 'add cient system' is active. create your client system and load the repository again. There's no possibility whatsoever to create/edit client systems for a running rep.
    Good luck!
    Cheers,
    martin

Maybe you are looking for

  • How can we use BDoc for replication BP industry data

    Hi sap guru's,   I am siva, i am working IS-U and CRM, give me the solutions for my requirment. Bussiness Partner Industry data replication using BDoc, it means when the new industry add to the Bussiness partner then the industry data automatically t

  • 7320 image question

    Hello Sir, My 7320 can't work normal now. The system image in our 7320 is rescue version. Do I need the real system image to upgrade the rescue one? What can I do now? Thank you very much! Regards, Sha

  • What does error -50 mean? and how do i fix this problem?

    I am unable to download music that i have purchased from the itunes music store. I have purchased this one song that will not download and keeps saying error -50. I thought i would try purchasing another song thinking that i would be able to download

  • This problem appears while installing oracle 10g on enterprise linux

    Hi All, While installing oracle 10g on enterprise linux 5 this message apear: http://img134.imageshack.us/my.php?image=problemqy2.png More Info: Oracle 10g supports redhat 4 and Enterprise Linux is redhat 5 so I changed the redhat-release to 4 to cou

  • V1.5 ORB Setting Timeout values

    Is it possible to set the timeout values used by the Java ORB? I can�t find any information about it� I know that in version 1.4.x was impossible. I tried this with different values, but no success� // transport read tcp timeout property, colon separ