Viewing 2 posts - 1 through 3 (of 3 total)
Thanks a lot. However, I solved the problem with the following code: (ReturnsXML is my Table Name and ReturnData is the XML column)
ALTER PROCEDURE [dbo].[GetTDSeDetailsForNonCorpId]
(
@id int
)
AS
DECLARE @x xml;
SET @x =...
May 30, 2010 at 6:42 am
#1174320
I have an XML Column 'ReturnData' and an identity column 'ReturnId' in a table called 'ReturnXML' and I need to get a rowset with columns {EmployerOrDeductorOrCollecterName (varchar), AmtPaid (int), DatePayCred(DateTime),...
May 29, 2010 at 4:41 am
#1174221