Tagged Questions

0
votes
3answers
41 views

Not able to get desired output while generating xml files from SQL query from SQL Server

I am executing this query select category "ROOT/category", question "Category/question", option1 "Category/option1" from testDB2 for XML PATH ('ROOT') , ELEMENTS Presently the …
2
votes
4answers
86 views

Writing XML to memory instead of disk

How do i go about writing the results of a FOR XML PATH stored procedure into memory rather than a file on disk? Current way of doing things: private void GetChartData(string OC …
0
votes
2answers
37 views

Truly empty element with sql server for xml-directive

How do I create a truly empty xml element with the for xml-directive in sql server (2005)? Example: select '' for xml path('element'), root('elements') Outputs: <elemen …
0
votes
1answer
54 views

Using “FOR XML” with XML Serialization with DATETIME type

I'm having issues trying to add some dates to a pre-existing class that is loaded via XML Serialisation, and it's not doing what I thought it should do. I knocked up a basic test …
0
votes
1answer
53 views

Create XML from SQL Server 2005 data using FOR XML

I'm trying to create an Excel XML that I want to store in an XML Field in SQL Server 2005. I have gotten this far: WITH XMLNAMESPACES ( 'urn:schemas-microsoft-com:office:spread …
0
votes
2answers
47 views

Writing the results of a FOR XML query to a file with C#.NET

Hello, I'm trying to write the result of a FOR XML PATH query to a file. I can generate the file, but it doesn't contain the results of the query. Any one know where i'm going wro …
0
votes
2answers
93 views

SQL Server 2005 “FOR XML PATH” Grouping

I'm trying to generate a XML document from the SQL Server 2005 database by using "FOR XML" construct. There are two simple tables in the database with a one-to-many relationship: …
0
votes
1answer
54 views

SQL Server FOR XML adding in a tag

Heya, So I am pulling data from a SQL Server 2000 DB then converting it to XML using FOR XML AUTO. The XML I get back looks like this. <Order OrderNumber="2000004" DeliveryPi …
1
vote
1answer
120 views

.NET XmlReader with ‘FOR XML’ data

Recently, in company we got some MSSQL database from some old project which we have to integrate in current solution. Database has about 100-150 stored procedures that use FOR XML …
1
vote
3answers
473 views

MS TSQL for xml path question regarding xpath element

Hi there, I have the following TSQL statement: select tblName "TblName", structure "TblName/STRUCTURE", sqlRetrieve "TblName/SQLRETRIEVE", Identifier "TblName/IDE …
0
votes
4answers
380 views

Architecture Critique: SQL Server FOR XML into XSLT for Rich HTML Interface

Can I get some constructive feedback about the following architecture? Simplified Architecture Summary: Return XML from your SQL Server (using FOR XML) and pass it straight into …
2
votes
1answer
505 views

TSQL: How do I do a self-join in XML to get a nested document?

I have a SQL Server 2005 table like this: create table Taxonomy( CategoryId integer primary key, ParentCategoryId integer references Taxonomy(CategoryId), CategoryDescription varc …