Viewing 4 posts - 1 through 4 (of 4 total)
That worked. I thought that 8000 was the limit for a varchar variable.
Thanks a lot and happy new year
January 3, 2013 at 6:20 am
#1573285
Thanks a lot for you response.
I thought about this but it will be a problem for me since the XML i am using is longer than 8000 characters
January 3, 2013 at 5:39 am
#1573267
Thanks mister.magoo
February 16, 2011 at 12:42 am
#1287475
I tried this but no success
WITH XMLNAMESPACES(DEFAULT 'b')
select
tab.col.value('c[1]', 'NVARCHAR(100)') AS Country1
from
@xml.nodes('/a/b')tab(col)
February 9, 2011 at 8:04 am
#1284491