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 | FromElementId | ToElementId
Needless to say, the ElementRelationships table states the relation between two elements in the Elements table.
I tried writing For XML Explicit queries as I need some data as CDATA in the XML. I wrote a method for each subsection and the final XML is forming almost fine.
The queries look like:
SELECT 1 AS Tag,
0 AS Parent,
Elements.ElementID AS [Service!1!GUID], 'False' AS [Service!1!Assignable], Elements.Element AS [Service!1!Activity], Elements.Seq AS [Service!1!ID],
ISNULL(Elements.Description, ' ') AS [Service!1!!CDATA], '' as [Service!1!Industry!CDATA], dbo.GetLev1ServicesExp(Elements.ElementID) as [Service!1!!Element]
FROM Elements
WHERE (((Elements.Stereotype)='Top Service'))
ORDER BY Elements.Seq
FOR XML EXPLICIT, root('ServiceList');
ALTER FUNCTION [dbo].[GetLev1ServicesExp](@ParentElementID varchar(100))
RETURNS XML
BEGIN RETURN
( SELECT 1 as Tag, 2 as Parent, Elements.ElementID AS [Service!1!GUID], 'False' AS [Service!1!Assignable], Elements.Element AS [Service!1!Activity],
Elements.Seq AS [Service!1!ID], isnull(Elements.Description, '') AS [Service!1!!CDATA], '' as [Service!1!Industry!CDATA],Elements.Stereotype as [Service!1!Type], dbo.GetNodeServicesExp(Elements.ElementID) as [Service!1!!Element]
FROM ElementRelationships INNER JOIN Elements ON ElementRelationships.ToElementID = Elements.ElementID
WHERE (((ElementRelationships.FromElementID)=@ParentElementID) AND ((Elements.Stereotype)='Lev1 Service'))
ORDER BY Elements.Seq
FOR XML Explicit
)
END
ALTER FUNCTION [dbo].[GetNodeServicesExp](@ParentElementID varchar(100))
RETURNS XML
BEGIN RETURN
( SELECT 1 as Tag, 0 as Parent, Elements.ElementID AS [Service!1!GUID], 'False' AS [Service!1!Assignable], Elements.Element AS [Service!1!Activity],
Elements.Seq AS [Service!1!ID], isnull(Elements.Description,'') AS [Service!1!!CDATA], '' as [Service!1!Industry!CDATA],Elements.Stereotype as [Service!1!Type], dbo.GetLeafServicesExp(Elements.ElementID) as [Service!1!!Element]
FROM ElementRelationships INNER JOIN Elements ON ElementRelationships.ToElementID = Elements.ElementID
WHERE (((ElementRelationships.FromElementID)=@ParentElementID) AND ((Elements.Stereotype)='Node Service'))
ORDER BY Elements.Seq
FOR XML Explicit
)
END
ALTER FUNCTION [dbo].[GetLeafServicesExp](@ParentElementID varchar(100))
RETURNS XML
BEGIN RETURN
( SELECT 1 as Tag, 0 as Parent, Elements.ElementID AS [Service!1!GUID], 'False' AS [Service!1!Assignable], Elements.Element AS [Service!1!Activity],
Elements.Seq AS [Service!1!ID], isnull(Elements.Description, '') AS [Service!1!!CDATA], '' as [Service!1!Industry!CDATA],Elements.Stereotype as [Service!1!Type]
FROM ElementRelationships INNER JOIN Elements ON ElementRelationships.ToElementID = Elements.ElementID
WHERE (((ElementRelationships.FromElementID)=@ParentElementID) AND ((Elements.Stereotype)='Leaf Service'))
ORDER BY Elements.Seq
FOR XML Explicit
)
END
My problems are:
If I execute any single function in isolation, I get the
CDATAsection. But when I call them in hierchical order, theCDATAsection is visible for the first level only and it is not available for the outputs from the methods.The inner sections are having
xmlns="".
How to resolve these?
I also tried using For XML Path and though the xmlns="" was not there, the CDATA is not possible. I tried putting something like Select ..., '<![CDATA['+ColumnName+']]>' also, but it generates < and > in place of < and >.
Any better way to go?
Edit1:
I found the reason why the CDATA is missed out: the return type of the functions are XML and the XML data type does not retain CDATA. I tried putting it as VARCHAR(MAX). But in that case, the <,> are replaced by < and > (http://social.msdn.microsoft.com/forums/en-US/sqlxml/thread/e22efff3-192e-468e-b173-ced52ada857f/)