The for-xml-path tag has no wiki summary.
4
votes
1answer
500 views
FOR XML PATH and xsi:nil attributes
Good morning all,
I have a large query utilising FOR XML PATH to output a .xml file.I have the main select which basically just represents the root ie
select *
from tbl
for xml path ...
3
votes
3answers
209 views
Are CDATA sections really unnecessary?
This question is prompted by the rather militant refusal of developer Michael Rys to include the parsing of CDATA sections into FOR XML PATH because "There is no semantic difference in the data that ...
2
votes
2answers
218 views
Combine different table columns with UNION and use XML to differentiate the column names
Though this works to return the right results,
SELECT r.KeyColumn as '@Key', t1.Key1 as 'Key1', t1.Col1 as 'Col1'
FROM @resultset r
INNER JOIN Table1 t1 ON t1.Col1 = 'SomeCondition'
--FOR XML ...
1
vote
1answer
42 views
How can I nest stored procedures that return XML using FOR XML PATH?
I have a FOR XML PATH Stored Procedure that returns some XML in the usual manner (shortened for clarity):
CREATE PROCEDURE sp_returnsubnode
AS
BEGIN
SELECT subnode.subnodeid "@subnodeid"
...
1
vote
1answer
71 views
Default namespace with FOR XML PATH
Consider the following SQL:
;WITH XMLNAMESPACES(DEFAULT 'http://www.mynamespace.co.uk')
,CTE_DummyData AS (
select id=1
)
select TOP 1
[@ID]=1,
(select top 1 [@ID] = 1 FROM CTE_DummyData ...
1
vote
1answer
62 views
Xml elements present in spite of null values
I have a fairly big SELECT ... FOR XML PATH. As you know, by default xml elements corresponding to fields with a null value don't appear in the result xml tree. It appears to be a real problem for me ...
1
vote
2answers
367 views
SQL FOR XML PATH list and COUNT
I have a table such as:
|Date |Name|
--------------------
|'20-May-2011'|Bob |
|'20-May-2011'|Fred|
|'20-May-2011'|Jim |
|'21-May-2011'|Bob |
|'21-May-2011'|Ed |
|'22-May-2011'|Bill|
I ...
1
vote
2answers
1k views
How to add an attribute to element-centric FOR XML PATH query
I'm building some HTML to be included in the body of an email and sent using sp_send_dbmail. I'd like to right-align some of the columns. Is there an easy way to do this (short of rewriting it using ...
1
vote
5answers
3k views
XML declaration with “FOR XML PATH” in SQL Server 2005
Below is a simplified version of a query that I have already created. The query works fine, but I cannot figure out how to get the XML declaration at the top of the generated XML. I've tried ...
0
votes
0answers
5 views
Build <options> tags with FOR XML Path in SQL. Remove unwanted Attributes
Probably a really simple question to answer but I can't for the life of me find it anywhere.
I'm looking to build select list options from the database using FOR XML Path. So far I have this:
SELECT ...
0
votes
1answer
37 views
Generate XML from Table
I have a table like this:
ID Name Column1 Column2 Column3
1 ABC 202.2 1500 34000
2 IJK 104 10000 27000
I want to generate XML like this:
...
0
votes
1answer
38 views
Wrong Record count with uniqueidentifier and casting to nvarchar in TSQL for xml path
Here are some sample records
ID(UniqueIdentifier) UserId title description version parentid
8362AB94-946F-4092-97C2-ABD957CC2E20 3 title desc 0 0
...
0
votes
0answers
131 views
SQL2008: Issue in using For XML Explicit to generate CDATA in Hierarchical data
I am trying to generate XML out of two tables that give me hierarchical data. I have two tables -
Elements
ElementId | Element | Seq | Description | Stereotype
and
ElementRelationships
id | ...
0
votes
2answers
110 views
Parse <img> tag that lies within the <description></description> of an rss2 feed item
What I try to accomplish is get the src attribute of an rss2 feed item using GDataXML. The feed's item xml is like this:
<item>
<title>BlackBerry EMEA servers crash</title>
...
0
votes
1answer
600 views
XML string to DataTable object c# method - advice needed
In ASP.NET application I have a query onto sql database for some data and one part of the data is XML string. I want to "convert" this XML string into DataTable object once retrieved into ASP.NET ...
0
votes
1answer
140 views
How do I stop blank output from FOR XML PATH in SQL server for dynamic sql?
I was trying to generate a script for data vault, below is the dynamic sql that would generate tables for many to many relations:
DECLARE @LOAD_DATE_RS VARCHAR(100)
SET @LOAD_DATE_RS = 'LOAD_DATETIME ...
0
votes
0answers
193 views
XPath Query + Parent Child Relation + SQL 2008
My table data maintains parent child relation. I want to generate XML as source for treeview control.
Data in table:
OSP_RELATIONSHIP_SK OSP_PARENT_RELATIONSHIP_SK OSP_ENTITY_SK ...
0
votes
2answers
1k views
SQL Server 2005 select for XML path with union in sub-selection problem
I'm rather experienced with SQL server "select for XML path" queries but now i run into a strange problem.
The following query works fine:
select
(
select
'Keyfield1' as "@Name",
...