Home All Groups Group Topic Archive Search About

SQL Server XML

microsoft.public.sqlserver.xml
Score "nodes" is not a valid function, property, or field.
John - 12 Oct 2007 6:21 PM - 4 messages
I am baffled.  I can do exist(), query(), value() but nodes() is not recognized!  What am I doing wrong? TIA for any ideas. DECLARE @doc XML; SELECT @doc = '<root><data>qwerty</data><data>123456</data></root>'; ...
Score Predicate value when retrieving a value
Loren Dummer - 11 Oct 2007 7:33 PM - 3 messages
Is it possible to have the predicate value a variable. Example: DECLARE @XmlData        xml        ,@Predicate      int        ,@Value          nvarchar (65) ...
Score storing xml in a variable
Erick - 11 Oct 2007 7:41 AM - 2 messages
I'm trying to return a record as xml and storing it into a variable using sql 2000 Can any one help eg declare @A varchar(2000) set @a = (select * from Audit for xml raw) since the select returns one record as a single column containing a ...
Score Update SQL2005 table with XML Performance
Moistly - 8 Oct 2007 3:46 PM - 1 message
Has anyone done any performance testing with updating db records via an xml data type see [link] versus updating with multiple SQL update statements? ...
Score Extracting xml values using xquery
CD - 7 Oct 2007 2:47 AM - 5 messages
Hello All, I am having problems extracting xml values from an xml document using XQuery and would appreciate your help. Here is the problem: I am writting a stored procedure to insert data into a table like: create table MyTable table ( ...
Next »