Top "Sqlxml" questions

SQLXML is a feature in MS SQL (introduced in SQL Server 2000), that enables XML support for making queries and processing data.

Using SQL to query an XML data column

I'm having issues querying XML data stored in a SQL Server 2012 database. The node tree I wish to query is …

sql xml sql-server-2012 sqlxml
Multiple rows in one column SQL Server

I want to concatenate multiple rows in one column. I found many examples in Internet but does not working for …

sql-server xml path concatenation sqlxml
Using OPENXML in SQL Server 2008 stored proc - INSERT order differs from XML document

I'm using SQL Server 2008's XML-parsing abilities to iterate through an XML document and perform an INSERT each element. However, …

sql xml sql-server-2008 sqlxml
Cross Apply to get child parent value from Xml in SQL Server

I have the following XML: <root> <row value="US"> <col value="00">Jon</col&…

sql-server sql-server-2008 tsql cross-apply sqlxml
SQL 2012 - iterate through an XML list (better alternative to a WHILE loop)

Using SQL 2012 & getting XML passed into a stored procedure that must take that input & write a row to …

sql sql-server xml tsql sqlxml
SQL Server: Two-level GROUP BY with XML output

I have a table of hierarchical data that I am trying to select as a single, grouped XML value: Columns: …

sql sql-server-2008 sqlxml
XML data type method “value” must be a string literal

How to change my query so that this error doesn't happen: XML data type method “value” must be a string …

sql xml tsql sqlxml
SQL server insert data from table into an XML variable

How can I insert a whole bunch of rows into an XML variable without using a cursor? I know I …

sql-server-2005 sqlxml
XPath in T-SQL query

I have two tables, XMLtable and filterTable. I need all the XMLtable.ID values from XMLtable where the data in …

sql-server xml tsql xpath sqlxml