CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Join Date
    Oct 2003
    Posts
    2

    Sorting Large XML files

    Hey all,

    Im curious to know what solutions/technologies there are for transforming/sorting large sized xml files(20-100MB)?

    Taking into account that a multithreaded environment is required for each transformation and the limitations of the DOM.

    I have a "adhoc" solution but it by no means uses any wheels (if you know what i mean).

    Thanks for any input.
    Trev

  2. #2
    Join Date
    May 2003
    Location
    Denmark
    Posts
    1,315
    Post your code and I'll try to have a look at it. But ofcourse, sorting a 100MB file will alway be very resource intensive.

    I'am curious how much RAM does the thing use ?.

  3. #3
    Join Date
    Dec 2002
    Posts
    47
    Take a look at using an XML hive database. Unless you really, really need to reparse all of your XML repreatedly, you will be better off using an XML native database. The underlying DB can create "views" of the data much like an SQL database.

    There's several out there - commercial and free.

    -rick

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured