Viewing 6 posts - 1 through 6 (of 6 total)
I have a similar situation and put together this solution, I think it might help you out. You would just need to modify the layout of the xml in my...
May 6, 2010 at 10:53 am
This seems to be a similar issue to what I was facing. My output files were anywhere from 50K to a couple of Mb so I wanted to be able...
September 30, 2009 at 9:41 am
Finally got it to work. What I had to do was put in the ContentType = 'text/xml'
[Microsoft.SqlServer.Server.SqlProcedure]
public static void PostXMLTransaction(string v_strURL, string...
September 18, 2009 at 12:36 pm
UPDATE: After setting my Assembly to External Access from Safe, I now get the following error:
The objective is to send the results of a "FOR XML" query to a POX...
September 17, 2009 at 3:11 pm
Thanks Flo,
Using almost the exact c# you provided, changing only the destination and sql connect and for xml query,
Here is what I am now getting as a response from SQL:
Msg...
September 17, 2009 at 2:19 pm
try it this way:
SELECT
Col1, Col2, Col3
FROM PTable as property
--FOR XML PATH('property'), ROOT('properties'), type
FOR XML AUTO, TYPE, ELEMENTS, ROOT('properties'))
September 14, 2009 at 3:08 pm
Viewing 6 posts - 1 through 6 (of 6 total)