XQuery?

I found the solution for xquery to query xml and select nodes that I want. But I can't seem to find how to update or delete node using xquery. I don't want to use xmldocument because it seems to load entire document and then works on it, that's not good for large data (like 500 - 1000 or more nodes). Does anyone knows how to modify or delete node using xquery or any other method that does not load entire document in memory?
 
As you've probably found out by now, XQuery is currently readonly, they are still working on the INSERT/UPDATE/DELETE facility. I have no idea how you'd go about editing a node without loading the whole document. However I'd be interested to know if you come up with anything...
 
Back
Top