Forum Replies Created

Viewing 3 posts - 1 through 3 (of 3 total)

  • RE: Speed improvement help needed for large xml queries

    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...

  • RE: Speed improvement help needed for large xml queries

    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...

  • RE: Limiting processing power for a specific query

    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?

Viewing 3 posts - 1 through 3 (of 3 total)