How to import large excel files which exceeds more then 65535 rows

Hi there,
I am using the latest Numbers version (v3.5.3) on the latest Yosemite (10.10.3) and wonder if and how it is possible to import an Excel file which exceeds the 65535 limit. I know MS Excel has change this limit to 156118 rows. But I don't have that program. I am only using the Mac versions.
Thanks in advance.
Roy

Hello NavNak.
My knee jerk reaction would be to split the incoming Excel file.  (How else can a gallon of water fit into a half gallon jug?)  I googled 'Excel file splitter' and up came a bunch of hits with one of them coming from this Apple Community.  Check out thread #6486876 which is How To Split Large Excel or CSV Files into Smaller Files
Good luck.
DaverDee

Similar Messages

  • How to import an Excel file

    Hi ,
    I amwriting a BDC Program..
    How to import a Excel File by Browsing the Excel file from the Directory and Storing that values in the internal table.
    Can any one send the code for this,
    Points will be awarded.
    Regards,
    Jayasimha Jangam.

    Hi,
          Create a select parameter. at selection screen, use FM F4_FILENAME to get the dialog box.
    see the sample code.
    *&      Form  display_dialog
          To display the pop up dialog box
    FORM display_dialog.
    Calling FM to display File Select dialog box
      CALL FUNCTION 'F4_FILENAME'
       EXPORTING
         program_name        = syst-cprog
         dynpro_number       = syst-dynnr
        FIELD_NAME          = ' '
       IMPORTING
         file_name           = p_file .
    ENDFORM.                    " display_dialog
    FORM upload_data.
      DATA : lt_itab   TYPE STANDARD TABLE OF alsmex_tabline,
             ls_itab   TYPE alsmex_tabline,
             ls_upload TYPE ty_upload_data.
      CALL FUNCTION 'ALSM_EXCEL_TO_INTERNAL_TABLE'
           EXPORTING
                filename                = p_file
                i_begin_col             = 1
                i_begin_row             = 2
                i_end_col               = 5
                i_end_row               = 50000
           TABLES
                intern                  = lt_itab[]
           EXCEPTIONS
                inconsistent_parameters = 1
                upload_ole              = 2
                OTHERS                  = 3.
      IF sy-subrc <> 0.
        MESSAGE i000 WITH text-t04.
        LEAVE LIST-PROCESSING.
      ENDIF.
      CLEAR ls_itab.
      LOOP AT lt_itab INTO ls_itab.
        CASE ls_itab-col.
          WHEN 1.
            ls_upload-matnr = ls_itab-value.
          WHEN 2.
            PERFORM convert_to_decimal USING ls_itab-value.
            ls_upload-bmeng = ls_itab-value.
          WHEN 3.
            ls_upload-idnrk = ls_itab-value.
          WHEN 4.
            PERFORM convert_to_decimal USING ls_itab-value.
            ls_upload-menge = ls_itab-value.
          WHEN 5.
            ls_upload-meins = ls_itab-value.
        ENDCASE.
        AT END OF row.
          APPEND ls_upload TO gt_upload.
          CLEAR ls_upload.
        ENDAT.
        CLEAR ls_itab.
      ENDLOOP.
    Deleting the contents of internal table
    FREE lt_itab.

  • How to create a excel file which will open in every version of MS Office?

    For excel file handling we are using Measurement Studio 8.0 for VS .NET 2003. Now we are save the excel file into.xls file using this format "CNiExcelWorkbook::FileFormatExcel9795" . it will save the file. Now the problem is If that PC has MS Office 2003 or lesser version, then its working fine. But if the PC has MS Office 2007, it will giving problem. So my question is how to save  excel file which will support any version of MS Office?
    Tapasen 
    reply me @:  [email protected] or [email protected]

    In your code, write this:
    DATA my_path type string.
    GET PARAMETER ID 'ZPATH' FIELD my_path. "or any other name you choose
    double click on ZPATH, choose create. You will have created a new parameter. You can use any names starting with Z or Y.
    Go to SU01, and set this parameter there (ZPATH)..I hope this doesn't need further clarification.
    In parameter value, put the path to the file..
    After executing the GET statement, the value will be available in the variable my_path. Pass this to GUI_UPLOAD/DOWNLOAD functions, and it should work fine.
    Regards,
    SD

  • How to import a excel file into database?

    hi all,
    How can I import a excel file into database?
    What I need to do first?
    Thanks,
    Amy

    1. Create a conrtol file in your disc(with notepad) ex
    test_loader.ctl
    LOAD DATA
    INFILE='C:\Testcsv.csv'
    into table test_table
    FIELDS TERMINATED BY ','
    TRAILING NULL COLS
    (ID,COL1,COL2,COL3)
    The table descrption is
    scott@ORCL> desc test_table;
    Name Null? Type
    ID NUMBER
    COL1 VARCHAR2(10)
    COL2 VARCHAR2(10)
    COL3 VARCHAR2(10)
    scott@ORCL>
    2 .Create a file testcsv.csv from your excel file you want to load with " save as" csv comma seperated value
    in your hard disc c:\
    3. in dos command mode write
    C:\>sqlldr scott/tiger control=c:\testcsv.ctl log=c:\testcsv.log
    Thats it!

  • Import an excel file which contain resource data to P6

    Hii,
    I had a problem of importing an excel file into p6 which contain resource data to p6.
    I used the import option which is present in file-import i followed the instruction and at last while clicking the finish tab its showing the import was successful.
    But in the resource it is emplty unable to display a single resource.
    plz help me or is there any other procedure for it plz let me know.
    Best regards
    Himansu

    As the previous poster stated, you need to export using resource assignments not activities. The only changes that P6 will accept will be to information about activities (Description, duration, etc) if you choose activities. Choosing Resources will allow changes to information with resources and resources asignments will allow changes to information pertaining to the interaction of the activities and resources.

  • How to read an excel file which contains multiple tabs using File adapter

    Hi BPEL gurus,
    I have a requirement where i need to read an EXCEL file, which has three tabs inside the file. All the three tabs has data in it. I have seen few examples where file adapter reads an excel file with data present inside a single tab but not with multiple tabs.
    If anyone has worked on this scenario, please provide your suggestions/inputs/links etc.
    Thanks in advance

    hi Sathish,
    this might help
    PI/XI: Reading MS Excel's XLSX and XLSM files with standard PI modules - easily...
    thanks and regards,
    Praveen T

  • How to import a doc file which is a file created by using the codings?

    Hai to all....
    i'm now trying to import a word doc file which is created by using the
    CreateFile() method in Win32 Programming....
    When i manually created a doc file and import that file using the
    PlaceFileInFrame method.... the contents of the doc file is placing in
    the document perfectly...
    But when i'm trying to create a doc file using CreateFile() method and importing it... and use the PlaceFileInFrame method... its not placing the
    contents of the file...
    i will show u the codings what i had done...
    HANDLE hFile;
    DWORD wmWritten;
    //FOR CREATING A DOC FILE....
    hFile = CreateFile(L"C:\\tab.doc",GENERIC_READ|GENERIC_WRITE,
    FILE_SHARE_READ,NULL,OPEN_ALWAYS,FILE_ATTRIBUTE_NORMAL,NULL);
    //FOR WRITIND DATA INTO THAT FILE FROM row[2] IN A MYSQL DATABASE
    WriteFile(hFile,row[2],(DWORD)(strlen(row[2])),&wmWritten,NULL);
    CloseHandle(hFile);
    //USED PLACEFILEINFRAME METHOD FOR PLACING THE CONTENTS OF THE DOC FILE
    tempfilename="C:/tab.doc";
    target = "/" ;
    replace = "\\" ;
    s.Replace(tempfilename,target,replace);
    IDFile idFile;
    idFile.SetFileName(tempfilename);
    UIFlags uiFlags = K2::kMinimalUI;
    UIDRef ref = layoutHelper.PlaceFileInFrame (idFile,placeUIDRef,boundsInParentCoords,
    uiFlags,
    kTrue, //retainFormat
    kTrue, //convertQuotes
    kFalse, //applyCJKGrid
    NULL);
    But the import is failed...
    When i manually created a doc file and import that file using the
    PlaceFileInFrame method.... the contents of the doc file is placing in
    the document perfectly...
    Is there any ImportProvider or ImportFilter available for
    importing this type of written files?
    Can any one plzz explain me?
    thanks in advance..
    senthil

    Hai Oscar,<br /><br />Now i'm trying like this for importing XML files...<br />----------------------------------------------------------------------<br />IActiveContext* activeContext = snpRunContext->GetActiveContext();<br />UIDRef documentUIDRef = ::GetUIDRef(myContext->GetContextDocument());<br />tempfilename="C:/1.xml";<br />target = "/"   ;<br />replace = "\\" ;<br />IDFile idFile;<br />idFile.SetFileName(tempfilename);<br />IDataBase* db = documentUIDRef.GetDataBase();<br />InterfacePtr<IDocument> document(documentUIDRef, UseDefaultIID());<br />          ASSERT(document);<br />          if(!document) {<br />               break;<br />          }<br />        InterfacePtr<IXMLReferenceData> xmlReferenceData(document, UseDefaultIID());<br />          ASSERT(xmlReferenceData);<br />          if(!xmlReferenceData) {<br />               break;<br />          }<br />          XMLReference xmlRef = xmlReferenceData->GetReference();<br /><br />     <br />        InterfacePtr<IIDXMLElement> element(xmlRef.Instantiate());<br />          ASSERT(element);<br />          if(!element) {<br />               break;<br />          }<br /><br />        <br />      InterfacePtr<IK2ServiceRegistry> serviceRegistry(gSession, UseDefaultIID());<br />          ASSERT(serviceRegistry);<br />          InterfacePtr<IK2ServiceProvider> xmlParserServiceProvider<br />               (serviceRegistry->QueryServiceProviderByClassID(kXMLParserService, <br />                         kXMLParserServiceBoss));<br />          ASSERT(xmlParserServiceProvider);<br />          if(!xmlParserServiceProvider) {<br />               break;<br />          }<br />          InterfacePtr<IXMLAccess> access(xmlParserServiceProvider, UseDefaultIID());<br />          ASSERT(access);<br />          if(!access) {<br />               break;<br />          }<br />        // -precondition<br />         <br />         InterfacePtr<ICommand> importCmd(CmdUtils::CreateCommand(kImportXMLFileCmdBoss));<br />         ASSERT(importCmd);<br />         InterfacePtr<IImportXMLData> importXMLData(CreateObject2<IImportXMLData>(kImportXMLDataBoss));<br />         ASSERT(importXMLData);<br />         if(!importXMLData) {<br />             break;<br />         }<br />         importXMLData->Set(db, idFile,kInvalidXMLReference, kSuppressUI);<br />         InterfacePtr<IXMLImportOptions> docXMLOptions( document->GetDocWorkSpace(), UseDefaultIID() );<br />         ASSERT(docXMLOptions);<br />         if(!docXMLOptions) {<br />             break;<br />         }<br />         InterfacePtr<IXMLImportOptions> importXMLOptions(importXMLData, UseDefaultIID());<br />         ASSERT(importXMLOptions);<br />         if(!importXMLOptions) {<br />             break;<br />         }<br />         importXMLOptions->Copy(docXMLOptions);<br /> <br />         InterfacePtr<IPMUnknownData> pmUnknownData(importCmd, UseDefaultIID());<br />         ASSERT(pmUnknownData);<br />         if(!pmUnknownData) {<br />             break;<br />         }<br />         pmUnknownData->SetPMUnknown(importXMLData);<br /> <br />         CmdUtils::ProcessCommand(importCmd);<br />---------------------------------------------------------------------           <br />But it showing the following 2 errors...<br /><br />error C2065: 'snpRunContext' : undeclared identifier<br />error C2227: left of '->GetActiveContext' must point to class/struct/union  type is ''unknown-type''<br /><br />Then i tried to declare snpRunContext like this...<br />InterfacePtr<ISnpRunnableContext>snpRunContext(parentUIDRef,UseDefaultIID());<br /><br />its sucessfully compiled... But the output is not coming...<br />Its showing unhandled exception in the line<br />IActiveContext* activeContext = snpRunContext->GetActiveContext();<br /><br />So, what shal i do for declaring snpRunContext... <br /><br />plz give me an idea...<br /><br />thanks.<br />senthil.

  • How to import an excel file properly

    I have a bunch of excel files with multiple tabs. The tabs are not independent of each other, and there is a lot of cross-referencing. When I try to open those files in Numbers, all the formulae become corrupted. The reason for that is that inter-tab references in Numbers have a different format due to sub-tabs or whatever you call it within tabs. As a result, when I try to import a file, default sub-tabs are created (e.g., Table 1), but references are not adjusted. Since corrupted references are automatically substituted for last known calculation results, I cannot adjust even manually. Is there any workaround for this issue?

    In some spreadsheets, we may ask the app to display the formulas in the cells.
    I don't know if Excel is able to do that.
    If it is.
    Save the doc with the formulas displayed.
    Numbers will import the tables grabbing the formulas as text.
    Gather the imported tables in a single sheet.
    Select a table, select all cells and apply the format "Automatic".
    Numbers will try to decipher the formulas.
    For sure, it will issue red triangles here and there but with a bit of patience you will get a living document.
    I did that with AppleWorks spreadsheets when, as the result of a localisation bug, they can't be imported by Numbers '08.
    Some times later I thought that a more efficient soluce was to set my system in English and import in the English version.
    Yvan KOENIG (VALLAURIS, France) dimanche 9 mai 2010 20:45:06

  • HT5622 how to import an excel file to contacts

    i  have total info in excel  and need to transfer from computer to ipad and iphone contacts.
    help please.

    You need to convert the excel file into one of the formats mentioned here before you can import into contacts http://support.apple.com/kb/PH4648?viewlocale=en_US  It would seem csv is your best bet

  • Re: Import an Excel file

    Serdar,
    There are three approaches to this problem
    (a) use the excel spreadsheet as an ODBC data source
    (b) read the excel spreadsheet as a tab delimited text file
    (c) use OLE
    (a) this requires defining column headers for each "section" of data in the
    spreasheet, and
    naming each "section" of data. Thus it works for spreadsheets where you
    have tight control
    over the formatting & content, and not for arbitrary spreasheets. There
    are numerous drawbacks
    to this approach, most notably that the ODBC datasource controlled by
    the ODBC Manager
    sets the file name, and not the DBResourceManager (you have to copy your
    spreadsheet into
    a fixed name, hope the other one isn't open in another session, etc etc)
    Blech.
    (b) this requires a manual step which is to read the spreadsheet into Excel
    and save it to a
    different format, or have the spreadsheets saved as comma separated
    values format (csv),
    then it is simply a parsing problem...
    (c) this requires that you sublaunch Excel through OLE and access the data
    somehow
    (issue a "select all", "copy" - then paste the data into some text
    field in Forte and read it,
    or programmatically access the spreadsheets boundaries and individual
    cell data.
    Sounds like this would work best for "arbitrary" spreadsheets for
    which special formatting
    or exporting would be problematic.
    We have had success (using the word loosely here) with a and b and not had
    occasion to do c, though it will probably yield the best flexibility for
    the effort you'll have to
    put into getting it to work. The common perception about doing OLE
    integration is that
    you are at the mercy of the application to which you are integrating - the
    OLE APIs are not
    all universally well designed, implemented, nor documented, however since
    this is Excel you
    might have lots of retail technical books to help you.
    Part of the problem is that the Excel spreadsheet file is in a proprietary
    format only understood
    by Excel, therefore just "reading" the file will give you a whole bunch of
    garbage.
    Good luck,
    John
    At 03:55 PM 1/15/99 -0800, you wrote:
    >
    >
    Can anyone tell me how to import an Excel file from any directory into the
    Forte array?
    I need to do following scenario:
    In the Forte application when the user click on the "Select" button user
    selects an Excel file from the explorer window. Than I need to read that
    Excel file and load the data into the Forte array, and I'm going to use the
    data in the program.
    If anyone has experience or any suggestions, please let me know.
    Thanks
    Serdar Askin
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>*******************************************************
    John Jamison [email protected]
    Vice President and Chief Technology Officer 415 399 7212
    Sage IT Partners, Inc. fax: 415 399 7002
    44 Montgomery Street
    Suite 3200
    San Francisco, CA 94104
    The Leaders in Internet Enabled Business Change
    * A Metamor Worldwide Company *
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

    Just thinking off the top of my head here, would a variation of (c) work.
    Launch Excel and trigger a macro that outputs the spreadsheet data as a CSV
    file to a known location. Once that completes, it becames a parsing problem
    as stated below. Or, extending this thought, if you have control over the
    spreadsheet, establish a macro to output the data in CSV format. And
    include in the procedure for accessing the spreadsheet a requirement to run
    this macro after every data change. (Maybe the macro initiation can be
    automated too.)
    my 1 1/2 cents worth....
    /\/\ark /\/ichols
    John Jamison <[email protected]> on 01/17/99 12:17:57 PM
    Please respond to John Jamison <[email protected]>
    To: "Askin, Serdar H" <[email protected]>
    cc: [email protected](bcc: Mark Nichols/SEH)
    Subject: Re: Import an Excel file
    Serdar,
    There are three approaches to this problem
    (a) use the excel spreadsheet as an ODBC data source
    (b) read the excel spreadsheet as a tab delimited text file
    (c) use OLE
    (a) this requires defining column headers for each "section" of data in the
    spreasheet, and
    naming each "section" of data. Thus it works for spreadsheets where you
    have tight control
    over the formatting & content, and not for arbitrary spreasheets. There
    are numerous drawbacks
    to this approach, most notably that the ODBC datasource controlled by
    the ODBC Manager
    sets the file name, and not the DBResourceManager (you have to copy your
    spreadsheet into
    a fixed name, hope the other one isn't open in another session, etc etc)
    Blech.
    (b) this requires a manual step which is to read the spreadsheet into Excel
    and save it to a
    different format, or have the spreadsheets saved as comma separated
    values format (csv),
    then it is simply a parsing problem...
    (c) this requires that you sublaunch Excel through OLE and access the data
    somehow
    (issue a "select all", "copy" - then paste the data into some text
    field in Forte and read it,
    or programmatically access the spreadsheets boundaries and individual
    cell data.
    Sounds like this would work best for "arbitrary" spreadsheets for
    which special formatting
    or exporting would be problematic.
    We have had success (using the word loosely here) with a and b and not had
    occasion to do c, though it will probably yield the best flexibility for
    the effort you'll have to
    put into getting it to work. The common perception about doing OLE
    integration is that
    you are at the mercy of the application to which you are integrating - the
    OLE APIs are not
    all universally well designed, implemented, nor documented, however since
    this is Excel you
    might have lots of retail technical books to help you.
    Part of the problem is that the Excel spreadsheet file is in a proprietary
    format only understood
    by Excel, therefore just "reading" the file will give you a whole bunch of
    garbage.
    Good luck,
    John
    At 03:55 PM 1/15/99 -0800, you wrote:
    >
    >
    Can anyone tell me how to import an Excel file from any directory into the
    Forte array?
    I need to do following scenario:
    In the Forte application when the user click on the "Select" button user
    selects an Excel file from the explorer window. Than I need to read that
    Excel file and load the data into the Forte array, and I'm going to usethe
    data in the program.
    If anyone has experience or any suggestions, please let me know.
    Thanks
    Serdar Askin
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>*******************************************************
    John Jamison [email protected]
    Vice President and Chief Technology Officer 415 399 7212
    Sage IT Partners, Inc. fax: 415 399
    7002
    44 Montgomery Street
    Suite 3200
    San Francisco, CA 94104
    The Leaders in Internet Enabled Business Change
    * A Metamor Worldwide Company *
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

  • I need to sort very large Excel files and perform other operations.  How much faster would this be on a MacPro rather than my MacBook Pro i7, 2.6, 15R?

    I am a scientist and run my own business.  Money is tight.  I have some very large Excel files (~200MB) that I need to sort and perform logic operations on.  I currently use a MacBookPro (i7 core, 2.6GHz, 16GB 1600 MHz DDR3) and I am thinking about buying a multicore MacPro.  Some of the operations take half an hour to perform.  How much faster should I expect these operations to happen on a new MacPro?  Is there a significant speed advantage in the 6 core vs 4 core?  Practically speaking, what are the features I should look at and what is the speed bump I should expect if I go to 32GB or 64GB?  Related to this I am using a 32 bit version of Excel.  Is there a 64 bit spreadsheet that I can us on a Mac that has no limit on column and row size?

    Grant Bennet-Alder,
    It’s funny you mentioned using Activity Monitor.  I use it all the time to watch when a computation cycle is finished so I can avoid a crash.  I keep it up in the corner of my screen while I respond to email or work on a grant.  Typically the %CPU will hang at ~100% (sometimes even saying the application is not responding in red) but will almost always complete the cycle if I let it go for 30 minutes or so.  As long as I leave Excel alone while it is working it will not crash.  I had not thought of using the Activity Monitor as you suggested. Also I did not realize using a 32 bit application limited me to 4GB of memory for each application.  That is clearly a problem for this kind of work.  Is there any work around for this?   It seems like a 64-bit spreadsheet would help.  I would love to use the new 64 bit Numbers but the current version limits the number of rows and columns.  I tried it out on my MacBook Pro but my files don’t fit.
    The hatter,
    This may be the solution for me. I’m OK with assembling the unit you described (I’ve even etched my own boards) but feel very bad about needing to step away from Apple products.  When I started computing this was the sort of thing computers were designed to do.  Is there any native 64-bit spreadsheet that allows unlimited rows/columns, which will run on an Apple?  Excel is only 64-bit on their machines.
    Many thanks to both of you for your quick and on point answers!

  • How to retrieve data from an Excel file which is located on server

    hi everybody,
                    I am using SAP NWDS 2004s .     
                I have done an application on how to export the table data into an Excel .
    Now i want to get the data from an Excel file which is located in server and display that data which is in excel in a View for example a Sample view in Webdynpro  .
    In Sample view i took a uielement textview to display the data ....   
    can any one help how to procced further
    Thanks in advance
    Madhavi

    Options to read Excel data to WebDynpro context
    Reading Excel Sheet from Java without using any Framework
    Reading Multiple Sheets of Excel Sheet from Java
    Few Threads
    How to Display the content of Excel file into Webdynpro Table
    Is it possible to upload data from excel file(.xls)
    Re: How to export the data as integer into excel sheet?
    regards
       Vinod

  • Installed office for mac (trial version). now I got 2 excel files, which cannot be deleted. I googled the names of the sheets and found chinese websites I never visited. Are those dialers? How can I get rid of them? system is mac lion(with win 7 parallel)

    now I got 2 excel files, which cannot be deleted on my desktop. I can't open them, either. I googled the names of the sheets and found chinese websites I never visited. Are those dialers? How can I get rid of them? system is mac lion (with win 7 parallel)

    The people who make that stuff have their own forums you can also search/ask in:
    http://answers.microsoft.com/en-us/mac/forum

  • How can i import an excel file into formscentral?

    how can i import an excel file into formscentral?

    Thanks for asking.  This is not something we currently support but you can add or vote on feature ideas:
    http://forums.adobe.com/community/formscentral?view=idea
    If you need to add a new idea click "Create an idea" under "Actions" in the top right.
    Perry

  • Import Large XML File to Table

    I have a large (819MB) XML file I'm trying to import into a table in the format:
    <ROW_SET>
    <ROW>
    <column_name>value</column_name>
    </ROW>
    <ROW>
    <column_name>value</column_name>
    </ROW>
    </ROW_SET>
    I've tried importing it with xmlsequence(...).extract(...) and ran into the number of nodes exceed maximum error.
    I've tried importing it with XMLTable(... passing XMLTYPE(bfilename('DIR_OBJ','large_819mb_file.xml'), nls_charset_id('UTF8'))) and I gave up after it ran for 15+ hours ( COLLECTION ITERATOR PICKLER FETCH issue ).
    I've tried importing it with:
    insCtx := DBMS_XMLStore.newContext('schemaname.tablename');
    DBMS_XMLStore.clearUpdateColumnList(insCtx);
    DBMS_XMLStore.setUpdateColumn(insCtx,'column1name');
    DBMS_XMLStore.setUpdateColumn(insCtx,'columnNname');
    ROWS := DBMS_XMLStore.insertXML(insCtx, XMLTYPE(bfilename('DIR_OBJ','large_819mb_file.xml'), nls_charset_id('UTF8')));
    and ran into ORA-04030: out of process memory when trying to allocate 1032 bytes (qmxlu subheap,qmemNextBuf:alloc).
    All I need to do is read the XML file and move the data into a matching table in a reasonable time. Once I have the data in the database, I no longer need the XML file.
    What would be the best way to import large XML files?
    Oracle Database 11g Release 11.2.0.1.0 - 64bit Production
    PL/SQL Release 11.2.0.1.0 - Production
    "CORE     11.2.0.1.0     Production"
    TNS for Linux: Version 11.2.0.1.0 - Production
    NLSRTL Version 11.2.0.1.0 - Production

    This (rough) approach should work for you.
    CREATE TABLE HOLDS_XML
            (xml_col XMLTYPE)
          XMLTYPE xml_col STORE AS SECUREFILE BINARY XML;
    INSERT INTO HOLDS_XML
    VALUES (xmltype(bfilename('DIR_OBJ','large_819mb_file.xml'), nls_charset_id('UTF8')))
    -- Should be using AL32UTF8 for DB character set with XML
    SELECT ...
      FROM HOLD_XML HX
           XMLTable(...
              PASSING HX.xml_col ...)How it differs from your approach.
    By using the HOLDS_XML table with SECUREFILE BINARY XML storage (which became the default in 11.2.0.2) we are providing a place for Oracle to store a parsed version of the XML. This allows the XML to be stored on disk instead of in memory. Oracle can then access the needed pieces of XML from disk by streaming them instead of holding the whole XML in memory and parsing it repeatedly to find the information needed. That is what COLLECTION ITERATOR PICKLER FETCH means. A lot of memory work. You can search on that term to learn more about it if needed.
    The XMTable approach then simply reads this XML from disk and should be able to parse the XML with no issue. You have the option of adding indexes to the XML, but since you are simply reading it all one time and tossing it, there is no advantage to indexes (most likely)

Maybe you are looking for

  • How to add repeating comments features in Sharepoint Announcement List.

    I have a challange to add commenting features in Announcement lists identical to sharepoint blogs. When super user adds Announcement  in the team page, i wanna display add comments  right underneath the new announcement to  people with contributer ac

  • HTMLDB_ITEM.DATE_POPUP API

    hi!! I have a report (sql query type Region) and one of the columns is generated dynamically through HTMLDB_ITEM.DATE_POPUP API. One of the parameters of this function is the ROW, so I had to pass to this function as the row parameter the ROWNUM, lik

  • Signed applet changed(source code) no dialog box to say code tampered

    dear friends, i have signed an applet ,i also get the default dialog box asking me the permission to grant rights or not.now i have changed the source code,compiled the file and converted into same jar file name which it was used to sign it earlier.w

  • Error using rman with cumulative backup

    Hi, Can anyone help? Current system configuration : Oracle 8.0.4 & Veritas Netbackup. Encounter error when allocate 2 channel for cumulative backup using rman. Using a single channel works fine. RMAN-08010: channel t1: including datafile 1 in backups

  • Automatic generation of Image Variants

    Hello. I have a repository where I use different Image Variants. My problem is that when I upload an Image I have to manually go into the Image manager to generate the variants. I would like to have an automatic way of doing this. CLIX can not be use