Hi,
My requirement is to insert the xml data generated into a table,
following is the sample code,
Create table #testfiles
(
filemeta varchar(1000)
)
Insert into #testfiles
select 1 as a, 2 as b for xml raw
I am Using Sql server 2008R2.
Please help me,I need this urgently.
Thanks in advance!!