Weblogic-oracle max transactions

Hi,
I have to design a system for process ordering in my company in which I am planning
to use weblogic. I have a bug concern about database performance.
The fact I face is that the systems concentrates its workload during half an hour
each day, during this time the database has to perform 77 tps (both reading and
inserts). I have experience enough with weblogic to know that the pages served
and logical transactions performance can be managed by the systems we have, BUT
I don´t think we'll be able to perform 77 tps to oracle using jdbc...
I have thought about, putting tuxedo in the middle to "enqueue" the database work...
but I am affraid we'll need a pretty big machine.
Another possibility could be using JTA ... but the problem is in the database,
not in weblogic capacity to manage queues, it will be in the oracle eating rows
etc.
Other way can be using an object relational mapping tool like versant's enjin...
but I don't have any experience on how it performs, or works.
and... that's all I have can anybody give me hints???
THANKS a lot in advance
pedro

Hi Pedro,
Rob gave you as precise answer as possible
in this situation. The only way to know how an application
scales is running adequate load tests. Otherwise
you'll be guessing only. For example, for the same
hardware configuration you may get completely
different results for different data - you may be inserting
20 bytes records, or 2Mb records, you may have a single
client and you may have a bunch of clients concurrently
hitting the server etc. There are too many variables and this
is what a good load test should take care about.
Regards,
Slava Imeshev
"Pedro Trujillano" <[email protected]> wrote in message
news:[email protected]...
>
Well of course we'll make such testing before writting the app.
The question was more open in the meaning that having a highlytransactional environment;
around 50% of that txs are going to be inserts, will a sun 4500 (to givemore
data) with 8 cpus eat them?
Will a product like versant's Ejin help? (or toplink)
Are there any other ways to do it?
thanks again
Pedro
Rob Woollen <[email protected]> wrote:
I would suggest starting by writing a simple jdbc prototype that runs
the reads/inserts and measure the performance. You should be able to
tune this and get a good idea of your real configuration needs.
It's hard for anyone to tell you whether 77 tps against Oracle is
reasonable or not because it totally depends on what your transaction
is
doing, your hardware, etc.
-- Rob
Pedro Trujillano wrote:
Hi,
I have to design a system for process ordering in my company in whichI am planning
to use weblogic. I have a bug concern about database performance.
The fact I face is that the systems concentrates its workload duringhalf an hour
each day, during this time the database has to perform 77 tps (bothreading and
inserts). I have experience enough with weblogic to know that the pagesserved
and logical transactions performance can be managed by the systemswe have, BUT
I don´t think we'll be able to perform 77 tps to oracle using jdbc...
I have thought about, putting tuxedo in the middle to "enqueue" thedatabase work...
but I am affraid we'll need a pretty big machine.
Another possibility could be using JTA ... but the problem is in thedatabase,
not in weblogic capacity to manage queues, it will be in the oracleeating rows
etc.
Other way can be using an object relational mapping tool like versant'senjin...
but I don't have any experience on how it performs, or works.
and... that's all I have can anybody give me hints???
THANKS a lot in advance
pedro

Similar Messages

  • Why I cannot found "oracle.jbo.Transaction"

    I'm study jdeveloper 9.0.3 accord tutorials in help. When I learn the sample (tutorial--&gt;Business Components Programmatic Client Tutorial), I met the problem. I finished the program according to the help step by step. But the program raise the error as follows:
    Project: batchclient.jpr
    D:\jdev903\BC4J\src\bc4jaddinsrc.zip!\oracle\jbo\domain\DomainInterface.java
    Error(14,19): cannot access class oracle.jbo.Transaction; file oracle\jbo\Transaction.class not found
    Error(50,47): class Transaction not found in interface oracle.jbo.domain.DomainInterface
    D:\jdev903\jdev\mywork\bcbatch\batchclient\src\bcbatch\Batch.java
    Error(45,1): class ApplicationModule not found in class bcbatch.Batch
    Error(45,28): variable Configuration not found in class bcbatch.Batch
    Error(46,1): class ViewObject not found in class bcbatch.Batch
    Error(47,1): class Key not found in class bcbatch.Batch
    Error(47,19): class Key not found in class bcbatch.Batch
    Error(48,1): class Row not found in class bcbatch.Batch
    Error(56,3): class Row not found in class bcbatch.Batch
    Notice:
    I can't found the oracle.jbo.Transaction. But I download the full version at the site of java.sun.com. Why?
    下面是我程序的源码:
    the source code is:
    package bcbatch;
    import oracle.jbo.*;
    import oracle.jbo.client.*;
    import oracle.jbo.domain.Number;
    import java.awt.Frame;
    import java.awt.event.WindowAdapter;
    import java.awt.event.WindowEvent;
    import javax.swing.UIManager;
    import java.awt.Dimension;
    import java.awt.Toolkit;
    public class Batch
    public Batch()
    Frame frame = new Frame1();
    Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize();
    Dimension frameSize = frame.getSize();
    if (frameSize.height &gt; screenSize.height)
    frameSize.height = screenSize.height;
    if (frameSize.width &gt; screenSize.width)
    frameSize.width = screenSize.width;
    frame.setLocation((screenSize.width - frameSize.width) / 2, (screenSize.height - frameSize.height) / 2);
    frame.addWindowListener(new WindowAdapter()
    public void windowClosing(WindowEvent e)
    System.exit(0);
    frame.setVisible(true);
    public static void main(String[] args)
    if (args.length==0)
    show("Customer ID is required.");
    System.exit(0);
    ApplicationModule am_Ord = Configuration.createRootApplicationModule("OnlineOrders.OnlineOrdersModule", "OnlineOrdersModuleLocal");
    ViewObject vo=am_Ord.findViewObject("CustomersView1");
    Key custKey = new Key(new Object[] {args[0]});
    Row[] customersFound = vo.findByKey(custKey,1);
    //first argument of findByKey is the key; the second is the maximum number of rows to
    if (customersFound.length==0)
    show("Customer " + args[0] + " not found.");
    else
    Row row_Cust = customersFound[0];
    show("Customer");
    show("========");
    show("ID: " + row_Cust.getAttribute("CustomerId"));
    show("Email: " + row_Cust.getAttribute("CustEmail"));
    try
    UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
    catch(Exception e)
    e.printStackTrace();
    new Batch();
    private static void show(String s)
    System.out.println(s);
    } // end show()

    It looks like your jpr (project) does not include the BC4J library.
    Select the project in your IDE, right-mouse click, select "Project Settings".
    Go to the "Libraries" panel, and shuttle over library named "BC4J Runtime."
    Thanks.
    Sung

  • Enable Oracle XA Transaction Support

    Hi everybody. First of all, sorry for my terrible English.
    I've been some problems using COM+ with Personal Oracle 8i (8.1.7.0.0) and SQL Server 2000 and Windows 2000 for development only.
    I have one method that inserts the same data both SQL Server and Oracle (the tables and procedures definitions are identical) and I'm utilizing GetObjectContext method to commit or abort the transactions (the COM component were made in VB). Out of COM+ environment the method works 5x5. The error message is: "-2147168229 - Cannot connect to the transaction manager or the transaction manager is unavailable."
    Checking Microsoft documentation I found an article (http://support.microsoft.com/support/complus/mtsandoracle.asp) telling me to "Enable Oracle XA Transaction Support" so I could have transactional work with Oracle and COM+. OK, just fine.
    Does anyone knows how could I manage it? I am not a DBA nor I know one (an Oracle DBA), but I shall explain to my team how program 2 phase commit between Oracle and SQL Server.
    Thanks in advance, and forgive me the size of this "book". I should be shorter next time...
    null

    Vivek, thanks for the help.
    I am utilizing these versions of Oracle Products:
    Personal Oracle8i Release 8.1.7.0.0 - Production
    With the Partitioning option
    JServer Release 8.1.7.0.0 - Production
    Net8 Client 8.1.7.0.0
    Oracle Services for MTS 8.1.7.0.0
    Oracle Provider for OLE DB 8.1.7.2.0
    The provider I first tried was MSDAORA with no success and then ORAOLEDB with no success too.
    But those entries in registry that you sent me were all with Microsoft dll`s. I will try again tomorrow and send you the results
    Thank you again
    <BLOCKQUOTE><font size="1" face="Verdana, Arial, Helvetica">quote:</font><HR>Originally posted by Vivek Raja:
    Renato, firstly what is the interface you use to access Oracle from your COM+ components? If it is OLEDB which provider is in use - MSDAORA or ORAOLEDB? What are the versions in use 8.1.6 or 8.1.7? If you are using MSDAORA as the provider then you will need to add the following key to your registry:
    HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\MSDTC\MTxOCI.
    Under this key add the following registry string values:
    OracleOCILib - oraclient8.dll
    OracleXALib - oraclient8.dll
    OracleSQLLib - orasql8.dll
    If you are using ORAOLEDB as the provider install Oracle Services For MTS 8.1.7. The error you receive seems to point to the fact that the "Distributed Transaction Coordinator" Windows2000 Service is not running.<HR></BLOCKQUOTE>
    null

  • Oracle 9i Transaction Performance (Real World vs. TPC)?

    Hello:
    I was curious if anybody reading this forum has a server/disk architecture that has achieved over 10,000 Oracle Database transactions (with logging enabled) per second?
    If so, can you please supply me with the clustered or standalone server and disk farm (NAS, SAN, DAS) details.
    Thanks,
    Robert
    [email protected]
    310-536-0018 x124
    http://www.imperialtech.com

    Hi,
    have a look at http://publications.uu.se/theses/.
    This site is now up for nearly one year. We're using Oracle 8.1.7, Apache 1.3.24 and Tomcat 4.0.3. We've got about 4500 hits per day with a maximum up to 9000 hits.
    Regards Uwe Hi there Uwe,
    Given you are running this in a production environment, are you running the XSQLRequest object or are you running the servlet directly. Running the servlet directly in particular, is just not production ready, unless I am missing something.
    1. There are no direct filesystem logging capabilities in the servlet. Doing inserts into a db table for the purposes of logging, is not adequate as the critical points in the servlet operation is either connecting to the database or in the post query phase during the xml transform.
    2. Errors like invalid db connections, timeouts, invalid xsql/xsl files, ie All xsql-xxxx errors other than query errors are not trappable from the servlet either via xml or otherwise. They get written directly to the Output stream as text.
    Using the XSQLRequest object programmatically, we can work around some of these limitations, but that defeats the purpose and the otherwise ease of use of this servlet in a XML envirnoment.
    - Manish

  • Cloning Oracle Healthcare  Transaction Base

    Hi
    I am looking for documentation on cloning a production HTB instance to a test instance
    Kindly let me know where I can find the documentation for the same
    Is it similar to cloning ebusiness suite ?

    Hi,
    Oracle Healthcare Transaction is part of Oracle E-Business Suite so you just need to follow the steps in Rapid Clone documentation.
    Note: 406982.1 - Cloning Oracle Applications Release 12 with Rapid Clone
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=406982.1
    Note: 799735.1 - Rapid Clone Documentation Resources, Release 11i and 12
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=799735.1
    Regards,
    Hussein

  • 2 weblogic servers, 1 oracle DB, transaction problem

    2 weblogic servers, single DB, can i manage the threads started in the 2 weblogic servers which are access same schema. can we manage the transactions????

    Craig,
    Normally AssertionError means that you hit the bug. Contact [email protected]
    for a resultion.
    Regards,
    Slava Imeshev
    <Craig Daniels cldanielsATcheckfree.com> wrote in message
    news:[email protected]..
    >
    I've got WLS 8.1SP1 running on Mac OS X (10.2.6, JDK 1.4.1) using theOracle Thin
    driver to connect to a 9.2.0.1 db on WinXP. When I run a unit test thatuses
    an XA connection, I get the error below (inside a much larger stacktrace). I'm
    not getting this error with 7.0SP2 (with Mac JDK 1.3.1). Is anyonefamiliar with
    what the code is trying to do here?
    [junit] --------------- nested within: ------------------
    [junit] weblogic.utils.AssertionError: ***** ASSERTION FAILED *****[Failed
    to generate class forweblogic.jdbc.rmi.internal.PreparedStatementImpl_weblogic_jdbc_wrapper_Prepa
    redStatement_oracle_jdbc_driver_OraclePreparedStatement_811_WLStub
    ] - with nested exception:
    [junit] [java.lang.reflect.InvocationTargetException - with target
    exception:>     [junit [java.lang.ArrayIndexOutOfBoundsException: 142]]
    [junit] atweblogic.rmi.internal.StubGenerator.generateStub(StubGenerator.java:807)
    [junit] atweblogic.rmi.internal.StubGenerator.generateStub(StubGenerator.java:790)
    [junit] atweblogic.rmi.extensions.StubFactory.getStub(StubFactory.java:79)
    [junit] atweblogic.rmi.utils.io.RemoteObjectReplacer.resolveObject(RemoteObjectReplace
    r.java:222)
    [junit] atweblogic.rmi.internal.StubInfo.readResolve(StubInfo.java:142)

  • Wls 10.3 weblogic-webservices.xml transaction-timeout attribute not working

    Hi, need some urgent need.
    I have a stateless ejb webservice and I'm trying to set the transaction timeout for some of the methods. Right now my webservice transaction is timing out to the default of 30 secs. I've tried setting in the admin console the JTA transaction timeout option, didn't work (file a case with bea support #81233). And after days of researching and searching I came across that you can setup the weblogic webservice transaction-timeout thru the weblogic-webservices.xml deployment descriptor. Tried setting the transaction-timeout attribute to 120 secs. and that didn't work. Here is the snippet of the xml file.
    <?xml version='1.0' encoding='UTF-8'?>
    <weblogic-webservices xmlns="http://www.bea.com/ns/weblogic/weblogic-webservices" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.bea.com/ns/weblogic/weblogic-webservices http://www.bea.com/ns/weblogic/weblogic-webservices/1.0/weblogic-webservices.xsd">
    <webservice-description>
    <webservice-description-name>com.starcomsoft.pp.system.jws.SystemWSImpl</webservice-description-name>
    <webservice-type>JAXRPC</webservice-type>
    <port-component>
    <port-component-name>SystemWSSoapPort</port-component-name>
    <service-endpoint-address>
    <webservice-contextpath>starcomsoft_ws</webservice-contextpath>
    <webservice-serviceuri>/SystemWSImpl</webservice-serviceuri>
    </service-endpoint-address>
         <transaction-timeout>120</transaction-timeout>
         <reliability-config>
              <inactivity-timeout>P0DT600S</inactivity-timeout>
         </reliability-config>
    </port-component>
    </webservice-description>
    </weblogic-webservice>
    Does anybody have any clue to solve my urgent need.
    Thanks in advance for your help or suggestion.

    Unhandled exception
    Type=Segmentation error vmState=0x00040000
    J9Generic_Signal_Number=00000004 Signal_Number=0000000b Error_Value=00000000 Signal_Code=00000033
    Handler1=F144C588 Handler2=F1446A9C
    Module=/app/oracle/product/Middleware/wlserver_10.3/server/native/aix/ppc/libmuxer.so
    Module_base_address=D8457000
    Target=2_40_20091214_049398 (AIX 5.3)
    CPU=ppc (4 logical CPUs) (0x600000000 RAM)
    ----------- Stack Backtrace -----------
    (0xD696E748 [libj9vm24.so+0x48748])
    (0xD8383EDC [libjclscar_24.so+0x10edc])
    (0xD8384514 [libjclscar_24.so+0x11514])
    (0xD6967718 [libj9vm24.so+0x41718])
    (0xD6967158 [libj9vm24.so+0x41158])
    (0xD69640D0 [libj9vm24.so+0x3e0d0])
    (0xD6932C9C [libj9vm24.so+0xcc9c])
    (0xD69BBA18 [libj9prt24.so+0x3a18])
    (0xD6932BB8 [libj9vm24.so+0xcbb8])
    (0xD69A77CC [libj9thr24.so+0x27cc])
    pthreadbody+0x118 (0xD010D784 [libpthreads.a+0x3784])

  • Problem with WebLogic- Oracle AQ Foreign JMS server.

    I'm trying to create a JMS module in WebLogic pointing at an Oracle AQ queue in another database.  I've got a datasource, module, and queue according to the documentation (I believe). 
    I followed: http://docs.oracle.com/cd/E24329_01/web.1211/e24385/aq_jms.htm#CJAECHCC
    although, I did fix the syntax errors in the SQL, and I used smf instead of jmsuser.
    However, when I deploy a MDB that uses the queue, I get the following exception:
    weblogic.jms.common.InvalidDestinationException: [JMSClientExceptions:055142]Foreign destination, SMF.USERQUEUE
      at weblogic.jms.common.Destination.checkDestinationType(Destination.java:105)
      at weblogic.jms.client.JMSSession.setupConsumer(JMSSession.java:2720)
      at weblogic.jms.client.JMSSession.createConsumer(JMSSession.java:2691)
      at weblogic.jms.client.JMSSession.createReceiver(JMSSession.java:2596)
      at weblogic.ejb.container.internal.JMSConnectionPoller.setUpQueueSessionAt(JMSConnectionPoller.java:1791)
      at weblogic.ejb.container.internal.JMSConnectionPoller.setUpQueueSessions(JMSConnectionPoller.java:1618)
      at weblogic.ejb.container.internal.JMSConnectionPoller.createJMSConnection(JMSConnectionPoller.java:2298)
      at weblogic.ejb.container.internal.JMSConnectionPoller.connect(JMSConnectionPoller.java:808)
      at weblogic.ejb.container.internal.MDConnectionManager.timerExpired(MDConnectionManager.java:177)
      at weblogic.timers.internal.TimerImpl.run(TimerImpl.java:293)
      at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:545)
      at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
      at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)
    The JDBC data source is connected properly.
    JNDI IC: oracle.jms.AQjmsInitialContextFactory
    ConnectionFactory Local: aqjms/XAQueueConnectionFactory Remote: QueueConnectionFactory
    Destination Local: aqjms/sdcCompilerQueue Remote: Queues/USERQUEUE
    Data Source: jdbc:oracle:thin:@(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=localhost)(PORT=1521)))(CONNECT_DATA=(SERVICE_NAME=SMF)(INSTANCE_NAME=SMF)))
    Supports Global Transactions - DISABLED.
    Data Source Test: SQL SELECT count(*) FROM myqueuetable  -- validates that the queue table exists.
    Oracle WebLogic 12c, Oracle EE 11gR2 on OEL 6.4.
    Any ideas?  We're stumped here.
    Thank you

    The problem was that the MDB wasn't specifying the connection factory.  It needed some more annotations:
    @MessageDriven(name = "MDBName",
            mappedName = "aqjms/mdbQueue",
            activationConfig = {
                    @ActivationConfigProperty(propertyName="connectionFactoryJndiName",
                            propertyValue="aqjms/QueueConnectionFactory"

  • Weblogic DB Control transactions

    There has to be an article describing a step by step solution to this seemingly very common problem. Could someone help me?
    Using Weblogic Workshop 8.1 and default weblogic workshop sample domain......
    1) I created a Workshop db control (jcx) to provide access to an Oracle database
    2) I wanted to test, so I right clicked it and created a java web service test client
    3) It appears that the wrapping web service control uses a default transaction utilizing the cgPool connection pool. However, my wrapped db control (jcx) uses a connection pool I created and the default BEA Oracle XA driver.
    4) When I tried to run the test, I gotsome general XA error.
    there has to be a white paper out there explaining how to do this successfully? Why is this out of box behavior? Every user or Workshop must run in to this.
    Thanks in advance for your help. I googled this and can't find an answer, only a bunch of people who have experienced the same problem.
    Thanks,
    John Curley

    There has to be an article describing a step by step solution to this seemingly very common problem. Could someone help me?
    Using Weblogic Workshop 8.1 and default weblogic workshop sample domain......
    1) I created a Workshop db control (jcx) to provide access to an Oracle database
    2) I wanted to test, so I right clicked it and created a java web service test client
    3) It appears that the wrapping web service control uses a default transaction utilizing the cgPool connection pool. However, my wrapped db control (jcx) uses a connection pool I created and the default BEA Oracle XA driver.
    4) When I tried to run the test, I gotsome general XA error.
    there has to be a white paper out there explaining how to do this successfully? Why is this out of box behavior? Every user or Workshop must run in to this.
    Thanks in advance for your help. I googled this and can't find an answer, only a bunch of people who have experienced the same problem.
    Thanks,
    John Curley

  • XML Publisher and the Oracle Shipping Transactions Form

    I am running 11.5.10.2. I need to print Simplified Chinese characters in a document. We converted to the UTF-8 character set so the server can render these on forms and such. I am using Oracle Reports 6i to produce a report, but due to the limitations with this product it will not produce PDF output with Chinese characters. XML Publisher however works great. The concurrent manager is set so the report produces XML which is then set to the template and out comes a really cool looking layout with Chinese that can be viewed, printed, or e-mailed anywhere.
    Now I have put this report into a document set so it can be printed from the Shipping Transactions form. But it does not work. There is no output. Metalink Note:312194.1 states development only supports XSL-FO and this will not be available until R12.
    Is this really true? Has anyone else come across this? Any suggestions on how to get around this?

    Hi
    Im assuming you are using the EBusiness Suite becasue of your reference to AR and AP modules. If so getting using an ORacle Report as a datasource for XMLP to format is pretty straightforward. There is a white paper on metalink describe the complete process - Note 295409.1. This will be available on the public site soon http://www.oracle.com/technology/products/applications/publishing/index.html
    As for AR and AP, there is no reason at all why you can not use XMLP with the existing Oracle Reports in those modules. You will start to see more and more modules providing embedded reporting functionality in the EBS based on XMLP technologies.
    Regards
    Tim

  • Where to download weblogic       Oracle WebLogic Server 10.3.6

    hi am trying to download
    Oracle WebLogic Server 10.3.6
    from WebLogic Server 12c (12.1.1), WebLogic Server 11g (10.3.6) and Previous Releases
    but the see all files is disable does anybody know where i can download

    Hi,
    There is a procedure to download old Oracle products.
    I think you should open a SR.
    but first look into this note on metalink
    Regards
    Doc ID 1068235.1

  • Correlation in Oracle B2B Transactions

    Hi All, I am trying to find how do we co-relate EDI transactions when used Generic File as protocol.
    Outbound Scenario:
    When an EDI transaction is sent to a Trading Partner and if the host is expected to receive a TA1 acknowledgment from Trading Partner, how do we ensure the TA1 sent by Trading partner is related to the EDI transaction sent by Host.
    Please advise...

    Correlation with TA1 works on the basis of Interchange Control Number. Element I12 of TA1 contains the Interchange Control Number on the basis of which Oracle B2B correlates it with the corresponding request.
    Regards,
    Anuj

  • Yum install Oracle-Validated Transaction Check Error:

    Doing a yum install oracle-validated command with CentOS 5.3 and got these errors:
    Running rpm_check_debug
    Running Transaction Test
    Finished Transaction Test
    Transaction Check Error:
    file /etc/issue from install of enterprise-release-5-0.0.17.x86_64 conflicts with file from package centos-release-5-3.el5.centos.1.x86_64
    file /etc/issue.net from install of enterprise-release-5-0.0.17.x86_64 conflicts with file from package centos-release-5-3.el5.centos.1.x86_64
    file /etc/redhat-release from install of enterprise-release-5-0.0.17.x86_64 conflicts with file from package centos-release-5-3.el5.centos.1.x86_64
    file /usr/share/eula/eula.en_US from install of enterprise-release-5-0.0.17.x86_64 conflicts with file from package centos-release-5-3.el5.centos.1.x86_64
    file /usr/share/firstboot/modules/eula.py from install of enterprise-release-5-0.0.17.x86_64 conflicts with file from package centos-release-5-3.el5.centos.1.x86_64
    file /usr/share/firstboot/modules/eula.pyc from install of enterprise-release-5-0.0.17.x86_64 conflicts with file from package centos-release-5-3.el5.centos.1.x86_64
    file /usr/share/firstboot/modules/eula.pyo from install of enterprise-release-5-0.0.17.x86_64 conflicts with file from package centos-release-5-3.el5.centos.1.x86_64
    Error Summary
    Did the yum update work? Should I procede with the oracle install?
    Thanks in advance

    Hi Tom,
    Could you please help me as im trying to install ORACLE OID 10.1.4.0.1 on OEL 5 n trying to use yum to load the default RMP
    ]# yum install oracle-validated
    Loaded plugins: security
    el5_oracle_addons | 951 B 00:00
    primary.xml.gz | 1.6 kB 00:00
    el5_oracle_addons 10/10
    epel | 2.3 kB 00:00
    primary.sqlite.bz2 | 2.0 MB 00:05
    el5_ga_base | 1.1 kB 00:00
    Setting up Install Process
    Parsing package install arguments
    No package oracle-validated available.
    repo file :
    [el5_ga_base]
    name=Enterprise Linux $releasever GA - $basearch - base
    baseurl=http://public-yum.oracle.com/repo/EnterpriseLinux/EL5/0/base/$basearch/
    gpgkey=http://public-yum.oracle.com/RPM-GPG-KEY-oracle-el5
    gpgcheck=1
    enabled=1
    [el5_u1_base]
    name=Enterprise Linux $releasever U1 - $basearch - base
    baseurl=http://public-yum.oracle.com/repo/EnterpriseLinux/EL5/1/base/$basearch/
    gpgkey=http://public-yum.oracle.com/RPM-GPG-KEY-oracle-el5
    gpgcheck=1
    enabled=0
    [el5_u2_base]
    name=Enterprise Linux $releasever U2 - $basearch - base
    baseurl=http://public-yum.oracle.com/repo/EnterpriseLinux/EL5/2/base/$basearch/
    gpgkey=http://public-yum.oracle.com/RPM-GPG-KEY-oracle-el5
    gpgcheck=1
    enabled=0
    [el5_u3_base]
    name=Enterprise Linux $releasever U3 - $basearch - base
    baseurl=http://public-yum.oracle.com/repo/EnterpriseLinux/EL5/3/base/$basearch/
    gpgkey=http://public-yum.oracle.com/RPM-GPG-KEY-oracle-el5
    gpgcheck=1
    enabled=0
    [el5_addons]
    name=Enterprise Linux $releasever - $basearch - addons
    baseurl=http://public-yum.oracle.com/repo/EnterpriseLinux/EL5/addons/$basearch/
    gpgkey=http://public-yum.oracle.com/RPM-GPG-KEY-oracle-el5
    gpgcheck=1
    enabled=0
    [el5_oracle_addons]
    name=Enterprise Linux $releasever - $basearch - oracle_addons
    baseurl=http://public-yum.oracle.com/repo/EnterpriseLinux/EL5/oracle_addons/$basearch/
    gpgkey=http://public-yum.oracle.com/RPM-GPG-KEY-oracle-el5
    gpgcheck=1
    enabled=1
    best regards,

  • Oracle 9i and Oracle 10g transaction log shipping

    Hi,
    We have Oracle 9i and we use the transaction log shipping mechanism to transport our transaction log files to our DR site. We then import these against the database at the remote site.
    Our telecomms infrastructure is pretty limited so this is a manual process.
    We are looking at upgrading to 10G. I believe that with 10g you have to use dataguard, or is there a way to mimic the behavior of 9i that would allow us to transport and apply the transaction logs manually?
    Thanks
    Andrew

    You can try setting the SGA to a low value and bring up both the databases. I don't think it should be too slow provided you are not running other windows programs.
    If you are really interested in trying out new products you can also explore the option of installing VMware, creating virtual machines & installing Linux, and then playing with the different Oracle products. Doing this will at least keep your main windows operating system clean.
    You may want to check out my blog post on Build your own oracle test lab
    Cheers !!!
    Ashish Agarwal
    http://www.asagarwal.com

  • Interest frequency of Additional Details in Oracle Treasury Transaction

    Dear all,
    We are using Oracle Treasury. Our client request to input the time deposit with interest payment period so that the system can generate the interest payment per frequency. i.e. a 2 year time deposit with annual interest payment.
    We found that there is a field "Interest Frequency" of additional details in Short Term Money's transaction form.
    We try to update the value but it is not effect on calculation of interest rate.
    Please advise
    1. The use of Interest frequency of Additional Details.
    If it is only reference field?
    2. how the system can generate interest payment per term period
    Regards,
    Queenie

    Hi,
    Can you please elaborate more on your requirement.
    In the FI document, you will not contain the transaction type value filled because not all documents arising from Treasury need to have the transaction type.  There may be derived documents also.  Same is the case for flow types.  For derived documents, you will not have any flow type.  But all these document line items will have update type in their item text as default. 
    For documents relating to transaction types, contract number will be filled, which is the treasury transaction number.  Using this you can pick the transaction type from the table VTBFHA.
    Regards,
    Ravi

Maybe you are looking for

  • Debit/Credit sign settings of item and movement type usage

    Dear BCS Experts, According to your experience, where are Debit/Credit sign settings of item and movement type used in BCS? As I know, they can be used during data collection. Any other thoughts? Thanks.

  • Garbled Graphics every once and a while on FF 4.0

    I have been using FF 4.0 for a few days now. Every once and a while while browsing, all of a sudden the graphics will freeze up and then all of the menus on FF are garble graphics (see screenshot link below). This only seems to happen when Pandora ra

  • Need drivers of creative sound blas

    li've5. digital?model No:SB0220?serial No:MSB0224407005524Fmy windows is XP service pack2some body plz help me......

  • OD - Tiger to Leopard upgrade

    What is the most reliable upgrade path for an OD server from Tiger to Leopard? I am reading about problems with loss of passwords and tiger and leopard incompatibilities. How much down time do I allow for? I have an existing G5 server on 10.4.11 and

  • Very slow installation download

    It is taking a very long time to dowload and install Pro