Network bandwith for oracle

Hi,
we should size our network (LAN and WAN) bandwidth regarding Oracle database and Oracle Applications that we will install. how to determine Bandwidth ? What is the relation between number of users, number of transactions and bandwidth ? Any Oracle documentation ? Please ?
Many thanks.

The answer is 'it depends'. It depends on which modules you have purchased, on your user distribution (geographic and role), and ...
Surely you have hired consultants who are familiar with Oracle Applications to do the implementation. They should have information based on your specific configuration and needs.
If nothing else, contact Oracle Sales - your presales consultants have access to that information as well.

Similar Messages

  • Broken Link - Firewall and Virtual Private Network Communication for Oracle

    The link for Firewall and Virtual Private Network Communication for Oracle Enterprise Manager on http://otn.oracle.com/products/oem/files/best_practices.html returns a 404 error. It is not pointing to the correct document

    This link is still broken !
    Can you please correct this ASAP ?
    Best regards, Yolanda
    Oracle HUB support services

  • Limiting network bandwith for SAP printing

    We are usinge ERP 6.0 (Win / MSSQL).  One of the issues we are facing is that SAP printing take too much network bandwith.
    Our network bandwith between Datacenter and office is 1Mbps.   
    Is ther any way to limit the use of network bandwith for SAP printing. Let's say up to 30 % of bandwith is assigned to SAP printing.
    Thanks.

    Hi,
    I am not aware of such way to "assign" bandwidth. For this reason you need to do precise network capacity planning and start the printing only when you do not have a peak of other important activities.
    Best regards.
    Sylvia

  • NetWorker Module for SAP/Oracle

    Legato has NetWorker Module for SAP R/3 on Oracle and
    NetWorker Module for Oracle. Which one is better for a
    large SAP database over 1TB?

    Hi,
    we are using
    Module Name:  Legato NetWorker Module for SAP R/3 with Oracle @(#) Module Vers: 3.0.1
    for SAP R/3 Enterprise 4.7x110 with 6.40-Kernel.
    Regards
    Jürgen

  • Network speed for spatial oracle-Arcsde databases

    Hi all
    I am working in a oracle -ArcSDE production database environment. The data size is huge and more than 100 users are connected to the database. Wht should be the Reccomended Network speed for the database?
    Thanks in Advance
    Albin

    Albin,
    Obviously the faster the network, the quicker you will move data from the database to the client. However, in most cases (at least with a 1Gb network) I find that the neither the database or the network are usually the bottleneck with ArcMap, but instead the client-side "SDE"/rendering process. This is especially true when returning large numbers of geometries. The 10.x engine just chokes on anything more than a few thousand objects, and unfortunately the render model they use causes a full refresh on any movement / zoom, repeating the painful process over and over.
    In a nutshell, it is simply a poorly designed architecture for today's loads. Our custom Java WebStart GIS client runs circles around it. Hopefully the new project they are working on will improve performance, especially when using native SDO_GEOMETRY data - but I haven't really had time to pound on it yet to verify that one way or another.
    Bryan

  • How to choose a right server for Oracle Database!

    Hi all,
    Is there any formular that allows me to find the appropriate server configuration for Oracle database 11g?
    Please help!
    Thank you all.
    Dan.
    Edited by: Dan on 01:45 06-01-2013

    Simply put ... no.
    Determining the correct server is a dance between hardware vendors (one point of input to be treated with general distrust), internal expertise and experience working with similar systems, and most importantly understanding the behaviour of what you are building.
    Here are some sample questions to start the ball rolling.
    1. What operating system expertise does your organization have?
    2. What operating system expertise is readily available in the community from which you hire applicants?
    3. What type of application?
    4. What are up-time expectations?
    5. Requirements for high availability?
    6. Requirements for time to perform a full recovery?
    7. Requirements for security?
    8. Storage footprint (dictates internal storage versus SAN, NAS, or ZFS)
    9. Anticipated growth (3-7 years)
    Everyone wants to sell you CPU clock-ticks, more RAM, more IOPS, etc. But the first thing you need to understand is the capabilities you require that are generic: Required of any solution. Only when you have a clear understanding of these factors are you ready to discuss whether the solution is a pizza box or an ODA ... an Exadata or an IBM System Z.
    Far too often I find people purchasing RAM they don't need with CPU speeds that exceed the ability of their network infrastructure to move the data so pay special attention when you are ready to make your purchase to engineered systems like the ODA.

  • Error in Setting Auto Start for Oracle DB on Sun Solaris 10

    Hi Gurus,
    I am trying to set my DB to auto start when server reboots. Fllowing is my setting and the error. The issue is that the DB starts but LISTENER is not running...
    Please please help me...
    This is what I used for setting the auto start.
    Thanks,
    Jayant
    SETTING:
    =======
    #!/sbin/sh
    #Match ORACLE_HOME with whatever is in ~oracle/.profile!!!
    ORACLE_HOME=<whatever is Orcale home is>
    case $1 in
    start)
    su - oracle -c $ORACLE_HOME/bin/dbstart
    su - oracle -c "$ORACLE_HOME/bin/lsnrctl start"
    exit 0
    stop)
    su - oracle -c "$ORACLE_HOME/bin/lsnrctl stop"
    su - oracle -c $ORACLE_HOME/bin/dbshut
    esac
    You're not done yet! You now have to dl
    ln -s ../init.d/oracle /etc/rc3.d/S95oracle
    ln -s ../init.d/oracle /etc/rc0.d/K15oracle
    chmod 0755 /etc/init.d/oracle
    ERROR:
    ======
    LSNRCTL for Solaris: Version 10.2.0.1.0 - Production on 02-DEC-2006 10:09:24
    Copyright (c) 1991, 2005, Oracle. All rights reserved.
    Message 1070 not found; No message file for product=network, facility=TNSTNS-12545: Message 12545 not found; No message file for product=network, facility=TNS
    TNS-12560: Message 12560 not found; No message file for product=network, facility=TNS
    TNS-00515: Message 515 not found; No message file for product=network, facility=TNS
    Solaris Error: 2: No such file or directory
    root@zngds1gk #

    Bingo.... I got it.
    Thanks for your hint about the ./.profile. I was setting env variables in .cshrc file and my default shell for "oracle" user was sh.
    Then I changed the default shell for oracle user to csh and viola..... it works.
    root@zngds1gk # su - oracle
    $ id
    uid=100(oracle) gid=101(dba)
    $ setenv
    HOME=/space/oracle
    PATH=/space/oracle/app/oracle/product/10.2.0/Db_2/bin:/usr/bin:
    LOGNAME=oracle
    HZ=100
    TERM=xterm
    SHELL=/bin/sh
    $ exit
    root@zngds1gk # usermod -u 100 -s /bin/csh oracle
    root@zngds1gk # su - oracle
    zngds1gk%
    zngds1gk% setenv
    HOME=/space/oracle
    PATH=/space/oracle/app/oracle/product/10.2.0/Db_2/bin:/usr/bin:
    LOGNAME=oracle
    HZ=100
    TERM=xterm
    SHELL=/bin/csh
    zngds1gk% cat .cshrc
    umask 022
    setenv ORACLE_BASE /space/oracle/app/oracle
    setenv ORACLE_SID adm
    setenv DISPLAY 47.102.212.108:0.0
    setenv ORACLE_HOME /space/oracle/app/oracle/product/10.2.0/Db_2
    setenv PATH /space/oracle/app/oracle/product/10.2.0/Db_2/bin:$PATH
    And now it works...
    Thanks.
    ~Jayant

  • Reg : I am getting an error while Using MicroSoft ODBC For Oracle Driver

    I am Using MicroSoft ODBC For Oracle Driver  for JDBC. Why i am using this driver is i could not able to get  the arabic content if i use the other driver  .I Right now i cannot change the NLS Lang because its a production server    also it has around 300 gb of data  and i can not take risk now by changing the NLS lang.. coming to the below error .i could able to access my data up to 4 Hours after that i am getting this error.If i restart my tomcat i can use my application  one more 4 hrs  .Please get back to me if u have any solution.Its very very helpful to me......+*
    [java.sql.SQLException] [ Microsoft ODBC for Oracle ]
    at sun.jdbc.odbc.JdbcOdbc.createSQLException(JdbcOdbc.java:6957)
    at sun.jdbc.odbc.JdbcOdbc.standardError(JdbcOdbc.java:7114)
    at sun.jdbc.odbc.JdbcOdbc.SQLDriverConnect(JdbcOdbc.java:3073)
    at sun.jdbc.odbc.JdbcOdbcConnection.initialize(JdbcOdbcConnection.java:3
    23)
    at sun.jdbc.odbc.JdbcOdbcDriver.connect(JdbcOdbcDriver.java:174)
    at java.sql.DriverManager.getConnection(DriverManager.java:582)
    at java.sql.DriverManager.getConnection(DriverManager.java:185)
    at com.iton.eoffice.DatabaseBean.connecteOfficeMoEnq(DatabaseBean.java:4
    60)
    at org.apache.jsp.MhewProfilesearchMoEnq_jsp._jspService(MhewProfilesear
    chMoEnq_jsp.java:434)
    at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:98)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
    at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper
    .java:384)
    at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:3
    20)
    at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:266)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl
    icationFilterChain.java:290)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF
    ilterChain.java:206)
    at com.iton.eoffice.tree.CharacterEncodingFilter.doFilter(CharacterEncod
    ingFilter.java:63)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl
    icationFilterChain.java:235)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF
    ilterChain.java:206)
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperV
    alve.java:228)
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextV
    alve.java:175)
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.j
    ava:128)
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.j
    ava:104)
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineVal
    ve.java:109)
    at org.apache.catalina.ha.tcp.ReplicationValve.invoke(ReplicationValve.j
    ava:347)
    at org.apache.catalina.ha.session.JvmRouteBinderValve.invoke(JvmRouteBin
    derValve.java:209)
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.jav
    a:212)
    at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java
    :844)
    at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.proce
    ss(Http11Protocol.java:634)
    at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:44
    5)
    at java.lang.Thread.run(Thread.java:619)
    ------------1234-----------
    java.lang.NullPointerException
    at com.iton.eoffice.DatabaseBean.getSQLRows(DatabaseBean.java:764)
    at org.apache.jsp.MhewProfilesearchMoEnq_jsp._jspService(MhewProfilesear
    chMoEnq_jsp.java:435)
    at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:98)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
    at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper
    .java:384)
    at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:3
    20)
    at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:266)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl
    icationFilterChain.java:290)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF
    ilterChain.java:206)
    at com.iton.eoffice.tree.CharacterEncodingFilter.doFilter(CharacterEncod
    ingFilter.java:63)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl

    <BLOCKQUOTE><font size="1" face="Verdana, Arial, Helvetica">quote:</font><HR>Originally posted by sreenivas navuluri:
    Oracle(tm)Client and networking components not found. These components are supplied by Oracle Corporation and part of Oracle Version 7.2 or greater Client software installation. You will be unable to use this driver until these components have been installed . This error occurs while selecting the Microsoft Odbc for Oracle driver from the ODBC in control panel. Pls suggest<HR></BLOCKQUOTE>
    null

  • Download link or patch number for Oracle 10.2.0.1 on Windows 2008 R2-64-bit

    Hello Guys,
    These days i cant find a link in Technology Network to download Oracle 10g for Windows Server 2008 R2-64 bit. please help me with this as i am in need of 64-bit software.
    Thank U

    10g is out of support now .. If you need it go to MOS Site and Open SR

  • Getting backup using "backint for Oracle" to work

    Hi
    We are trying to get the backups to work on MaxDB 7.6 using the backint for Oracle interface.
    I have created an environment/config file and set the variable NSR_ENV.  The contents of this file is as follows:
    NSR_HOST           cmsapapp01.csenergy.com.au
    NSR_HOME           "C:\Program Files (x86)\Legato\nsr\bin"
    NSR_POOL           SAPData
    NSR_EXPIRE         year
    NSR_EBIDTYPE        NSAVETIME
    NSR_USEOUTPUT        SAVE
    I have created a backup media with the following options:
    Backup Type:  Full Backup
    Device Type:  PIPE
    Backup Tool:  NSR
    Device File:  c:\temp\file.pipe0
    When I run this, I get the following error:
    Begin of error output of NetWorker (C:\WINDOWS\TEMP\temp1204089773-1)----
            save: VSS Enabler is requested from NetWorker License Manager.
            save: c:\temp\file.pipe0: No such file or directory
    Am I doing something wrong...
    OS is Windows 2003.
    Thanks
    Doug

    Hello Doug,
    on Windows the pipe syntax is as follows:
    .\pipe\<pipename>
    HTH,
    Melanie

  • How to install and where to get kernal source for Oracle VM Server

    Hi guys
    Can someone point me in the right direction for oracle VM Server kernal source, as the server I am using won't ping, and found its cause it doesnt recognise the network adapter, says there is no drivers.
    But the HP website states I have to have the kernal source install so that I can build the driver.
    Any suggestions or help on the matter?
    Thanks

    Thanks
    I got my server to ping.
    Now I have ran into more trouble.
    I have been following ORacles installation guide for installing a Virtual Machine, but am struggling to install it, as their instructions don't match whats on the screen.
    They tell you to copy each CD into a directory.....
    and then mount that directory as an NFS mount.
    I done all that
    and then it tells u to do virt-install
    So I do that, and it all works great, until the end part, its mean to ask you what is your installation souce directory , and your supposed to put nfs:selfhostname_ip_address:/path/to/files
    and away you go.
    However my server says " what would you like to use as your virtual CD image"
    and so I type nfs:server_ip_address:/path/to/files etc, and I get the error CD MUST EXIST
    so to get around this, I just typed /OVS/iso_pool/Disc1.img
    and away we go, instlalation starts....
    However THe instlalation then asks for disc 2, and then I get stuck, how do I tell it, that I changed the disc, and its ready?
    I tried an installation of mounting the disc1 iso from a cd to /mnt
    and then wen it wanted disc 2 I dont umount -l /mnt ...it said inodes busy, so I just forced the eject CD physically ont he drive
    and then mount /dev/cdrom /mnt , for disc3
    but it didn't detect I changed a cd.
    Can anyone help me, its really urgent have to get this server up and running by today if possible.

  • Gig Ethernet V/S  SCI as Cluster Private Interconnect for Oracle RAC

    Hello Gurus
    Can any one pls confirm if it's possible to configure 2 or more Gigabit Ethernet interconnects ( Sun Cluster 3.1 Private Interconnects) on a E6900 cluster ?
    It's for a High Availability requirement of Oracle 9i RAC. i need to know ,
    1) can i use gigabit ethernet as Private cluster interconnect for Deploying Oracle RAC on E6900 ?
    2) What is the recommended Private Cluster Interconnect for Oracle RAC ? GiG ethernet or SCI with RSM ?
    3) How about the scenarios where one can have say 3 X Gig Ethernet V/S 2 X SCI , as their cluster's Private Interconnects ?
    4) How the Interconnect traffic gets distributed amongest the multiple GigaBit ethernet Interconnects ( For oracle RAC) , & is anything required to be done at oracle Rac Level to enable Oracle to recognise that there are multiple interconnect cards it needs to start utilizing all of the GigaBit ethernet Interfaces for transfering packets ?
    5) what would happen to Oracle RAC if one of the Gigabit ethernet private interconnects fails
    Have tried searching for this info but could not locate any doc that can precisely clarify these doubts that i have .........
    thanks for the patience
    Regards,
    Nilesh

    Answers inline...
    Tim
    Can any one pls confirm if it's possible to configure
    2 or more Gigabit Ethernet interconnects ( Sun
    Cluster 3.1 Private Interconnects) on a E6900
    cluster ?Yes, absolutely. You can configure up to 6 NICs for the private networks. Traffic is automatically striped across them if you specify clprivnet0 to Oracle RAC (9i or 10g). That is TCP connections and UDP messages.
    It's for a High Availability requirement of Oracle
    9i RAC. i need to know ,
    1) can i use gigabit ethernet as Private cluster
    interconnect for Deploying Oracle RAC on E6900 ? Yes, definitely.
    2) What is the recommended Private Cluster
    Interconnect for Oracle RAC ? GiG ethernet or SCI
    with RSM ? SCI is or is in the process of being EOL'ed. Gigabit is usually sufficient. Longer term you may want to consider Infiniband or 10 Gigabit ethernet with RDS.
    3) How about the scenarios where one can have say 3 X
    Gig Ethernet V/S 2 X SCI , as their cluster's
    Private Interconnects ? I would still go for 3 x GbE because it is usually cheaper and will probably work just as well. The latency and bandwidth differences are often masked by the performance of the software higher up the stack. In short, unless you tuned the heck out of your application and just about everything else, don't worry too much about the difference between GbE and SCI.
    4) How the Interconnect traffic gets distributed
    amongest the multiple GigaBit ethernet Interconnects
    ( For oracle RAC) , & is anything required to be done
    at oracle Rac Level to enable Oracle to recognise
    that there are multiple interconnect cards it needs
    to start utilizing all of the GigaBit ethernet
    Interfaces for transfering packets ?You don't need to do anything at the Oracle level. That's the beauty of using Oracle RAC with Sun Cluster as opposed to RAC on its own. The striping takes place automatically and transparently behind the scenes.
    5) what would happen to Oracle RAC if one of the
    Gigabit ethernet private interconnects fails It's completely transparent. Oracle will never see the failure.
    Have tried searching for this info but could not
    locate any doc that can precisely clarify these
    doubts that i have .........This is all covered in a paper that I have just completed and should be published after Christmas. Unfortunately, I cannot give out the paper yet.
    thanks for the patience
    Regards,
    Nilesh

  • Copper cable / GigE Copper Interface as Private Interconnect for Oracle RAC

    Hello Gurus
    Can some one confirm if the copper Cables ( Cat5/RJ45) can be used for Gig Ethernet i.e. Private interconnects for deploying Oracle RAC 9.x or 10gR2 on Solaris 9/10 .
    i am planning to use 2 X GigE Interfaces (one port each from X4445 Quad Port Ethernet Adapters) & Planning to connect it using copper cables ( all the documents that i came across is been refering to the fiber cables for Private Interconnects , connecting GigE Interfaces , so i am getting bit confused )
    would appretiate if some one can throw some lights on the same.
    regards,
    Nilesh Naik
    thanks

    Cat5/RJ45 can be used for Gig Ethernet Private interconnects for Oracle RAC. I would recommend trunking the two or more interconnects for redundancy. The X4445 adapters are compatible with the Sun Trunking 1.3 software (http://www.sun.com/products/networking/ethernet/suntrunking/). If you have servers that support the Nemo framework (bge, e1000g, xge, nge, rge, ixgb), you can use the Solaris 10 trunking software, dladmin.
    We have a couple of SUN T2000 servers and are using the onboard GigE ports for the Oracle 10gR2 RAC interconnects. We upgraded the onboard NIC drivers to the e1000g and used the Solaris 10 trunking software. The next update of Solaris will have the e1000g drivers as the default for the SUN T2000 servers.

  • Driver for oracle enterpririse user

    does creating a connection pool in weblogic for oracle enterprise user needs any special driver? ,
    I can create connection pool for any normal user but if it is enterprise user connection to database is denied , what care should I take for an enterprise user ,
    as for my database knowlwdge I donot know the difference between normal user and enterprise user , why enterprise user connection id different ?

    That's an awfully old Oracle version - unless your company is paying out their rear-end, I doubt Oracle supports it at all. Even Oracle Technology Network only goes back as far as Oracle 8i (AKA 8.1).
    I doubt you'll be able to find such an old driver and if you do, I'd wonder about how well it might work with any recent (last several years) JVM.
    Why are you stuck with such an old version?

  • Hardening Linux for Oracle 10g

    I have been working on creating a bare-bones RHEL 5 installation which will act as an Oracle 10g database server. For hardening Linux, I have restricted to a bare minimum of packages to make it more secure. This installation did not have X-Windows, Gnome/KDE and a host of other services that will not be required on Production servers. I selected only the BASE installation which was further customized to include just the following (there is scope to trim this further, so feedback is welcome):
    NetworkManager
    readahead
    smartmontools
    yum-updatesd
    irqbalance
    acpid
    crash
    cryptsetup-luks
    dos2unix
    dump
    finger
    gnugpg
    ksh
    libaio
    logwatch
    m2crypto
    man-pages
    mdadm
    nano
    numactl
    openssh-clients
    openssh-servers
    pam_ccreds
    pam_krb5
    pam_passwdqc
    sendmail
    setuptools
    stunnel
    sudo
    symlinks
    system-config-network
    tree
    unix2dos
    unzip
    vconfig
    wget
    which
    yum
    yum-rhn-plugin
    yum-security
    zip
    Since I do not intend to use nfs, nis, samba – associated packages were not included. Further hardening was achieved by deleting non-required services (kudzu, avahi, gpm, atd, netfs, ip6tables).
    The challenge comes when I begin setting up Oracle 10g using the oracle validated rpm method. In an attempt to resolve dependencies, YUM ends up installing 70 packages that do not apparently seem to have anything to do with an RDBMS (sound libraries, Gnome, X libraries and tools etc.). For me the libraries/binaries required for linking appear to be justified but the rest appear to be installed only for the Installer.
    This package addition also ends up installing gamin which provides the gam_server which has bugs in it that lead to > 90% CPU consumption.
    I further tried erasing some of the packages to see if anything broke. Till now nothing is broken and the database is running fine. Till now I have removed:
    gamin
    gamin-python
    gnome-mount
    gnome-vfs2
    libbonoboui
    libgnome
    libgnomeui
    oracle-validated
    yum-updatesd
    esound
    hicolor-icon-theme
    GConf2
    gnome-keyring
    gtk2
    libglade2
    libgnomecanvas
    libnotify
    libwnck
    notification-daemon
    audiofile
    cups-libs
    gnome-mime-data
    cairo
    pango
    My questions:
    • How have you created a production/hardened Linux based Oracle installation?
    • Can you share your experiences in hardening Linux for Oracle and deploying the Oracle 10g RDBMS without installing the scores of packages which themselves might compromise the server?
    • What exactly is the dependency for the Oracle 10g RDBMS on X11, Gnome, Gamin and graphic libraries such as Cairo and Pango (to name a few)?
    • Which Linux system services are really mandatory for Oracle?
    • Does a non-default secure installation compromise Oracle support?
    The current memory footprint for this setup (without any workload) is (figures in MB):
    total used free shared buffers cached
    Mem: 1010 458 552 0 19 377
    -/+ buffers/cache: 61 949
    Swap: 2047 0 2047
    …of this 290 MB belongs to Oracle ☺
    I will be working with the other route – without using the oracle-validated rpm.
    Please let me have your feedback.
    BR
    Aniruddha

    Hi,
    I'll paste the rpm -qa of a RHEL5 server I have installed through rpm -ivh (not yum at all)
    aspell-0.60.3-7.1
    aspell-en-6.0-2.1
    aspell-es-0.50-13.2.2
    at-3.1.8-82.fc6
    atk-1.12.2-1.fc6
    audit-libs-1.7.13-2.el5
    audit-libs-1.7.13-2.el5
    audit-libs-python-1.7.13-2.el5
    authconfig-5.3.21-6.el5
    avahi-0.6.16-6.el5
    avahi-compat-libdns_sd-0.6.16-6.el5
    basesystem-8.0-5.1.1
    bash-3.2-24.el5
    bc-1.06-21
    binutils-2.17.50.0.6-12.el5
    bitmap-fonts-0.3-5.1.1
    bitstream-vera-fonts-1.10-7
    bzip2-1.0.3-4.el5_2
    bzip2-libs-1.0.3-4.el5_2
    cairo-1.2.4-5.el5
    checkpolicy-1.33.1-4.el5
    chkconfig-1.3.30.1-2
    compat-libstdc++-33-3.2.3-61
    compat-libstdc++-33-3.2.3-61
    coreutils-5.97-23.el5
    cpio-2.6-23.el5
    cpp-4.1.2-46.el5
    cracklib-2.8.9-3.3
    cracklib-dicts-2.8.9-3.3
    crontabs-1.10-8
    cryptsetup-luks-1.0.3-5.el5
    cups-1.3.7-11.el5
    cups-libs-1.3.7-11.el5
    cyrus-sasl-2.1.22-5.el5
    cyrus-sasl-lib-2.1.22-5.el5
    db4-4.3.29-10.el5
    db4-4.3.29-10.el5
    dbus-1.1.2-12.el5
    dbus-glib-0.73-8.el5
    dbus-libs-1.1.2-12.el5
    dbus-python-0.70-7.el5
    Deployment_Guide-en-US-5.2-11
    Deployment_Guide-es-ES-5.2-11
    desktop-file-utils-0.10-7
    device-mapper-1.02.32-1.el5
    device-mapper-1.02.32-1.el5
    device-mapper-event-1.02.32-1.el5
    device-mapper-multipath-0.4.7-30.el5
    diffutils-2.8.1-15.2.3.el5
    dmidecode-2.9-1.el5
    dmraid-1.0.0.rc13-53.el5
    dmraid-events-1.0.0.rc13-53.el5
    e2fsprogs-1.39-23.el5
    e2fsprogs-devel-1.39-23.el5
    e2fsprogs-devel-1.39-23.el5
    e2fsprogs-libs-1.39-23.el5
    e2fsprogs-libs-1.39-23.el5
    ed-0.2-39.el5_2
    eject-2.1.5-4.2.el5
    elfutils-0.137-3.el5
    elfutils-libelf-0.137-3.el5
    elfutils-libelf-devel-0.137-3.el5
    elfutils-libelf-devel-static-0.137-3.el5
    elfutils-libs-0.137-3.el5
    ethtool-6-3.el5
    expat-1.95.8-8.2.1
    file-4.17-15.el5_3.1
    filesystem-2.4.0-2
    findutils-4.2.27-6.el5
    fipscheck-1.2.0-1.el5
    fipscheck-lib-1.2.0-1.el5
    fontconfig-2.4.1-7.el5
    freetype-2.2.1-21.el5_3
    freetype-2.2.1-21.el5_3
    gawk-3.1.5-14.el5
    gcc-4.1.2-46.el5
    gcc-c++-4.1.2-46.el5
    gdbm-1.8.0-26.2.1
    gettext-0.14.6-4.el5
    glib2-2.12.3-4.el5_3.1
    glib2-2.12.3-4.el5_3.1
    glib2-devel-2.12.3-4.el5_3.1
    glib2-devel-2.12.3-4.el5_3.1
    glibc-2.5-42
    glibc-2.5-42
    glibc-common-2.5-42
    glibc-devel-2.5-42
    glibc-devel-2.5-42
    glibc-headers-2.5-42
    gnutls-1.4.1-3.el5_2.1
    grep-2.5.1-55.el5
    groff-1.18.1.1-11.1
    grub-0.97-13.5
    gtk2-2.10.4-20.el5
    gzip-1.3.5-10.el5
    hal-0.5.8.1-52.el5
    hdparm-6.6-2
    hesiod-3.1.0-8
    hicolor-icon-theme-0.9-2.1
    hmaccalc-0.9.6-1.el5
    htmlview-4.0.0-2.el5
    hwdata-0.213.16-1.el5
    info-4.8-14.el5
    initscripts-8.45.30-2.el5
    iproute-2.6.18-10.el5
    iptables-1.3.5-5.3.el5
    iptables-ipv6-1.3.5-5.3.el5
    iputils-20020927-46.el5
    kbd-1.12-21.el5
    kernel-2.6.18-164.el5
    kernel-headers-2.6.18-164.el5
    keyutils-libs-1.2-1.el5
    kpartx-0.4.7-30.el5
    krb5-libs-1.6.1-36.el5
    ksh-20080202-2.el5
    kudzu-1.2.57.1.21-1
    less-394-6.el5
    libacl-2.2.39-3.el5
    libaio-0.3.106-3.2
    libaio-0.3.106-3.2
    libaio-devel-0.3.106-3.2
    libattr-2.4.32-1.1
    libcap-1.10-26
    libdaemon-0.10-5.el5
    libdmx-1.0.2-3.1
    libdrm-2.0.2-1.1
    libgcc-4.1.2-46.el5
    libgcc-4.1.2-46.el5
    libgcrypt-1.4.4-5.el5
    libgomp-4.4.0-6.el5
    libgomp-4.4.0-6.el5
    libgpg-error-1.4-2
    libhugetlbfs-1.3-3.el5
    libhugetlbfs-1.3-3.el5
    libICE-1.0.1-2.1
    libICE-1.0.1-2.1
    libjpeg-6b-37
    libpng-1.2.10-7.1.el5_3.2
    libselinux-1.33.4-5.5.el5
    libselinux-1.33.4-5.5.el5
    libselinux-python-1.33.4-5.5.el5
    libselinux-utils-1.33.4-5.5.el5
    libsemanage-1.9.1-4.4.el5
    libsepol-1.15.2-2.el5
    libsepol-1.15.2-2.el5
    libSM-1.0.1-3.1
    libSM-1.0.1-3.1
    libstdc++-4.1.2-46.el5
    libstdc++-4.1.2-46.el5
    libstdc++-devel-4.1.2-46.el5
    libstdc++-devel-4.1.2-46.el5
    libsysfs-2.0.0-6
    libtermcap-2.0.8-46.1
    libtermcap-2.0.8-46.1
    libtiff-3.8.2-7.el5_3.4
    libusb-0.1.12-5.1
    libuser-0.54.7-2.el5.5
    libvolume_id-095-14.21.el5
    libvolume_id-095-14.21.el5
    libX11-1.0.3-11.el5
    libX11-1.0.3-11.el5
    libXau-1.0.1-3.1
    libXau-1.0.1-3.1
    libXau-devel-1.0.1-3.1
    libXaw-1.0.2-8.1
    libXcursor-1.1.7-1.1
    libXdmcp-1.0.1-2.1
    libXdmcp-1.0.1-2.1
    libXext-1.0.1-2.1
    libXext-1.0.1-2.1
    libXfixes-4.0.1-2.1
    libXft-2.1.10-1.1
    libXi-1.0.1-3.1
    libXinerama-1.0.1-2.1
    libxml2-2.6.26-2.1.2.8
    libxml2-python-2.6.26-2.1.2.8
    libXmu-1.0.2-5
    libXp-1.0.0-8.1.el5
    libXp-1.0.0-8.1.el5
    libXp-devel-1.0.0-8.1.el5
    libXpm-3.5.5-3
    libXrandr-1.1.1-3.1
    libXrender-0.9.1-3.1
    libXt-1.0.2-3.1.fc6
    libXt-1.0.2-3.1.fc6
    libXtst-1.0.1-3.1
    libXtst-1.0.1-3.1
    libXv-1.0.1-4.1
    libXxf86dga-1.0.1-3.1
    libXxf86misc-1.0.1-3.1
    libXxf86vm-1.0.1-3.1
    lm_sensors-2.10.7-4.el5
    logrotate-3.7.4-9
    lsscsi-0.17-3.el5
    lvm2-2.02.46-8.el5
    m4-1.4.5-3.el5.1
    mailx-8.1.1-44.2.2
    make-3.81-3.el5
    MAKEDEV-3.23-1.2
    man-1.6d-1.1
    man-pages-es-1.28-10.1.1
    mcstrans-0.2.11-3.el5
    mesa-libGL-6.5.1-7.7.el5
    microcode_ctl-1.17-1.48.el5
    mingetty-1.07-5.2.2
    mkinitrd-5.1.19.6-54
    mkinitrd-5.1.19.6-54
    mktemp-1.5-23.2.2
    module-init-tools-3.3-0.pre3.1.54.el5
    nano-1.3.12-1.1
    nash-5.1.19.6-54
    ncurses-5.5-24.20060715
    net-tools-1.60-78.el5
    newt-0.52.2-12.el5
    nspr-4.7.4-1.el5_3.1
    nspr-4.7.4-1.el5_3.1
    nss-3.12.3.99.3-1.el5_3.2
    nss-3.12.3.99.3-1.el5_3.2
    ntp-4.2.2p1-9.el5_3.2
    ocfs2-2.6.18-164.el5-1.4.2-1.el5
    ocfs2console-1.4.2-1.el5
    ocfs2-tools-1.4.2-1.el5
    ocfs2-tools-devel-1.4.2-1.el5
    openldap-2.3.43-3.el5
    openssh-4.3p2-36.el5
    openssh-clients-4.3p2-36.el5
    openssh-server-4.3p2-36.el5
    openssl-0.9.8e-12.el5
    oracleasm-2.6.18-164.el5-2.0.5-1.el5
    oracleasmlib-2.0.4-1.el5
    oracleasm-support-2.1.3-1.el5
    pam-0.99.6.2-6.el5
    pango-1.14.9-6.el5
    paps-0.6.6-18.el5
    passwd-0.73-1
    patch-2.5.4-29.2.3.el5
    pax-3.4-1.2.2
    pciutils-2.2.3-7.el5
    pcre-6.6-2.el5_1.7
    perl-5.8.8-27.el5
    pkgconfig-0.21-2.el5
    pm-utils-0.99.3-10.el5
    policycoreutils-1.33.12-14.6.el5
    popt-1.10.2.3-18.el5
    prelink-0.4.0-2.el5
    procmail-3.22-17.1
    procps-3.2.7-11.1.el5
    psmisc-22.2-7
    pycairo-1.2.0-1.1
    pygobject2-2.12.1-5.el5
    pygtk2-2.10.1-12.el5
    python-2.4.3-27.el5
    python-numeric-23.7-2.2.2
    readline-5.1-3.el5
    readline-5.1-3.el5
    redhat-logos-4.9.16-1
    redhat-lsb-3.1-12.3.EL
    redhat-menus-6.7.8-3.el5
    redhat-release-5Server-5.4.0.3
    redhat-release-notes-5Server-29
    rhpl-0.194.1-1
    rootfiles-8.1-1.1.1
    rpm-4.4.2.3-18.el5
    rpm-libs-4.4.2.3-18.el5
    rsh-0.17-38.el5
    rsync-2.6.8-3.1
    sed-4.1.5-5.fc6
    selinux-policy-2.4.6-255.el5
    selinux-policy-targeted-2.4.6-255.el5
    sendmail-8.13.8-2.el5
    setools-3.0-3.el5
    setserial-2.17-19.2.2
    setup-2.5.58-7.el5
    sgpio-1.2.0_10-2.el5
    shadow-utils-4.0.17-14.el5
    slang-2.0.6-4.el5
    smartmontools-5.38-2.el5
    sqlite-3.3.6-5
    sysfsutils-2.0.0-6
    sysklogd-1.4.1-44.el5
    sysstat-7.0.2-3.el5
    system-config-securitylevel-tui-1.6.29.1-2.1.el5
    SysVinit-2.86-15.el5
    tar-1.15.1-23.0.1.el5
    tcl-8.4.13-4.el5
    tcl-8.4.13-4.el5
    tcp_wrappers-7.6-40.7.el5
    tcp_wrappers-7.6-40.7.el5
    telnet-0.17-39.el5
    termcap-5.5-1.20060701.1
    time-1.7-27.2.2
    tmpwatch-2.9.7-1.1.el5.2
    tzdata-2009k-1.el5
    udev-095-14.21.el5
    udftools-1.0.0b3-0.1.el5
    unzip-5.52-3.el5
    usermode-1.88-3.el5.2
    util-linux-2.13-0.52.el5
    vim-common-7.0.109-6.el5
    vim-minimal-7.0.109-6.el5
    vixie-cron-4.1-76.el5
    vte-0.14.0-2.el5
    which-2.16-7
    wireless-tools-28-2.el5
    xorg-x11-filesystem-7.1-2.fc6
    xorg-x11-utils-7.1-2.fc6
    xorg-x11-xauth-1.0.1-2.1
    zabbix-agent-1.4.6-1.el5
    zip-2.31-2.el5
    zlib-1.2.3-3
    Hope to help,
    Mario Alcaide

Maybe you are looking for

  • Layouts in reports6i

    how many types of layouts are available in reports6i? what r they? In which sequence form level trigger will fire? In which sequence report level trigger will fire?

  • My new 160gb ipod classic missing compilation uncheck option in settings

    Help just bought a 160GB classic,(i previously had a 60GB classic)my old ipod had an option to uncheck/check compilation in settings>compilations (just under the EQ option) my new ipod does not have this option although the manual and help forums see

  • External Hard Drive- switching from Mac to PC?

    I have an External Hard Drive that I purchased and have been using on my Powerbook G4. If I plug it into a PC, will it lose all my data or screw something up, or is that transition safe? I never formatted the EHD manually like someone suggested, it d

  • Supply Chain Cost Rollup

    Does the Supply chain cost rollup only use sourcing rules and BODs in an assignment set? Would source org on mtl_system_items override source in a global sourcing rule?

  • How to pass a Java arraylist as a parameter to a StoredProcedureCall

    I need to invoke a stored procedurecall which takes in a collection parameter represented as a nested table. I need to pass a java ArrayList object to it. How can I pass this parameter to the stored procedure using StoredProcedureCall class.