Ver Mensaje Individual
  #5 (permalink)  
Antiguo 07/10/2006, 13:23
foo
 
Fecha de Ingreso: febrero-2006
Mensajes: 278
Antigüedad: 18 años, 10 meses
Puntos: 0
seguramente no buscas bien , aqui un ejemplo basado en la documentacion

declare @foo xml

set @foo = '<?xml version="1.0" encoding="ISO-8859-1"?>
<bookstore>

<book>
<title lang="en">Harry Potter</title>
<author>J K. Rowling</author>
<year>2005</year>
<price>29.99</price>
</book>

</bookstore>'

-- Reemplazar el valor del atributo 'lang' del nodo 'title'
set @foo.modify ('
replace value of (/bookstore/book/title/@lang)[1]
with "test" ')

-- Reemplazar el valor del nodo 'author'
set @foo.modify ('
replace value of (/bookstore/book/author/text())[1]
with "Autor" ')

select @foo