XMLTable - 65535 limit on rows returned

Hi,
I've come across a problem with the Oracle XMLTable command as follows:
- I have an XML doc (approx 30Mb) which contains 79k entries
- I have this referenced in Oracle as a BFile
- If I count the number of rows returned by the XMLTable command it does not equal 79k - instead the number is 79k - 65535
Is there a limit on the number of rows XMLTable can handle (ie. < 2 ^ 16) or am I missing something?
declare
xbfile BFILE;
res BOOLEAN;
countrows number;
begin
xbfile := bfilename('XML_DIR', 'test.xml');
res := DBMS_XDB.createResource('/public/test.xml', xbfile);
select count(*) into countrows from XMLTable('for $i in doc("/public/test.xml") return $i/ROWSET/ROW'
columns ID INTEGER);
dbms_output.put_line('count=' || countrows);
end;

SQL> select * from v$version;
BANNER
Oracle Database 11g Enterprise Edition Release 11.1.0.6.0 - Production
PL/SQL Release 11.1.0.6.0 - Production
CORE    11.1.0.6.0      Production
TNS for 32-bit Windows: Version 11.1.0.6.0 - Production
NLSRTL Version 11.1.0.6.0 - Production
5 rows selected.
SQL> set autotrace on
SQL> select count(*)                                                                                       
  2  from xmltable( '$d/ROWSET/ROW'                                                                   
  3               passing xmltype( cursor( select rownum from dual connect by level <= 70000 ) ) as "d"
  4               columns rnum integer path 'ROWNUM'                                                  
  5               )                                                                                   
  6  /            
COUNT(*)
    70000
1 row selected.
Execution Plan
Plan hash value: 1051571446
| Id  | Operation                            | Name                   | Rows  | Cost (%CPU)| Time     |
|   0 | SELECT STATEMENT                     |                        |     1 |    29   (0)| 00:00:01 |
|   1 |  SORT AGGREGATE                      |                        |     1 |            |          |
|   2 |   VIEW                               |                        |  8168 |    29   (0)| 00:00:01 |
|   3 |    VIEW                              |                        |  8168 |    29   (0)| 00:00:01 |
|   4 |     COLLECTION ITERATOR PICKLER FETCH| XMLSEQUENCEFROMXMLTYPE |       |            |          |
Statistics
      70005  recursive calls
     148263  db block gets
      30391  consistent gets
          0  physical reads
          0  redo size
        411  bytes sent via SQL*Net to client
        385  bytes received via SQL*Net from client
          2  SQL*Net roundtrips to/from client
          1  sorts (memory)
          0  sorts (disk)
          1  rows processed

Similar Messages

  • Limit on rows returned

    Is there a limit to the number of rows that Portal is able to return?

    I currently have a qbe report that we are trying to use as a query tool. We are now trying to test on the production database. The user is seeing that it seems to only be returning the first 10,000 records. I was wanting to find out if this is a limit or something that can be changed?

  • How can I limit the number of rows returned by a select stat

    How can I limit the number of rows returned by a select
    statement. I have a query where I return the number of stores
    that are located in a given area.. I only want to return the
    first twenty-five stores. In some instances there may be over
    200 stores in a given location.
    I know is SQL 7 that I can set the pagesize to be 25....
    Anything similiar in Oracle 8i?
    null

    Debbie (guest) wrote:
    : Chad Nale (guest) wrote:
    : : How can I limit the number of rows returned by a select
    : : statement. I have a query where I return the number of
    : stores
    : : that are located in a given area.. I only want to return the
    : : first twenty-five stores. In some instances there may be
    : over
    : : 200 stores in a given location.
    : : I know is SQL 7 that I can set the pagesize to be 25....
    : : Anything similiar in Oracle 8i?
    : If you are in Sql*Plus, you could add the statement
    : WHERE rownum <= 25
    : Used together with an appropriate ORDER BY you
    : could get the first 25 stores.
    Watch out. ROWNUM is run before ORDER BY so this would only
    order the 25 selected
    null

  • Can I limit the number of rows returned on a Select?

    Can I limit the number of rows returned on a Select statement? I would be using JDBC in a Java program.

    Use Java prepared statements with the equivalent of this SQL*plus script:
    VARIABLE n number
    EXEC :n := 3;
    SELECT rownum FROM all_objects WHERE rownum <= :n;
        ROWNUM
             1
             2
             3
    EXEC :n := 5;
    SELECT rownum FROM all_objects WHERE rownum <= :n;
        ROWNUM
             1
             2
             3
             4
             5

  • Oracle XMLTable function no rows returned

    I have a following xml document stored in XML type table
    <?xml version="1.0" encoding="utf-8"?>
    <Document xmlns="urn:iso:std:iso:200:tech:xsd:101" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
        <FIToFICstmrCdtTrf xmlns="urn:iso:std:iso:200:tech:xsd:101">
                                <CreditTx>
                    <PaymentID>
                        <InstrumentId>AAB000001</InstrumentId>
                        <Id>4730 2013-10-23 AAB000001</Id>
                        <TranxId>BULKTTXTDAAB000001</TranxId>
                    </PaymentID>
                </CreditTx>
            </FIToFICstmrCdtTrf>
    </Document>
    And i am trying to select
    I am on Oracle Version 11.2.0.3SELECT payments.txid,
    payments.endtoendid,
    payments. instrid
    FROM payment_load_xml,
    XMLTable('for $i in /Document/FIToFICstmrCdtTrf/CdtTrfTxInf/PmtId
    return $i'
    PASSING OBJECT_VALUE
    COLUMNS
    instrid VARCHAR2(20) PATH 'InstrId' ,
    endtoendid VARCHAR2(20) PATH 'EndToEndId' ,
    txid VARCHAR2(20) PATH 'TxId'
    )payments
    I am getting no rows returned any ideas please

    The document has a default namespace, so you have to declare it :
    SELECT payments.txid, 
           payments.endtoendid, 
           payments. instrid 
    FROM payment_load_xml, 
         XMLTable(
          XMLNamespaces(default 'urn:iso:std:iso:200:tech:xsd:101') ,
           'for $i in /Document/FIToFICstmrCdtTrf/CdtTrfTxInf/PmtId 
            return $i' 
           PASSING OBJECT_VALUE 
           COLUMNS 
             instrid    VARCHAR2(20) PATH 'InstrId' , 
             endtoendid VARCHAR2(20) PATH 'EndToEndId' , 
             txid       VARCHAR2(20) PATH 'TxId' 
    ) payments ;
    and additionally, your paths don't point to anything in the sample document.

  • Need to limit number of rows returned by a query

    Hi. Is there a way to limit the rowsets returned to me in a query? I need to get the first 100, then the next hundred, etc until there are no more rows left to retrieve. Someone told me that I should use a cursor to do this. Does anyone have a specific example? Can this be done with a combination of SQL/JDBC?
    Thanks in advance...bbetta
    null

    if you are talking about limiting the number of rows to be returned to the calling program to a managable number of rowa ...
    for example the result set size would be 5000 rows and you want to get them in batches of 50 or 100 ..
    see the attached link :
    JDBC Code Templates
    http://technet.oracle.com/sample_code/tech/java/sqlj_jdbc/htdocs/templates.htm#BatchSize
    if you want the server side transaction to only return the first 50 or 100 rows even though the result set has more ... then
    another approach is required -- possibly as suggested above ...

  • Need to know how to limit the number of rows returned on Oracle

    MS SQL Server has a command called 'set row count'.
    We are trying to find similar one on Oracle.
    What we are trying to do is that instead of using rownum in the query statement, we would like to find way to limit the number of rows returned. I understand that we can use JDBC resultSet object, but that's not what we want.
    I know Oracle has one called arraysize, but this would not limit the number of rows returned either.
    Pease help.
    Thanks

    I understand that we can use JDBC resultSet object, but that's not what we want.I'm not sure which feature of ResultSet you use and which not.
    But if this question has anything to do with JDBC (that's the forum where you put it), I'd recommend to use Statement.setMaxRows(). This will limit the count of rows which your statement will fetch into it's ResultSet.

  • How do you limit the number of rows return from query?

    How do you limit the number of rows return from query? Do all databases support this kind of feature?

    i think the standard is limit
    to get the top 30
    select * from mytable LIMIT 30;returns the first 30 rows
    also if you want a range
    select * from mytable LIMIT 10,30;returns 30 rows starting from 10
    this last one is useful for displaying ranges... something similar happens in these forums when viewing topics and messages

  • Limit number of rows returned in Toad

    Hi,
    I use toad to query a database, in fact, its a data warehouse and each time my query returns a huge number of rows and I have to wait for quite some time. Is there a way of getting only a few rows at a time. I mean, I want to see the complete data returned by in a piecemeal manner, say it fetches me the first 30 rows and I keep seeing this data while it keeps getting the next 30.
    Any suggestions?
    Thanks in advance,
    Rajesh

    The first query will give you a random set of 100 rows from your table. There is no such thing as the "first 100 rows" without an order by in the inner query. The secons query will return nothing.
    SQL> SELECT * FROM (
      2  SELECT indv_id FROM indv_t)
      3* WHERE rownum > 100 and rownum < 200;
    no rows selectedA close approximation of this query that does return rows is:
    SQL> SELECT * FROM (
      2  SELECT indv_id,rownum rn FROM indv_t)
      3* WHERE rn > 100 and rn < 200;
    INDV_ID           RN
    1040             101
    1057             102
    1073             103
    2055             197
    2063             198
    2071             199
    99 rows selected.The only correct, repeatable, efficient way to page data is something like:
    SELECT * FROM
       SELECT *, rownum rn FROM
          your query here WITH AN ORDER BY
       WHERE rn <= :max_value
    WHERE rn >= :min_valueOracle will not guarantee that the same query will return the rows in the same order for every execution without an ORDER BY clause. There are dozens of factors that can influence the query path chosen by the optimizer, and therefore the order of the rows returned. As the optimizer gets more complex (and smarter?), and Oracle adds new acces paths, I xan only assume that the number of factors influencing the access path will continue to grow.
    In short, if you want to talk about first and last rows, you need to sort them first.
    TTFn
    John

  • Limiting number of rows returned by SQVI

    I've created a query in SQVI and I need to limit the number of rows returned by the query.  (I'm using the query as an exploratory tool, and it's not easy to predict how many records will be returned based on the selection fields I'm using.)
    Is there any way to add a 'Maximum No. of Hits' field to the SQVI selection screen similar to what is found when using SE16?
    Thanks,
    Bob

    It's not surprising that you are confused because the documentation doesn't bother to explain what the "fetch size" actually is, it just says that setFetchSize sets it and getFetchSize gets it. As I understand it from some other documents I read about JDBC, the fetch size is a number that may be used internally by the JDBC driver. Here's an example of how I understand it (others, I know you will feel free to correct me if you disagree):
    When the driver produces a result set with a very large number of records, it has to generate those records and deliver them to the system that requested them. If the database is not on the same system, then those records must all travel over the network. It could be a performance problem if you had to wait for (say) 80,000 records to travel across the network. Enter the fetch size. If you set the fetch size to 100, then the driver will bring the records across in batches of 100, as the program calls for them. Now, this buffering is transparent to your program; the driver doesn't tell you that it's getting another batch and you can't tell it to get another batch. So it is not a solution to the problem that everybody has here, namely how to display your records 10 per page and allow the user to go back and forth among those pages, like search engines do.

  • Number of rows returned for a report

    I want to create reports on serveral tables, the number of rows in these tables varies a lot (5, 5000, and the other one can have 10000+ rows).
    In the Reports Attributes page, is there a way to set the max number of rows return to the number of rows of the table? For example, for a table that has 10000 rows now, may grow to 20000 rows in the near future. If I specify the "Max Row Count" to 20000, the number may be outgrown yet again soon. If I can specify "Max Row Count" to "Current number of rows in the table" then this problem will not happen. Can it be done?

    that "Max Row Count" attribute is used to limit the number of rows returned by a htmldb report region. in your case it sounds as if you want to show all available rows all the time. in that case you'd be fine to just put a very large number into that field like 4million. that way you'd always show all your rows.
    hope this helps,
    raj

  • Total Rows returned in interactive report

    Hi
    I have an interactive report that displays a warning message if more than 200 rows are returned. Is there anything within APEX that tells me the exact number of rows returned in my report, or at the very least if my report has exceeded my 200 row limit?
    I have a button on my page that I only want to display if the number of rows returned in my query is <= 200.
    I know that I could use say NDS to execute my select statement in order to determine the number of rows as a seperate statement - but this seems a bit of over-kill.
    Many thanks
    Paul

    M Tajuddin wrote:
    Hi Paul,
    You can change the this from report attributes. Click on Edit page >> click on the Interactive report >> click on Report Attributes on the top >> down the bottom there is an option where you can change the row numbers and error message etc.
    Hope this helps,
    M Tajuddin
    http://tajuddin.whitepagesbd.com
    Hi
    I dont want to modify the number of rows returned. I just want to know how many rows are returned so that I can display or hide a button.
    Thanks
    Paul

  • Limit Inserted rows

    Hello,
    i need/want a SQL in my ETL-Process (building a DWH) that find data sets in the fact table which have no reference to the dimension table. These incorrect data sets should be inserted in an error table.
    insert into ERROR_TABLE
    SELECT distinct(f.JA) FROM STAGE.FAKT f WHERE NOT Exists (SELECT d.JA FROM TD_YEARS d WHERE  d.JA = f.JA);To improve the performance of the ETL-Job i want to limit the rows that are inserted in the ERROR_TABLE!!!
    With ROWNUM i can only limit the rows in the select-statement - can´t i?
    I want something like that:
    insert *100 ROWS* into ERROR_TABLE
    SELECT distinct(f.JA) FROM STAGE.FAKT f WHERE NOT Exists (SELECT d.JA FROM TD_YEARS d WHERE  d.JA = f.JA);The fact-table has 100.000.000 rows!
    The target should be, that if the database find in the first 250 rows of the fact-table 100 incorrect rows the SQL should be stopped!
    Otherwise all 100.000.000 rows are read - although i only need 100 rows.
    Is this possible? I don´t think so - or?
    Best regards and a happy new year:)
    Heidi

    >
    I think in all your examples ALL rows in the fact table are read and after that the result is limited.
    Or am i wrong?
    >
    Yes and No.
    For simple queries all of the rows do not need to be read.
    You can test this easily yourself by getting an execution plan for a simple query on a large table.
    SELECT * FROM myLargeTable WHERE ROWNUM < 10;That is pretty similar to asking someone in a library to go back to the stacks and bring me the first 10 books you find. Clearly they won't have to look at every book.
    On the hand consider a query like one of those suggested (based on the query you provide)
    .i.e. select * from (
    SELECT distinct(f.JA) FROM STAGE.FAKT f WHERE NOT Exists (SELECT d.JA FROM TD_YEARS d WHERE d.JA = f.JA);
    where rownum<=100;You are asking Oracle for 100 of the DISTINCT rows. Oracle cannot know that a row is DISTINCT (that is, does not have a duplicate) unless it examines ALL of the rows. The very last row might be a duplicate.
    That is like asking that same someone in a library to go back to the stacks and bring you just 100 books by authors that have only written ONE book. They find the first book by author 'BERNARD' and now the problem is to know whether there are any other books in the entire library written by 'BERNARD'.
    There are only two ways to determine that: 1) examine every book or 2) use an index (card catalog).
    If there is an appropriate index available it can be used to identify DISTINCT authors and find 100 books. If not, then yes, every book (row) has to be examined.
    For your use case if there is no appropriate index available then Oracle has to read every row and then either sort the data in order or use a hash in order to identify distinct rows. Only then can it return the first 100 distinct rows.
    In spite of that using ROWNUM or the FIRST_ROWS hint is still the best way to limit the results.
    If you set the timing on

  • Query rows returned VS csv rows downloaded

    Does anyone know whether it's possible to have the rows returned by the query to the default of 500 but the actuall rows downloaded in the .csv file to be all the rows that would have been returned from the query? (otherwise the performance of the query is too slow if you try and get the limit of 10,000 rows)
    Thanks
    Alice

    Alice,
    You can define the number of rows on a page (using number of rows) and the total number of rows retrieved from your query (using max row count). The total number is what’s returned when you export your report as a CSV file. And if you’re page renders too slowly when you set the total number of rows to 10000, you could try using the simple pagination style “Row Ranges X to Y”. With this pagination style, the report would only process your result set up to the max row shown on the current page.
    Regards,
    Marc

  • Question about number of rows returned in PL/SQL , SQL

    The Child Table has 3 Million plus records, but the loaded table only brings back
    approximately 1.2 Million records. Is there anything on the Oracle side that would limit the number of rows returned.

    Would it be possible to post a test case that explains what you're seeing? It sounds like you are indicating that
    SELECT COUNT(*) FROM <<some table>>returns 3 million rows. When some process goes to load a Teradata table by extracting all the information from this Oracle table, the Teradata table ends up with only 1.2 million rows. Is that correct?
    If so,
    - What is the ETL process?
    - Is it possible that the ETL process is encountering an error midway through?
    - Is it possible that the ETL process is extracting a subset of the data through a WHERE clause?
    - Is the ETL process logging in as the same Oracle user you're using to do the COUNT(*)?
    Justin

Maybe you are looking for