Maximum Number of Table Rows Displayed in Catalog

Hi Everyone,
I am working with an instance that has a very large Catalog and only 25 rows are displaying at a time within the Catalog tab of the Administrator interface.
There doesn't seem to be a personalization set to restrict the number of rows displayed and there's no "Next Page >>" link for the overflow. When you create something new it isn't visible unless it makes it alphabetically in the top 25.
Can anyone tell me if there's a profile option where the max number of rows is set or what else could be causing the issue?
Thanks!
Anne

Hi Scott,
Thanks for your quick reply. I've increased the size of H Grid: Catalog to 100 and there's no change (even after bouncing the server).
I've tested it in another instance and got a "Next X - Y of Y" link at the bottom and a "Previous" link at the top when there has been an overflow. This instance doesn't have that (the overflow objects can only be seen when you do a direct search for them).
Anne
Message was edited by:
anne

Similar Messages

  • Maximum number of table

    What is the maximum number of table that can be created in a schema?

    Hi Scott,
    Thanks for your quick reply. I've increased the size of H Grid: Catalog to 100 and there's no change (even after bouncing the server).
    I've tested it in another instance and got a "Next X - Y of Y" link at the bottom and a "Previous" link at the top when there has been an overflow. This instance doesn't have that (the overflow objects can only be seen when you do a direct search for them).
    Anne
    Message was edited by:
    anne

  • ORA-19921: maximum number of 64 rows exceeded

    while trying to connect to the database through rman, I got this error;
    Recovery Manager: Release 10.2.0.2.0 - Production on Tue Nov 24 10:59:34 2009
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    RMAN-06900: WARNING: unable to generate V$RMAN_STATUS or V$RMAN_OUTPUT row
    RMAN-06901: WARNING: disabling update of the V$RMAN_STATUS and V$RMAN_OUTPUT rows
    ORACLE error from target database:
    ORA-19921: maximum number of 64 rows exceeded
    connected to target database: <SID> (DBID=XXXXXXXXXX)
    RMAN>
    This is Oracle 10g running on AIX server.
    Can anyone have an idea of resolving this issue.
    Regards
    Paul

    Tellling the OpsTeam to ignore RMAN jobs that return errors is not an ideal solution.
    Similar errors continue after upgrading to 12.0.4.2.
    So the fix, does not fix all occurrances.
    Have found additional information, and you may be able to look at your errors too for more info.
    connected to target database: MyTargetDB (DBID=1591642534)
    RMAN-06900: WARNING: unable to generate V$RMAN_STATUS or V$RMAN_OUTPUT row
    RMAN-06901: WARNING: disabling update of the V$RMAN_STATUS and V$RMAN_OUTPUT rows
    ORACLE error from target database:
    ORA-19921: maximum number of 128 rows exceeded
    SQL> connect system@mytargetdb
    Enter password: *******
    Connected.
    SQL> select count(*) from v$rman_output;
    COUNT(*)
    32948
    SQL> select * from v$rman_output where rownum <2;
    SID RECID STAMP SESSION_RECID SESSION_STAMP
    OUTPUT
    RMAN_STATUS_RECID RMAN_STATUS_STAMP SESSION_KEY
    505 1 709915346 186630 709912681
    RMAN-06207: WARNING: 1 objects could not be deleted for SBT_TAPE channel(s) due
    187039 709915343 186630
    SQL> select count(*) from v$rman_output
    where OUTPUT like 'RMAN-06207%'
    COUNT(*)
    3248 <==== only about 10% of the rows have the same RMAN-06207 error
    SQL> select * from v$rman_output where SESSION_KEY <> 186630;
    no rows selected <=== All rows appear to have SESSION_KEY 186630
    I have opened an SR with Oracle Support to find out how to clear out the error mesage entries in v$rman_output.
    I will also need to determine why the RMAN deletion of backups placed these (and other) messages into this table.

  • Maximum number of Tables per Sheet?

    Hi All,
    I am doing up a wine list in Numbers, so its all straight and neat. Question is I've added an eighth table to the sheet and cant move any or delete anything.........is there a maximum number of tables per sheet? OR am I just plain dumb?????????
    Any input to the former would be great as I already realise the latter!
    Morris

    Hello
    For a long time I thought, like you, that a sheet is restricted to 255 tables.
    Some times ago, I began to think that I may be wrong.
    I wrote a script creating tables.
    At this time there are 2217 tables in the sheet 1 and the script is designed to reach 4000 tables
    Here it is :
    tell application "Numbers" to tell document 1 to tell sheet 1
    set nbr to get count of tables
    repeat 3999 times
    set nbr to nbr + 1
    make new table with properties {name:"table " & nbr, row count:5, column count:5}
    end repeat
    end tell
    I run it on a document created from the Blank template : one sheet, one table.
    Yvan KOENIG (VALLAURIS, France) mardi 22 juin 2010 17:53:20

  • Maximum number of tables that can be outer joined with one table in a query

    Hi All,
    Iam new to sql, so can you please let me know What is the maximum number of tables that can be outer joined with one table in a query?
    Thanks,
    Srini

    srinu2 wrote:
    Iam new to sql, so can you please let me know What is the maximum number of tables that can be outer joined with one table in a query?
    There is no limit to the number of tables you can outer join as long as you join them correctly.
    SQL> with a as
      2      (
      3      select 1 id, 2 b_key, 3 c_key from dual union all
      4      select 2 id, 1 b_key, 4 c_key from dual union all
      5      select 3 id, 3 b_key, 1 c_key from dual union all
      6      select 4 id, 4 b_key, 2 c_key from dual
      7      ),
      8      b as
      9      (
    10      select 1 id, 1 c_key2 from dual union all
    11      select 2 id, 5 c_key2 from dual union all
    12      select 3 id, 3 c_key2 from dual union all
    13      select 4 id, 2 c_key2 from dual
    14      ),
    15      c as
    16      (
    17      select 1 key1, 1 key2, '1-1' dta from dual union all
    18      select 1 key1, 2 key2, '1-2' dta from dual union all
    19      select 1 key1, 3 key2, '1-3' dta from dual union all
    20      select 1 key1, 4 key2, '1-4' dta from dual union all
    21      select 2 key1, 1 key2, '2-1' dta from dual union all
    22      select 2 key1, 2 key2, '2-2' dta from dual union all
    23      select 2 key1, 3 key2, '2-3' dta from dual union all
    24      select 2 key1, 4 key2, '2-4' dta from dual union all
    25      select 3 key1, 1 key2, '3-1' dta from dual union all
    26      select 3 key1, 2 key2, '3-2' dta from dual union all
    27      select 3 key1, 3 key2, '3-3' dta from dual union all
    28      select 3 key1, 4 key2, '3-4' dta from dual union all
    29      select 4 key1, 1 key2, '4-1' dta from dual union all
    30      select 4 key1, 2 key2, '4-2' dta from dual union all
    31      select 4 key1, 3 key2, '4-3' dta from dual union all
    32      select 4 key1, 4 key2, '4-4' dta from dual
    33      )
    34  select d.a_id, d.b_id, c.key1 as c_key1, c.key2 as c_key3, c.dta
    35  from
    36      c,
    37      (
    38      select
    39          a.id as a_id, b.id as b_id, a.c_key, b.c_key2
    40      from a, b
    41      where a.b_key = b.id
    42      ) d
    43  where d.c_key = c.key1 (+)
    44  and   d.c_key2 = c.key2 (+);
          A_ID       B_ID     C_KEY1     C_KEY3 DTA
             3          3          1          3 1-3
             4          4          2          2 2-2
             2          1          4          1 4-1
             1          2
    SQL>

  • What is maximum number of tables that can be used to create HTMLDB app?

    What is the maximum number of tables that can be used to create an HTMLDB app? There seems to be a 10-table limit?
    Thanks.
    Dianna Gibbs

    I have over 200 photos in my book and it was accepted. There is a limit on each widget though. The interactive widget seems to have a limit of around 30 or 40.

  • Maximum number of email messages displayed in Mailbox?

    Is 200 the maximum number of email messages you can display in any given Mailbox? I am trying to view an old email that was sent approx 3 months ago, which puts it about 600 or 700 email messages down in my Inbox. Hitting the "Load 50 More Messages" link doesn't appear to do anything if you already have 200 messages displayed in the Mailbox.

    Forgot to mention that I am using a .Mac email account....

  • TopN limit on pivot table row display, not selection

    Hi all,
    I'm trying to create a pivot table which only displays the top 20 rows of data I'm interested in. I know I can filter the data with the TopN function or one of the columns "is in top n" filter, but I'm displaying the data as a percentage, and I want these to accurately refelect the full data available not only the items displayed:
    Example:
    Text-Description 1, 160, 80%
    Text-Description 2, 20, 10%
    Text-Description 3, 10, 5%
    Text-Description 4, 10, 5%
    Say I want to only show the top 2 rows, and get:
    Text-Description 1, 160, 80%
    Text-Description 2, 20, 10%
    Whereas what I actually get is:
    Text-Description 1, 160, 88.8%
    Text-Description 2, 20, 11.1%
    The percentage figure is calculated from the data selected, not just to limit the rows displayed. My other way through this is to get the "text description" to also have a conditional field that returns "Others" that uses the TopN function, where I'd get:
    Text-Description 1, 160, 80%
    Text-Description 2, 20, 10%
    Others, 20, 10%
    Does anyone have any other ideas?
    Thanks in advance

    Create a dashboard prompt and set the formula as i and set it to edit box and give the presentation variable name.
    use this presentation variable in topn function like
    TOPN(column,@{variablename}{defaultvalue})
    Venkat V

  • Is there a maximum number of tables for a SELECT?

    I know that technically there is nothing preventing me from joining many tables. But I know there are other "limits" like memory, or processing time allowable. I've also read from Tom kyte's advice that as much as possible if it can be done in one SQL statement, do it in SQL. But is there a limit to this?
    I have 10 tables that I need to work with. 2 of these tables contain millions of records. At the minimum, I need to at least join 4 of these tables then I could loop for each record and perform processing with the other tables. I could actually join more than 4 tables but I'm wary if it could still cause the system to crash. I'm using BULK COLLECT with LIMIT 1000 to control the fetching. The columns I'm joining are mostly PKs of each table. There are some transactional processing needed so I can't totally avoid a loop.
    This is the logic:
    <Cursor with joining 4 tables>
    Loop
    Fetch cursor BULK COLLECT INTO nested table LIMIT 1000
    For each record Loop
    Per record processing. I'll use the record elements to query from the other 6 tables.
    End Loop
    EXIT WHEN cursor NOTFOUND
    END LOOP
    Is it advisable to transfer as many tables as I can in the outside loop so there would be less processing in the inner loop? Or can a query be too big that it is better to manage the number of tables in a SELECT?
    Thanks!
    Edited by: user12090980 on Jun 3, 2011 6:23 AM

    user12090980 wrote:
    I have 10 tables that I need to work with. 2 of these tables contain millions of records. At the minimum, I need to at least join 4 of these tables then I could loop for each record and perform processing with the other tables. I could actually join more than 4 tables but I'm wary if it could still cause the system to crash. I'm using BULK COLLECT with LIMIT 1000 to control the fetching. The columns I'm joining are mostly PKs of each table. There are some transactional processing needed so I can't totally avoid a loop.Well, the very same loop structure you code in PL/SQL to "manually join" the required data sets of the 10+ tables, is also implemented in the SQL engine. It is called a nested loop.
    So why think that your code can handle joining 10+ tables better than the SQL engine? Also consider the fact that the SQL engine has a number of other (more sophisticated) join algorithms it can use, like hash joins, merge joins and so on.
    The biggest problem with the nested loop algorithm is scalability. If you nest the loop 10 deep - then a single loop iteration more in the main loop, can cause a 1000's or even potentially million more iterations in total ("exponential" impact on the loops nested in it).
    So nested loop is at times the worse type of join algorithm to use. And IMO, always the wrong thing to code in PL/SQL - as PL/SQL code (irrespective of bulk processing) will always be inferior to the SQL engine when it comes to joining data.

  • Maximum number of tables that can be custom arranged in Business View

    Symptom: Is there a limit on the number of tables that you use in the Business View Manager?
    KBase Article ID c2016554 confirm the above with respect to Crystal Enterprise 10.
    There is a limit on the number of tables that you can custom arrange. The limit is 65 tables.  If more than 65 tables are used, then the tables are arranged automatically in the Business View Manager.
    1. Is there any limit on tables with respect to XIR2?
    2. Is the above applicable beyond custom arrange.
    3. Do we have any known issue with DB2 and Business View
    Product
    Business Objects XIR2

    Symptom: Is there a limit on the number of tables that you use in the Business View Manager?
    KBase Article ID c2016554 confirm the above with respect to Crystal Enterprise 10.
    There is a limit on the number of tables that you can custom arrange. The limit is 65 tables.  If more than 65 tables are used, then the tables are arranged automatically in the Business View Manager.
    1. Is there any limit on tables with respect to XIR2?
    2. Is the above applicable beyond custom arrange.
    3. Do we have any known issue with DB2 and Business View
    Product
    Business Objects XIR2

  • Pivot Table - Rows displayed

    Hi,
    I have a pivot table report which display complete report instead of showing 25 rows first.
    Due to large number of rows we are getting Out of memory issue.
    Is it possible to display 25 rows first in Pivot table. Please help - as users are unable to test this report.
    Thanks,
    Poojak

    Hi,
    I could able to do this for all reports in one shot by modifying the Instanceconfig.xml , with the below tags, make sure to put these tags before AdvancedReporting area.
    <Views>
    <Table>
    <DefaultRowsDisplayed>100</DefaultRowsDis played>
    </Table>
    </Views>
    Or Try:
    To limit number of rows in table view check this : http://gerardnico.com/wiki/dat/obiee/obiee_limit_clause
    For pivot : http://obiee101.blogspot.com/2008/02/obiee-controling-pivot-view-behavior.html
    You can also mention the rows to return in the pivot table properties.
    NOTE: Please mention if this resolved your problem/still facing and close the thread to assist others with similar problems.
    Regards,
    MuRam

  • How to set maximum number of data points displayed on waveform chart?

    I have a waveform chart set to x-autoscale, but after about 1000 data points, it begins to scroll again. How can I display all of the data points being collected, say 2000 points?

    Right click on the chart and select Chart History Length. Enter the value that you need. The maximum is 2147483647 points.

  • Changing max row display in personalization of particular transaction type

    Hi,
    Is there any way to change the Maximum number of visible rows to be displayed in personalization of search result for a particular transaction type?
    Thanks.

    Solved myself.

  • Maximum number of filter values in BEx web

    Hi
    Is it possible to change the maximum number of filter values displayed when running a query?
    Example: When the user runs a query and has to put in a material number, he pushes the button which shows him the possible values for input. The number of values displayed per page is 14 and the maximum number of pages is 72. The maximum number of values is 1000. If the user tries to search, he only searches amongst the 1000 possible values. Is it possible to change the number of possible values shown to unlimited?
    We use NW04s BI SP09.
    Kind regards
    Erik

    Hi Experts
    I have the same problem , the maximum number of hits si set to 200 , ant the variable contains over 300 values , it is a variable based on  a time charactersitic , and the values appear in ascending order , i mean the first 01.1900 , and the last value 03.2012 . i wonder if there is a way to change the order of sort  to descending order . I mean the  first value 03.2012 and the last one 01.1900 . I attach the image .
    Thanks for your help.

  • Maximum  number of joins in OpenSQL (java framework)

    Hi,
    I have a question on the restriction of the number of joins a OpenSQL can support??
    I have searched in alot of places.. but the question remains unanswered....
    Open SQL statements will work in any SAP R/3 System, regardless of the database system in use.... but does OpenSQl itself have any restrictions / maximum number of joins that it supports.
    kindly need help on this ..
    Regards,
    Sana javeed
    Edited by: Sana Javeed on Dec 6, 2011 5:02 AM

    i found a link which refers to the maximum number of tables after the FROM clause of the OpenSQL Query ....
    where it mentions : To ensure program portability, specify no more than 15 tables in a query, including the tables in the from list and tables in subqueries. (Individual host database management systems may allow more than 15 tables.)
    [http://docs.actian.com/ingres/9.2/opensql-reference-guide/3802-osql-from-clause|http://docs.actian.com/ingres/9.2/opensql-reference-guide/3802-osql-from-clause]

Maybe you are looking for

  • Can't get any video from iphoto to sync with itouch

    I have many videos in iPhoto, all imported from a camera.  I wanted to sync these videos to my iTouch, but when I use the "include video" option in the iTunes photo sync, none of the videos came up or was synced. How do I do it?

  • Audio input for guitar

    Hello, The intro video says that I need to connect my guitar to an audio input. For now I'm just interested in using the Macbook for producing songs with my electric guitar. What devices do I need? What if I want to play the electric bass (instead of

  • Need to know the highest version of labview that was released for HPUX

    Does anyone know the highest version of labview that was released for HPUX operating system ?

  • Abruf der seriennummer

    wie kann ich meine Seriennummer erhalten Adobe Photoshop CS6

  • I Don't Have Number Lock

    I tried to turn off Secure Boot.  The i saved and went out of BIOS.  Then it gave me this security thing.  It told me to do this: Alt + 08705 (or some number like that, not sure exactly).  The problem is I don't have number lock.  Is there a way to b