Tag Archives: xml
XML Schema Creation in SQL Server 2005
Here’s an interesting approach for creating a quick and dirty schema to get you started with XML. DECLARE @schema xml SET @schema = (SELECT * FROM schema.TABLE FOR XML AUTO, ELEMENTS, XMLSCHEMA(’SchemaName’)) SELECT @schema I don’t have the source, but … Continue reading
XML Modification
XML Modification for fun and profit Continue reading
XML Nodes Query
A reminder of how the nodes query works inside Microsoft SQL Server. Continue reading