'Create a document fragment.
Dim docFrag As XmlDocumentFragment = doc.CreateDocumentFragment()
'Set the contents of the document fragment.
docFrag.InnerXml = strXML
'Add the children of the document fragment to the
'original document.
oDB.AppendChild(docFrag)