Viewing 3 posts - 1 through 3 (of 3 total)
I just tested out your method with a larger set of data and there is no significant speed improvement. Any other ideas?
..
Why yes, they are related. These queries...
April 23, 2010 at 2:02 pm
Here's a stripped down version:
DECLARE @tbl AS TABLE (DocumentType INT, DocumentXML XML);
DECLARE @XML XML;
SELECT @XML = '
<my:myFields xmlns:my="http://schemas.somedomain.com/infopath/2003/appname" xml:lang="en-us">
<my:SelectedProductID>100</my:SelectedProductID>
<my:PECode>4.2.A</my:PECode>
</my:myFields>'
INSERT INTO @tbl (DocumentType, DocumentXML)
VALUES (236, @XML);
WITH XMLNAMESPACES...
April 23, 2010 at 12:28 pm
Thanks. That will probably work for around 50% of my clients. For the others that do not have multiple processors, do you have any other suggestions?
April 23, 2010 at 9:58 am
Viewing 3 posts - 1 through 3 (of 3 total)