Viewing 4 posts - 1 through 4 (of 4 total)
That does not really seem to fit the shoe..
INSERT INTO #Results(ResultsXML)
SELECT * FROM [SomeDB].[dbo].[Customer] WHERE Custid=1 FOR XML PATH('')
Msg 6819, Level...
April 8, 2011 at 7:11 am
That is correct, so the conclusion is that i should create a two column width temp table
First column IDENTITY,
Second column, containing the XML string
Would that be the right way?
April 8, 2011 at 6:38 am
That was just an example (therefor in --comment, on the first line). It basically can be anything.
April 8, 2011 at 6:33 am
I dont think i can create a temp table without knowing what columns (number/type) there are on forehand, can i?
April 8, 2011 at 6:19 am
Viewing 4 posts - 1 through 4 (of 4 total)