I'm currenlty using this system sp, but the sp either runs in 5ms or 6 minutes passing in the same xml string! Here's how I'm using it in the spEXEC sp_xml_preparedocument @XMLdochandle OUTPUT, @XMLstringBEGIN TRANINSERT INTO(xxx,yyy)SELECT xxx,yyyFROM OPENXML (@XMLdochandle,'/xmlRoot/XmlStuff',2)WITH (xxx int, yyy int)COMMIT TRANEXEC sp_xml_removedocument @XMLdochandle
I'm programming in Coldfusion and it throws back a deadlock error sometimes, other times it just hangs for 6 minutes then processes the request.Any input on this would be great!-Jason