Seemingly undeclared cursor in Oracle seeded package

Hi,
I am hoping somebody can help me, we are having an issue with the function:
APPS.pqp_gb_osp_functions.get_abs_plan_ent_days_info
There is a cursor in this function that returns the absence days, but I cannot find where this cursor is declared, can somebody please help me?
The cursor is:
-- Open the Cursor to get total number of Entitled days for the qualifier.
OPEN csr_entitled_days(
p_absence_attendance_id => p_absence_attendance_id
,p_pl_id => p_pl_id
,p_search_start_date => p_search_start_date
,p_search_end_date => p_search_end_date
,p_level_of_entitlement => p_level_of_entitlement
FETCH csr_entitled_days INTO l_csr_entitled_days_rec ;
-----Added For Hours --l_no_of_days;
CLOSE csr_entitled_days;
It is putting the cursor into the the below ROWTYPE variable:
l_csr_entitled_days_rec csr_entitled_days%ROWTYPE ;-----Added For Hours
Many Thanks
Martin

Please ignore the above post, I was being stupid. I've found it, it is a global cursor and is defined in the package header not the individual function.
Sorry
Martin

Similar Messages

  • Viewer leaving open cursors in Oracle

    We are using the JRC to display reports in our software. We are running jboss-4.2.0 as our application server. The backend could be either SQL Server or Oracle. For Oracle we are using the oracle.jdbc.driver.OracleDriver driver. The reports are set up using a JDBC (JNDI) connection. Generally we have it working ok but in Oracle the JRC is leaving open cursors leading to  ORA-01000: MAXIMUM OPEN CURSORS EXCEEDED. I have found that a new cursor is opened when the data source is changed in the following code snippet
    Iterator tableIT = tableNames.iterator();
    while (tableIT.hasNext()) {
      ITable oldTable = (ITable)tableIT.next();
      ITable table = (ITable) ((IClone)oldTable).clone(true);
      table.setQualifiedName(table.getName());
      clientDoc.getDatabaseController().setTableLocation(oldTable, table);
    When we hit the last line in this loop, a new cursor is opened in Oracle so if a report has 10 tables, I get 10 cursors opened. I know that I need to close the cursors somehow but nothing I do seems to make a difference. After my processHttpRequest call to the viewer I added:
    crystalReportPageViewer.getReportSource().dispose();
    clientDoc.getReportSource().dispose();
    The code definately executes but the the number of open cursors in Oracle does not change. I am at a loss.

    A couple more things to think about then.
    1.  When you go through your loop to set your table location, you are using the clone method to create a new table and then pass that table to the report.  Cloning tables is no longer necessary with the JRC.  We do know that a fix was provided for the JRC SDK, however this fix would probably not have been applied to the clone method since it has been deprecated.
    I have attached a sample that shows the new methodology for setting table location; very similar, just not using clone anymore.
    2.  When you want to destroy any connections that the ReportClientDocument has made, you will need to call .close() on this object.  This can be done in conjunction with the viewer.dispose().  One thing to note is that if you call the .close() method, it will need to be done as the user is closing the browser, or you will not have access to your report object when you have it open in the HTML Viewer.

  • Cursors in Oracle 10g XE stored procedures

    I want to use a cursor in a stored procedure. I saw many examples on the net but none of them seem to work in Oracle 10g Express Edition.
    I am new to Oracle and any solution relevant to Oracle 10g XE is highly appreciated.
    Yosief Kesete

    Dear user!
    Simple error. Try that:
    CREATE OR REPLACE PROCEDURE "employeesgetlist
      p_FIRST_NAME IN VARCHAR2,
      returnValue OUT SYS_REFCURSOR
    IS
      p_EMPLOYEE_ID NUMBER;
      CURSOR C1 IS
      SELECT employee_id
      FROM employees
      WHERE first_name = p_FIRST_NAME;
    BEGIN
      BEGIN
        -- OPEN A PREVIOUSLY DECLARED CURSOR
        OPEN C1;
        LOOP
          FETCH C1 INTO p_EMPLOYEE_ID;
          EXIT WHEN C1%NOTFOUND;
        END LOOP;
         -- CLOSE THE CURSOR
        CLOSE C1;
      END;
      OPEN returnValue FOR
      SELECT * FROM employees
      WHERE employee_id = p_EMPLOYEE_ID;
    END;
    {code}
    Yours sincerely
    Florian W.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Oracle DBMS_RAND package install on NT

    How do you install the Oracle DBMS_RAND package on NT. Oracle 8i is installed on and NT box and I'm not familiar with the tools in this environment. Like - is there such a thing as svrmgrl? If there is then how do I get there on a Windows NT box?
    Thanks for any input
    JR Myint

    I hope you are looking for the package DBMS_RANDOM (and not DBMS_RAND). It should already be installed. If you
    do not see this package installed then you can run ${ORACLE_HOME}/rdbms/admin/dbmsrand.sql script to create
    this package (you must run this script under user SYS).
    Oracle8i should have SVRMGRL (Oracle Server Manager) installed (file SVRMGRL.EXE). You can go to DOS window and
    type SVRMGRL at the DOS prompt to get Server Manager.
    SQL> desc dbms_random
    PROCEDURE INITIALIZE
    Argument Name                  Type                    In/Out Default?
    VAL                            BINARY_INTEGER          IN
    FUNCTION NORMAL RETURNS NUMBER
    FUNCTION RANDOM RETURNS BINARY_INTEGER
    PROCEDURE SEED
    Argument Name                  Type                    In/Out Default?
    VAL                            BINARY_INTEGER          IN
    PROCEDURE SEED
    Argument Name                  Type                    In/Out Default?
    VAL                            VARCHAR2                IN
    FUNCTION STRING RETURNS VARCHAR2
    Argument Name                  Type                    In/Out Default?
    OPT                            CHAR                    IN
    LEN                            NUMBER                  IN
    PROCEDURE TERMINATE
    FUNCTION VALUE RETURNS NUMBER
    FUNCTION VALUE RETURNS NUMBER
    Argument Name                  Type                    In/Out Default?
    LOW                            NUMBER                  IN
    HIGH                           NUMBER                  IN
    SQL>

  • Oracle Seeded Providers Shared Objects Folder Portlet

    Hi,
    I was wondering if there was an api, or some other way of setting the folder that will be displayed in the Folder portlet in the Oracle Seeded Providers: Share Objects area.
    Thanks,
    Tom

    I was able to find the API for this. I was able to use the wwpre_api_value API. I have two issues still. The first is with setting the value for titleid though the API.
    The second is when I login as the user I'm testing, there is nothing in the folder portlet. If I click on the customize link, the folder I try to set with the API is in the pop-up window. So it seems like I'm setting almost everything correctly since it is seeing what I set in the pop-up window, but I'm missing something because it's not making it all the way to the portlet.
    Any ideas would be great.
    Thanks,
    Tom

  • To use Entity Bean or Oracle stored Package?

    Currently, in my project, Weblogic8.1 and Oracle is used, but lots of business logic is implemented using Oracle stored Packages, many of these packages have a package level readonly lookup table(like index-by table or nested table), which is populated with data from database, once the package is called, and is accessed very often in subsequent calls of stored procedures.
    Since, in Weblogic server, a connection pool is maintained, and those package level lookup tables would be stored as session data in oracle PGA, I'm afraid this might cause oracle database server to be overloaded.
    to fully take advantage of middleware cache service that weblogic provide, should I move those business logic out of oracle and implement them using like read only entity bean?
    any help appreciated!

    Its very hard to say without knowing the usage patterns of the data. It sounds like you have a lot of read-only entities. These could be spread around a WLS cluster, therefore there is more scalability and performance with this option. However, I would not neccessarily rewrite business logic from SP into EJB just for middle-tier caching.
    If its a DB intensive app with lots of SQL, then if the calls are within SP's, there is only 1 call from WLS and the DBA ought o be able to tune the DB usin read-ahead and other DBA semantics. If there is locality of reference in the data, again, DB can use read-ahead better than WLS, although RO cache in middle is more scalable than DBMS.
    I wouldnt rewrite business logic from SP to EJB/Entity beans to take advantage of cache, especially if there is no locality of read-only reference to data. Oracle could do this better in my opinion, especially if SP's already exist
    Need for information on the usage patterns of the data - how is it CRUD'd.
    I would use-case the steel threads and put them under test load to see if the SP's really are an issue, since this is an architecture decision. What state is the project at? Live/Dev? Inception?

  • Cursor in ORACLE FORMS 10g/6i

    Dear All Seniors
    Please tell me with complete example about CURSORS in ORACLE 10g/ 6i.
    i.e
    -> declaration
    ->opening
    -> fetching
    -> close etc
    Shall be very thankfull to him.
    thanks in advance
    yassen

    Here is an example
    DECLARE
         /* cursor declaration */
         CURSOR C IS
         SELECT  EMP_MST.EMP_ID,EMP_MST.EMP_DESIG_ID,     
         EMP_MST.EMP_CODE, EMP_MST.EMP_NAME,
         DESIG_MST.DESIG_NAME,EMP_MST.EMP_MIN_DOLLAR,EMP_MST.EMP_GROSS_SAL,  EMP_MST.EMP_BASIC,
         EMP_MST.EMP_MOBILE_BILL,EMP_MST.EMP_TA,EMP_MST.EMP_FES_BONUS
         FROM EMP_MST, DEPT_MST,DESIG_MST
         WHERE NVL(EMP_MST.EMP_QUIT, 0) = 0
         AND EMP_MST.EMP_CID_ID=:GLOBAL.GUNIT_ID
         AND EMP_MST.EMP_DEPT_ID=:GLOBAL.GDEPT_ID
         AND EMP_MST.EMP_DEPT_ID=DEPT_MST.DEPT_ID
         AND EMP_MST.EMP_DESIG_ID=DESIG_MST.DESIG_ID
         AND EMP_MST.EMP_SAL_TYPE=1
         ORDER BY EMP_MST.EMP_CODE;
         ALT NUMBER;
         R C%ROWTYPE;
         N NUMBER;
         errnum NUMBER       := ERROR_CODE;
      V_COUNT NUMBER;
      SD_COUNT NUMBER;
         V_ADD_AMT NUMBER;
         V_ADD_DEDUCT NUMBER;
         V_SAL_ADD_AMT NUMBER;
    BEGIN     
         SELECT COUNT(SD_EMP_ID) INTO SD_COUNT
         FROM SALARY_DTL,SALARY_MST
         WHERE SALARY_DTL.SD_SM_ID=SALARY_MST.SM_ID
         AND SALARY_MST.SM_MONTH=:SALARY_MST.SM_MONTH;
    /*cursor open*/
         OPEN C;
         --=================
           IF errnum = 40508 THEN    
                ALT:=SHOW_ALERT('DUP_MYD');
                RAISE Form_Trigger_Failure;
           END IF;      
         --================     
              GO_BLOCK('SALARY_DTL');     
              IF SD_COUNT=0 THEN
              FIRST_RECORD;
              ELSE
                   LAST_RECORD;
                   NEXT_RECORD;
              END IF;
         LOOP
          FETCH C INTO R;               ----cursor fetch/read
          EXIT WHEN C%NOTFOUND;     
          :SALARY_DTL.SD_EMP_ID:=R.EMP_ID;         --- data assign...
          :SALARY_DTL.SD_DESIG_ID:=R.EMP_DESIG_ID;     
          :SALARY_DTL.TXT_EMP_CODE:=R.EMP_CODE;     
          :SALARY_DTL.TXT_NAME:=R.EMP_NAME;     
          :SALARY_DTL.TXT_DESIG:=R.DESIG_NAME;
          :SALARY_DTL.SD_OLD_GROSS_SAL:=R.EMP_GROSS_SAL;
          :SALARY_DTL.SD_GROSS_SAL:=ROUND(R.EMP_MIN_DOLLAR*:SALARY_MST.SM_DOLLAR_RATE);
    --      :SALARY_DTL.SD_ORG_BASIC:=R.EMP_BASIC;     
          :SALARY_DTL.SD_ORG_BASIC:=ROUND(:SALARY_DTL.SD_GROSS_SAL*60/100);
          :SALARY_DTL.SD_MOBILE_BILL:=R.EMP_MOBILE_BILL;     
          IF NVL(:SM_BONUS_MONTH,0) =1 THEN
               :SALARY_DTL.SD_FES_BONUS:=R.EMP_FES_BONUS;     
          ELSE
               :SALARY_DTL.SD_FES_BONUS:=NULL;
          END IF;
          NEXT_RECORD;     
         END LOOP;
         PREVIOUS_RECORD;
         CLOSE C;
    END;Hope this helps..

  • To_date function in cursor in oracle 8i

    Please tell me how to use to_date in cursor in oracle 8i. when i m using to_date in where clause in cursor it's giving error to_date function is out of scope.

    CURSOR C1 IS
    SELECT A.XO_NO,to_char(A.XO_DATE,'dd-mm-yyyy') XO_DATE,A.TO_CITY,A.FILE_CODE F_CODE,A.ARR_DATE,A.DEP_DATE,A.VCH_TYPE_CODE,
    A.VCH_NO,A.REMARKS,A.AMOUNT,A.COMP_CODE,to_char(A.SERVICE_DATE,'dd-mm-yyyy')SERVICE_DATE,
    B.AGENT_CODE,B.ROOM_TYP_CODE,
    (B.NO_OF_SINGLE+B.NO_OF_DOUBLE*2+B.NO_OF_EX_BED+B.NO_OF_TWIN*2) NO_OF_PAX,
    B.PER_SR SNGL_BED,B.PER_DR DOUBLE_BED,B.PER_EB TWIN,B.PER_DR EXTRA_BED,B.MEAL_PLAN,
    B.EXCH_RATE,A.FILE_CODE,C.COMP_NAME
    FROM XOS_MS A,QUOT_HOTEL_DS B,AC_COMPANY_MS C
    WHERE A.COMP_CODE=B.COMP_CODE
    AND A.XO_NO=B.XO_NO
              AND A.COMP_CODE=C.COMP_CODE
    AND TRUNC(A.XO_DATE)=TO_DATE('21/03/2005','DD/MM/YYYY');

  • Oracle Seeded Report Progress

    Hi,
    How can we find Oracle seeded report run progress? e.g Print Self Printed Payment Summary - PDF (Australia). Report runs for long hrs but does not report any progress in the log file.
    Cheers
    Ajit

    Hi,
    Please mention the application release along with the database version and OS.
    Has this ever worked? If yes, any changes have been done recently (i.e. applied any patches)?
    How can we find Oracle seeded report run progress? From the View > Requests (check for RUNNING concurrent requests). From the database, verify the status of the database sessions of this concurrent request and make sure you have no locks -- See (Note: 735119.1 - How to Find Database Session & Process Associated with a Concurrent Program Which is Currently Running).
    e.g Print Self Printed Payment Summary - PDF (Australia). Report runs for long hrs but does not report any progress in the log file. If possible, stop the request and make sure all the database sessions are killed, bounce the database and the CM and see if you can reproduce the issue. If you still encounter the same issue, then you may need to consider enabling trace/debug for this concurrent program.
    Regards,
    Hussein

  • Can i create any procedure or function inside a oracle reserve package?

    Hi!
    Can i create any procedure or function inside a oracle reserve package. Suppose, I want to create a function called x in the dbms_output package. Can i do that? Or can i extend the features of this package and create/derived a function from it like we extend any class in JAVA. I'm not sure - whether this is at all possible. I'll be waiting for your reply.
    Thanks in advance.
    Satyaki De.

    No, but you can write a wrapper package and use that instead of using the Built-In package directly. So, instead of calling DBMS_OUTPUT, you call your own Package.
    Steven Feuerstein wrote a wrapper for DBMS_OUTPUT, called P:
    Re: DBMS_OUTPUT.PUT_LINE

  • Using Implicit REF Cursor in Oracle DB 12c

    For those interested in using ODP.NET implicit REF Cursors in Oracle DB 12c, the syntax is different from what was available in Oracle 11g. Here's a 12c-specific example:
    =======================
    Create or Replace PROCEDURE GetEmpAndDept
    AS
    EMPS  sys_refcursor;
    DEPTS  sys_refcursor;
    BEGIN
      OPEN EMPS for SELECT empno, ename from emp;
      dbms_sql.return_result(EMPS);
      OPEN DEPTS for SELECT deptno, dname from dept;
      dbms_sql.return_result(DEPTS);
    END;
    =======================
    // C#
    OracleConnection conn = new OracleConnection("User Id=scott; Password=tiger);
      conn.Open(); // Open the connection to the database
    // Create the command object for executing cmdTxt
      OracleCommand cmd = new OracleCommand("GetEmpAndDept", conn);
      cmd.CommandType = CommandType.StoredProcedure;
      OracleDataReader rdr = cmd.ExecuteReader();
      while(rdr.Read())
         Console.WriteLine("{0}\t{1}", rdr.GetInt32(0), rdr.GetString(1) );
      rdr.NextResult();
       while(rdr.Read())
           Console.WriteLine("{0}\t{1}", rdr.GetInt32(0), rdr.GetString(1) );

    i am using Oracle.ManagedDataAccess.dll v4.121.1.0
    Oracle Data Base 12c
    Visual Studio 2012 .net framework 4
    But if I use Unmanaged Dll I get implicit results in my .net application.

  • View objects performance issue with oracle seeded tables

    While i am writing a view object on a oracle seeded tables like MTL_PARAMETERS, its taking more time to show in the oaf page.I am trying to display all these view object columns in detail disclosure of advanced table. My Application is taking more than two minutes to display the view columns of the query which is returning just 200 rows. Please help me how to improve performance when my query using seeded tables.
    This issue is happening only in R12 view object and advanced tables.
    Edited by: vlsn on Jun 24, 2012 11:36 PM

    Hi All,
    Here is architecture of my application:
    Java application creates XML from the screen values and then inserts that XML
    into a framework(separate DB schema) table . then Java calls a Stored Procedure from same framework DB and in SP we have following steps.
    1. It fatches XML from the XML type table and inserts XML into screen specific XML TYPE table in the framework DB Schema. This table has a trigger which parses XML and then inserts XML values into GTT which are created in separate product schemas.
    2. it calls Product SP and then in product SP we have business logic. Product SP
    does the execution and then inserts response into Response GTT.
    3. Response XML is created by using XML generation function and response GTT.
    I hope u will understand my architeture this time and now let me know if GTT are good in this scenario or not. also please not that i need data in GTT only during execution and not after that. i dont want to do specific delete which i have to do if i am using normal tables.
    Regards,
    Vikas Kumar

  • JMS Enqueue/Dequeue without using oracle.jms package

    Hi,
    Is it possible to successfully enqueue/dequeue messages from Oracle AQ using JMS which only uses the classes under javax.jms package, not the classes under oracle.jms package. If possible, can anybody please provide some step by step example.
    Thanks

    You can get the connection factory and the queue from an application server's jndi. Create a resource provider reference in oc4j and get them from there. Read the oc4j services guide, oems (jms) chapter for how to do that.
    I think if you are not using an application server you can also get the connection factory and queue from an ldap directory. check out Aq user guide for that.

  • Oracle Software Packager (OSP) Latest Software & Documentation

    Hi,
    I am looking for latest version of OSP, when I google I got only Oracle Software Packager and Installer, Release 2.2.0.16.0 to download but I need latest version.
    Where can I get the latest version of software and documentation. Please provide if anybody has any documentation on how to setup and usage etc.
    Thanks a lot in advance.
    - cdhar

    Apparently what you found is the most current version. I contacted internal OTN support, and got this answer: "I am not aware of a more current version that what is listed."

  • "oracle-validated" package  not workable

    Hi all ;
    I have installed Oracle Linux 5.5.
    Why i cant use the "oracle-validated" package to perform pre req step ?
    # cat /etc/issue
    Enterprise Linux Enterprise Linux Server release 5.5 (Carthage)
    # yum install oracle-validated
    Another app is currently holding the yum lock; waiting for it to exit...
      The other application is: yum-updatesd-he
        Memory :  18 M RSS ( 29 MB VSZ)
        Started: Fri Dec  5 15:34:26 2014 - 28:46 ago
        State  : Uninteruptable, pid: 4355
    Another app is currently holding the yum lock; waiting for it to exit...
      The other application is: yum-updatesd-he
        Memory :  18 M RSS ( 29 MB VSZ)
        Started: Fri Dec  5 15:34:26 2014 - 28:48 ago
        State  : Uninteruptable, pid: 4355
    Another app is currently holding the yum lock; waiting for it to exit...
      The other application is: yum-updatesd-he
        Memory :  18 M RSS ( 29 MB VSZ)
        Started: Fri Dec  5 15:34:26 2014 - 28:50 ago
        State  : Uninteruptable, pid: 4355
    Thanks in advance.

    Hi duse ;
    Thanks for your reply.
    Can i verify whether it is completely updated or NOT ?
    IS there any specific command or way to verify it ?
    [Trimmed]
    Dependencies Resolved
    ============================================================================================================
    Package                             Arch       Version                                Repository      Size
    ============================================================================================================
    Installing:
    firefox                             i386       31.3.0-4.0.1.el5_11                    el5_latest      65 M
         replacing  firefox.i386 3.0.18-1.0.1.el5_4
    kernel                              i686       2.6.18-400.el5                         el5_latest      20 M
    kernel-devel                        i686       2.6.18-400.el5                         el5_latest     5.9 M
    Updating:
    ImageMagick                         i386       6.2.8.0-15.el5_8                       el5_latest     3.3 M
    NetworkManager                      i386       1:0.7.0-13.el5                         el5_latest     1.1 M
    NetworkManager-glib                 i386       1:0.7.0-13.el5                         el5_latest      82 k
    NetworkManager-gnome                i386       1:0.7.0-13.el5                         el5_latest     327 k
    OpenIPMI                            i386       2.0.16-16.el5                          el5_latest     159 k
    OpenIPMI-libs                       i386       2.0.16-16.el5                          el5_latest     571 k
    OpenIPMI-tools                      i386       2.0.16-16.el5                          el5_latest     426 k
    PyXML                               i386       0.8.4-6.el5                            el5_latest     1.0 M
    SDL                                 i386       1.2.10-9.el5                           el5_latest     232 k
    SDL-devel                           i386       1.2.10-9.el5                           el5_latest     634 k
    SysVinit                            i386       2.86-17.el5                            el5_latest     113 k
    acl                                 i386       2.2.39-8.el5                           el5_latest      68 k
    acpid                               i386       1.0.4-12.el5                           el5_latest      24 k
    alsa-utils                          i386       1.0.17-7.el5                           el5_latest     2.3 M
    amtu                                i386       1.0.6-2.el5                            el5_latest      24 k
    anaconda                            i386       11.1.2.263-2.0.2                       el5_latest     5.7 M
    anaconda-runtime                    i386       11.1.2.263-2.0.2                       el5_latest     1.8 M
    apr                                 i386       1.2.7-11.el5_6.5                       el5_latest     124 k
    apr-util                            i386       1.2.7-11.el5_5.2                       el5_latest      80 k
    aspell                              i386       12:0.60.3-13                           el5_latest     946 k
    aspell-en                           i386       50:6.0-3                               el5_latest     1.5 M
    at                                  i386       3.1.8-84.el5_11.1                      el5_latest      56 k
    audit                               i386       1.8-2.0.1.el5                          el5_latest     368 k
    audit-libs                          i386       1.8-2.0.1.el5                          el5_latest      80 k
    audit-libs-python                   i386       1.8-2.0.1.el5                          el5_latest      80 k
    authconfig                          i386       5.3.21-7.el5                           el5_latest     456 k
    authconfig-gtk                      i386       5.3.21-7.el5                           el5_latest      47 k
    autofs                              i386       1:5.0.1-0.rc2.184.0.1.el5              el5_latest     903 k
    automake                            noarch     1.9.6-3.el5                            el5_latest     476 k
    avahi                               i386       0.6.16-10.el5_6                        el5_latest     251 k
    avahi-compat-libdns_sd              i386       0.6.16-10.el5_6                        el5_latest      23 k
    avahi-glib                          i386       0.6.16-10.el5_6                        el5_latest      15 k
    bash                                i386       3.2-33.el5_11.4.0.1                    el5_latest     1.8 M
    bind-libs                           i386       30:9.3.6-20.P1.el5_8.6                 el5_latest     864 k
    bind-utils                          i386       30:9.3.6-20.P1.el5_8.6                 el5_latest     174 k
    binutils                            i386       2.17.50.0.6-26.el5                     el5_latest     3.0 M
    boost                               i386       1.33.1-16.el5_9                        el5_latest     852 k
    boost-devel                         i386       1.33.1-16.el5_9                        el5_latest     4.1 M
    booty                               noarch     0.80.6-10.0.1                          el5_latest      94 k
    busybox                             i386       1:1.2.0-14.el5                         el5_latest     1.1 M
    bzip2                               i386       1.0.3-6.el5_5                          el5_latest      49 k
    bzip2-devel                         i386       1.0.3-6.el5_5                          el5_latest      39 k
    bzip2-libs                          i386       1.0.3-6.el5_5                          el5_latest      37 k
    ccid                                i386       1.3.8-2.el5                            el5_latest     147 k
    cdparanoia-libs                     i386       alpha9.8-28                            el5_latest      50 k
    compat-gcc-34                       i386       3.4.6-4.1                              el5_latest     4.0 M
    compat-gcc-34-c++                   i386       3.4.6-4.1                              el5_latest      11 M
    compat-gcc-34-g77                   i386       3.4.6-4.1                              el5_latest     2.1 M
    compat-libf2c-34                    i386       3.4.6-4.1                              el5_latest      52 k
    comps-extras                        noarch     11.4-1                                 el5_latest      48 k
    coolkey                             i386       1.1.0-17.el5                           el5_latest     106 k
    coolkey-devel                       i386       1.1.0-17.el5                           el5_latest      18 k
    coreutils                           i386       5.97-34.0.1.el5_8.1                    el5_latest     3.6 M
    cpio                                i386       2.6-26.el5                             el5_latest     122 k
    cpp                                 i386       4.1.2-55.el5                           el5_latest     2.7 M
    cpuspeed                            i386       1:1.2.1-11.0.1.el5_10                  el5_latest      32 k
    crash                               i386       7.0.4-1.0.0.el5                        el5_latest     2.6 M
    crontabs                            noarch     1.10-11.el5                            el5_latest     7.1 k
    cryptsetup-luks                     i386       1.0.3-8.el5                            el5_latest     713 k
    cscope                              i386       15.5-20.el5                            el5_latest     136 k
    cups                                i386       1:1.3.7-30.el5_9.3                     el5_latest     3.1 M
    cups-libs                           i386       1:1.3.7-30.el5_9.3                     el5_latest     200 k
    curl                                i386       7.15.5-17.el5_9                        el5_latest     235 k
    curl-devel                          i386       7.15.5-17.el5_9                        el5_latest     310 k
    cvs                                 i386       1.11.22-11.el5_8.1                     el5_latest     726 k
    cyrus-sasl                          i386       2.1.22-7.el5_8.1                       el5_latest     1.2 M
    cyrus-sasl-devel                    i386       2.1.22-7.el5_8.1                       el5_latest     1.4 M
    cyrus-sasl-lib                      i386       2.1.22-7.el5_8.1                       el5_latest     126 k
    cyrus-sasl-plain                    i386       2.1.22-7.el5_8.1                       el5_latest      27 k
    db4                                 i386       4.3.29-10.el5_5.2                      el5_latest     918 k
    db4-devel                           i386       4.3.29-10.el5_5.2                      el5_latest     2.0 M
    dbus                                i386       1.1.2-21.el5                           el5_latest     236 k
    dbus-devel                          i386       1.1.2-21.el5                           el5_latest     1.4 M
    dbus-glib                           i386       0.73-11.el5_9                          el5_latest     161 k
    dbus-glib-devel                     i386       0.73-11.el5_9                          el5_latest      37 k
    dbus-libs                           i386       1.1.2-21.el5                           el5_latest     125 k
    dbus-x11                            i386       1.1.2-21.el5                           el5_latest      32 k
    devhelp                             i386       0.12-23.el5_9                          el5_latest     215 k
    device-mapper                       i386       1.02.67-2.0.1.el5_11.1                 el5_latest     804 k
    device-mapper-event                 i386       1.02.67-2.0.1.el5_11.1                 el5_latest      24 k
    dhclient                            i386       12:3.0.5-33.el5_9                      el5_latest     281 k
    dhcpv6-client                       i386       1.0.10-20.el5                          el5_latest     124 k
    diffutils                           i386       2.8.1-16.el5                           el5_latest     211 k
    dmidecode                           i386       1:2.12-1.el5                           el5_latest      79 k
    dmraid                              i386       1.0.0.rc13-65.el5                      el5_latest     737 k
    dmraid-events                       i386       1.0.0.rc13-65.el5                      el5_latest      24 k
    dogtail                             noarch     0.6.1-4.el5                            el5_latest     172 k
    doxygen                             i386       1:1.4.7-2                              el5_latest     2.3 M
    dump                                i386       0.4b41-6.el5                           el5_latest     1.1 M
    e4fsprogs                           i386       1.41.12-4.el5_10                       el5_latest     1.1 M
    elinks                              i386       0.11.1-8.el5_9                         el5_latest     1.0 M
    enterprise-release                  i386       6:5-11.0.2                             el5_latest      31 k
    enterprise-release-notes            i386       5Server-27                             el5_latest     223 k
    esc                                 i386       1.1.0-14.el5_9.1                       el5_latest     489 k
    esound                              i386       1:0.2.36-4                             el5_latest     130 k
    esound-devel                        i386       1:0.2.36-4                             el5_latest      32 k
    ethtool                             i386       6-4.0.1.el5                            el5_latest      64 k
    evince                              i386       0.6.0-17.el5                           el5_latest     931 k
    expat                               i386       1.95.8-11.el5_8                        el5_latest      78 k
    expat-devel                         i386       1.95.8-11.el5_8                        el5_latest     132 k
    fetchmail                           i386       6.3.6-4.el5                            el5_latest     527 k
    file                                i386       4.17-28                                el5_latest     319 k
    finger                              i386       0.17-33                                el5_latest      21 k
    firstboot                           i386       1.4.27.9-1.0.1.el5                     el5_latest     324 k
    firstboot-tui                       i386       1.4.27.9-1.0.1.el5                     el5_latest     182 k
    foomatic                            i386       3.0.2-38.3.el5_7.1                     el5_latest      12 M
    freetype                            i386       2.2.1-32.el5_9.1                       el5_latest     313 k
    freetype-devel                      i386       2.2.1-32.el5_9.1                       el5_latest     149 k
    ftp                                 i386       0.17-38.el5                            el5_latest      55 k
    gamin                               i386       0.1.7-10.el5                           el5_latest     120 k
    gamin-python                        i386       0.1.7-10.el5                           el5_latest      55 k
    gawk                                i386       3.1.5-16.el5                           el5_latest     1.7 M
    gcc                                 i386       4.1.2-55.el5                           el5_latest     5.2 M
    gcc-c++                             i386       4.1.2-55.el5                           el5_latest     3.4 M
    gcc-gfortran                        i386       4.1.2-55.el5                           el5_latest     3.1 M
    gcc-java                            i386       4.1.2-55.el5                           el5_latest     2.9 M
    gdb                                 i386       7.0.1-45.0.1.el5                       el5_latest     2.4 M
    gdbm                                i386       1.8.0-28.el5                           el5_latest      28 k
    gdbm-devel                          i386       1.8.0-28.el5                           el5_latest      37 k
    gdm                                 i386       1:2.16.0-59.0.1.el5_9.1                el5_latest     3.7 M
    gettext                             i386       0.17-1.el5                             el5_latest     2.4 M
    ghostscript                         i386       8.70-15.el5_9.3                        el5_latest     9.0 M
    giflib                              i386       4.1.3-7.3.3.el5                        el5_latest      39 k
    giflib-devel                        i386       4.1.3-7.3.3.el5                        el5_latest     103 k
    glibc                               i686       2.5-123.0.1                            el5_latest     5.4 M
    glibc-common                        i386       2.5-123.0.1                            el5_latest      16 M
    glibc-devel                         i386       2.5-123.0.1                            el5_latest     2.1 M
    glibc-headers                       i386       2.5-123.0.1                            el5_latest     612 k
    glx-utils                           i386       6.5.1-7.11.el5_9                       el5_latest      32 k
    gnome-python2-extras                i386       2.14.2-7.el5                           el5_latest      24 k
    gnome-python2-gtkhtml2              i386       2.14.2-7.el5                           el5_latest      15 k
    gnome-python2-libegg                i386       2.14.2-7.el5                           el5_latest      53 k
    gnome-screensaver                   i386       2.16.1-8.el5_7.5                       el5_latest     1.8 M
    gnome-session                       i386       2.16.0-10.0.1.el5                      el5_latest     409 k
    gnome-system-monitor                i386       2.16.0-4.el5                           el5_latest     1.3 M
    gnome-terminal                      i386       2.16.0-5.3.el5_6.1                     el5_latest     2.2 M
    gnome-vfs2                          i386       2.16.2-12.el5_9                        el5_latest     1.3 M
    gnome-vfs2-devel                    i386       2.16.2-12.el5_9                        el5_latest     435 k
    gnome-vfs2-smb                      i386       2.16.2-12.el5_9                        el5_latest      36 k
    gnupg                               i386       1.4.5-18.el5_10.1                      el5_latest     1.8 M
    gnutls                              i386       1.4.1-16.el5_10                        el5_latest     353 k
    gnutls-devel                        i386       1.4.1-16.el5_10                        el5_latest     918 k
    groff                               i386       1.18.1.1-13.el5                        el5_latest     1.9 M
    grub                                i386       0.97-13.11.0.1.el5_10.1                el5_latest     489 k
    gtk2                                i386       2.10.4-30.el5                          el5_latest     6.5 M
    gtk2-devel                          i386       2.10.4-30.el5                          el5_latest     2.8 M
    gzip                                i386       1.3.5-13.0.1.el5                       el5_latest     102 k
    hal                                 i386       0.5.8.1-64.el5                         el5_latest     396 k
    hal-devel                           i386       0.5.8.1-64.el5                         el5_latest      33 k
    hmaccalc                            i386       0.9.6-4.el5                            el5_latest      22 k
    hpijs                               i386       1:1.6.7-6.el5_6.1                      el5_latest     222 k
    httpd                               i386       2.2.3-91.0.1.el5                       el5_latest     1.2 M
    hwdata                              noarch     0.213.30-1.el5                         el5_latest     477 k
    ifd-egate                           i386       0.05-17.el5                            el5_latest      23 k
    initscripts                         i386       8.45.45-1.0.2.el5                      el5_latest     1.6 M
    iproute                             i386       2.6.18-15.el5                          el5_latest     814 k
    ipsec-tools                         i386       0.6.5-14.el5_8.5                       el5_latest     383 k
    iptables                            i386       1.3.5-9.2.0.2.el5_8                    el5_latest     239 k
    iptables-ipv6                       i386       1.3.5-9.2.0.2.el5_8                    el5_latest     165 k
    jakarta-commons-httpclient          i386       1:3.0-7jpp.4.el5_10                    el5_latest     523 k
    jpackage-utils                      noarch     1.7.3-1jpp.3.0.1.el5                   el5_latest      61 k
    jwhois                              i386       3.2.3-12.el5                           el5_latest      97 k
    kbd                                 i386       1.12-22.el5                            el5_latest     1.3 M
    kernel-headers                      i386       2.6.18-400.el5                         el5_latest     1.5 M
    krb5-devel                          i386       1.6.1-80.el5_11                        el5_latest     1.9 M
    krb5-libs                           i386       1.6.1-80.el5_11                        el5_latest     670 k
    krb5-workstation                    i386       1.6.1-80.el5_11                        el5_latest     890 k
    ksh                                 i386       20100621-22.el5_11                     el5_latest     1.2 M
    kudzu                               i386       1.2.57.1.26-7.0.4                      el5_latest     244 k
    kudzu-devel                         i386       1.2.57.1.26-7.0.4                      el5_latest     143 k
    less                                i386       436-9.el5                              el5_latest     106 k
    lftp                                i386       3.7.11-8.el5                           el5_latest     932 k
    libX11                              i386       1.0.3-11.el5_7.1                       el5_latest     796 k
    libX11-devel                        i386       1.0.3-11.el5_7.1                       el5_latest     661 k
    libXcursor                          i386       1.1.7-1.2                              el5_latest      32 k
    libXcursor-devel                    i386       1.1.7-1.2                              el5_latest      14 k
    libXfont                            i386       1.2.2-1.0.6.el5_11                     el5_latest     241 k
    libXfont-devel                      i386       1.2.2-1.0.6.el5_11                     el5_latest      21 k
    libacl                              i386       2.2.39-8.el5                           el5_latest      19 k
    libacl-devel                        i386       2.2.39-8.el5                           el5_latest      81 k
    libbonobo                           i386       2.16.0-1.1.el5_5.1                     el5_latest     502 k
    libbonobo-devel                     i386       2.16.0-1.1.el5_5.1                     el5_latest     504 k
    libdhcp                             i386       1.20-13.el5                            el5_latest      61 k
    libdhcp4client                      i386       12:3.0.5-33.el5_9                      el5_latest     249 k
    libdhcp6client                      i386       1.0.10-20.el5                          el5_latest      92 k
    libexif                             i386       0.6.21-1.el5_8                         el5_latest     664 k
    libgcc                              i386       4.1.2-55.el5                           el5_latest      97 k
    libgcj                              i386       4.1.2-55.el5                           el5_latest      16 M
    libgcj-devel                        i386       4.1.2-55.el5                           el5_latest     1.4 M
    libgcj-src                          i386       4.1.2-55.el5                           el5_latest      11 M
    libgcrypt                           i386       1.4.4-7.el5_10                         el5_latest     251 k
    libgcrypt-devel                     i386       1.4.4-7.el5_10                         el5_latest     397 k
    libgfortran                         i386       4.1.2-55.el5                           el5_latest     233 k
    libgomp                             i386       4.4.7-1.el5                            el5_latest      74 k
    libhugetlbfs                        i386       1.3-8.2.el5                            el5_latest      40 k
    libicu                              i386       3.6-5.16.1                             el5_latest     5.3 M
    libjpeg                             i386       6b-38                                  el5_latest     138 k
    libjpeg-devel                       i386       6b-38                                  el5_latest     103 k
    libpcap                             i386       14:0.9.4-15.0.1.el5                    el5_latest     107 k
    libpng                              i386       2:1.2.10-17.el5_8                      el5_latest     241 k
    libpng-devel                        i386       2:1.2.10-17.el5_8                      el5_latest     182 k
    libsane-hpaio                       i386       1.6.7-6.el5_6.1                        el5_latest      58 k
    libselinux                          i386       1.33.4-5.7.el5                         el5_latest      77 k
    libselinux-devel                    i386       1.33.4-5.7.el5                         el5_latest     144 k
    libselinux-python                   i386       1.33.4-5.7.el5                         el5_latest      73 k
    libselinux-utils                    i386       1.33.4-5.7.el5                         el5_latest      55 k
    libsmbclient                        i386       3.0.33-3.40.el5_10                     el5_latest     909 k
    libstdc++                           i386       4.1.2-55.el5                           el5_latest     364 k
    libstdc++-devel                     i386       4.1.2-55.el5                           el5_latest     2.8 M
    libsysfs                            i386       2.1.0-1.el5                            el5_latest      47 k
    libtiff                             i386       3.8.2-19.el5_10                        el5_latest     311 k
    libtiff-devel                       i386       3.8.2-19.el5_10                        el5_latest     466 k
    libusb                              i386       0.1.12-6.el5                           el5_latest      26 k
    libusb-devel                        i386       0.1.12-6.el5                           el5_latest      95 k
    libuser                             i386       0.54.7-3.el5                           el5_latest     438 k
    libuser-devel                       i386       0.54.7-3.el5                           el5_latest      56 k
    libvolume_id                        i386       095-14.32.0.1.el5                      el5_latest      45 k
    libvorbis                           i386       1:1.1.2-3.el5_7.6                      el5_latest     192 k
    libvorbis-devel                     i386       1:1.1.2-3.el5_7.6                      el5_latest     542 k
    libxml2                             i386       2.6.26-2.1.25.0.1.el5_11               el5_latest     799 k
    libxml2-devel                       i386       2.6.26-2.1.25.0.1.el5_11               el5_latest     2.1 M
    libxml2-python                      i386       2.6.26-2.1.25.0.1.el5_11               el5_latest     705 k
    libxslt                             i386       1.1.17-4.0.1.el5_8.3                   el5_latest     421 k
    libxslt-devel                       i386       1.1.17-4.0.1.el5_8.3                   el5_latest     230 k
    libxslt-python                      i386       1.1.17-4.0.1.el5_8.3                   el5_latest      72 k
    linuxwacom                          i386       0.7.8.3-11.2.el5_8                     el5_latest     247 k
    logrotate                           i386       3.7.4-14                               el5_latest      42 k
    logwatch                            noarch     7.3-10.el5                             el5_latest     245 k
    lsof                                i386       4.78-6                                 el5_latest     323 k
    ltrace                              i386       0.5-20.45svn.el5                       el5_latest      70 k
    lvm2                                i386       2.02.88-13.0.1.el5                     el5_latest     3.2 M
    m2crypto                            i386       0.16-9.el5                             el5_latest     495 k
    man                                 i386       1.6d-3.el5                             el5_latest     262 k
    man-pages                           noarch     2.39-20.el5                            el5_latest     4.2 M
    mdadm                               i386       2.6.9-5.el5                            el5_latest     854 k
    mesa-libGL                          i386       6.5.1-7.11.el5_9                       el5_latest     9.6 M
    mesa-libGL-devel                    i386       6.5.1-7.11.el5_9                       el5_latest     461 k
    mesa-libGLU                         i386       6.5.1-7.11.el5_9                       el5_latest     226 k
    mesa-libGLU-devel                   i386       6.5.1-7.11.el5_9                       el5_latest      92 k
    metacity                            i386       2.16.0-16.el5                          el5_latest     2.1 M
    microcode_ctl                       i386       2:1.17-7.0.1.el5                       el5_latest     1.2 M
    mktemp                              i386       3:1.5-24.el5                           el5_latest      14 k
    module-init-tools                   i386       3.3-0.pre3.1.63.0.1.el5                el5_latest     432 k
    mozldap                             i386       6.0.5-2.el5                            el5_latest     132 k
    mutt                                i386       5:1.4.2.2-6.el5                        el5_latest     1.1 M
    nautilus                            i386       2.16.2-10.el5                          el5_latest     4.2 M
    nautilus-extensions                 i386       2.16.2-10.el5                          el5_latest      38 k
    net-snmp-libs                       i386       1:5.3.2.2-25.0.2.el5_11                el5_latest     1.3 M
    net-tools                           i386       1.60-83.el5_10                         el5_latest     361 k
    netpbm                              i386       10.35.58-10.el5                        el5_latest     834 k
    netpbm-devel                        i386       10.35.58-10.el5                        el5_latest     175 k
    netpbm-progs                        i386       10.35.58-10.el5                        el5_latest     2.0 M
    nfs-utils                           i386       1:1.0.9-71.el5                         el5_latest     403 k
    nfs-utils-lib                       i386       1.0.8-7.9.el5                          el5_latest      64 k
    nmap                                i386       2:4.11-2.0.1                           el5_latest     660 k
    nscd                                i386       2.5-123.0.1                            el5_latest     178 k
    nspluginwrapper                     i386       1.3.0-9.el5                            el5_latest     198 k
    nspr                                i386       4.10.6-1.el5_10                        el5_latest     124 k
    nspr-devel                          i386       4.10.6-1.el5_10                        el5_latest     113 k
    nss                                 i386       3.16.2.3-1.el5_11                      el5_latest     1.2 M
    nss-devel                           i386       3.16.2.3-1.el5_11                      el5_latest     255 k
    nss-tools                           i386       3.16.2.3-1.el5_11                      el5_latest     755 k
    nss_db                              i386       2.2-35.4.el5_5                         el5_latest     775 k
    nss_ldap                            i386       253-51.el5_9.1                         el5_latest     1.4 M
    ntp                                 i386       4.2.2p1-17.el5_10                      el5_latest     1.3 M
    numactl                             i386       0.9.8-12.0.3.el5_6                     el5_latest      46 k
    openldap                            i386       2.3.43-28.el5_10                       el5_latest     298 k
    openldap-clients                    i386       2.3.43-28.el5_10                       el5_latest     219 k
    openldap-devel                      i386       2.3.43-28.el5_10                       el5_latest     2.9 M
    openssh                             i386       4.3p2-82.el5     

Maybe you are looking for

  • Error connecting to bi bean catalog with jdev

    I'm in the process of getting the bibdemo up and running. Started with oracle 9ir2 and applied the patch set 1 as directed by the bib903 installation instructions. After installtion of bib903 ran catalog creation scripts without any errors. Installed

  • How to limit  dimensions values of querybuilder

    Hi, I want to learn how to limit dimension value in query builder. i want, the user who run the querybuilder can not see a dimension value which i do not want to display. For example, The time dimension has "2000" and "2001" values as default which i

  • Select field

    Hi All, I am having trouble in dealing with 3 select fields simultaneously . I have three select fields say A,B,C. Based on the selection in select field 'A' a corresponding new list will appear in select field 'B' and then based on seletion in selec

  • Safe to replicate when I can't get +R to play?

    I am working on my third project destined for DVD-9 replication in DVDSP 3.0.2. I had a successful build, and DVDSP told me that my formatting was successful on a Memorex dual-layer DVD+R using an NEC ND-3540A burner. I can play the disc on my two Po

  • Firefox and adobe interactive forms

    Hi, I am trying to get a web dynpro application to work on Firefox 1.5. When I ran the application the first time in IE I got a popup asking to install a java object. I refused and got an error message in the browser saying it could not render the fo