Tagged Questions
The for-xml tag has no wiki summary.
4
votes
2answers
513 views
Create HTML Table with SQL FOR XML
I'm creating a HL7 Continuity of Care Document (CCD) using FOR XML statements in SQL Server 2008 R2.
I've done A LOT with this method, but this is the first time I have to represent part of the data ...
4
votes
1answer
427 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 ...
4
votes
3answers
165 views
How can I combine CTEs with a FOR XML clause?
I'm trying to generate some XML with various levels of nesting, and at the risk of over-simplifying, the output XML will be loosely of the format:
<invoice number="1">
<charge code="foo" ...
4
votes
1answer
85 views
SQL FOR XML Help
Prob an easy question, but I am new to forming XML in SQL 2005, but What would be the best FOR XML SQL statement to use to form the XML seen below from a table that looks like this?
Column1 ...
3
votes
1answer
282 views
SQL Server 2008 FOR XML PATH help
I have a table of history records. One field [added] has a datetime data type. What I'm trying to do is select a users 20 most recent records, but then group them by a string derived from the [added] ...
3
votes
2answers
573 views
Query to get XML output for hierarchical data using FOR XML PATH in SQL Server
I have a table with columns NodeId, NodeName, ParentNodeId and I want to ouput entire table data in the form of Xml like the following using SQL query. I think FOR XML PATH mode in Sql server can be ...
3
votes
1answer
2k 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 varchar(50)
)
with ...
2
votes
2answers
183 views
SQL Server FOR XML Enclosing Element?
Using SQL Server 2008, I have a query that emits a result set using FOR XML. Right now it is a non-compliant fragment.
How can I wrap my result XML in an enclosing element and then put a simple XML ...
2
votes
1answer
107 views
How do I get “select for xml” to output to several files?
Our customer is complaining that our export file is too long; they would like us to split the export into many files with no more than “n” records per file. Is there a way of doing this with “select ...
2
votes
1answer
352 views
Entity framework calling a FOR XML stored procedure truncates at 2033 characters
I have a stored procedure which uses a FOR XML statement at the end of it, and returns me some XML.
I am using .NET 4 and the Entity Framework and when I do a function import of this stored procedure ...
2
votes
1answer
651 views
Selecting Nested Xml Elements using FOR XML - Best Practice
I am working on retrieving data in Xml format from SQL Server 05 using FOR XML
What is the best practice for nesting elements in my resulting Xml?
Currently I am doing this:
Select
(
...
2
votes
3answers
197 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_Ttl1, string ...
2
votes
3answers
2k views
MS TSQL for xml path question regarding xpath element
I have the following TSQL statement:
select
tblName "TblName",
structure "TblName/STRUCTURE",
sqlRetrieve "TblName/SQLRETRIEVE",
Identifier "TblName/IDENTIFIER",
'2' ...
1
vote
2answers
24 views
SQL Server 2005 - TSQL For Xml query to get grouped departments and employees
For a database holding 3 tables:
Company
Department
EmployeeInDepartment
I would like to a xml like below:
<Companies>
<Company>
<CompanyName></CompanyName>
...
1
vote
2answers
40 views
Don't want the excess tag in my FOR XML Path('td')
I'm looking for an XML output like this:
<td id="1">123</td>
My current SQL statment:
SELECT EmpID AS "@ID", EmpNo FROM Employees FOR XML PATH('td')
Which gets me this:
<td ...
1
vote
1answer
136 views
SQL Server FOR XML AUTO help - ChildNode name
I have this query
;WITH history_cte AS
(
SELECT
ActivityId [id]
, Added [activityDate]
, [Year] [year]
, Make [make]
, Model [model]
, Engine [engine]
, MricId ...
1
vote
1answer
184 views
Count total number of rows without the limit
Currently its working but I want the xml to contain the total number of rows without the limit.
SET @query_result = (SELECT ID,Title
FROM
(
SELECT items.id AS ...
1
vote
1answer
108 views
Breaking SQL FOR XML query into specifically named parent elements
What I'm trying to do I think is quite easy so if you're familiar with FOR XML in SQL Server I'd recommend skipping to the bottom and reading the bold text part :)
I'm trying to use the FOR XML ...
1
vote
1answer
86 views
Nesting of FOR XML Expressions
I tried a FOR XML query similar to what's shown here under the subtitle 'Nesting of FOR XML Expressions'. My problem is that I have to have three XML element levels. The results should be something ...
1
vote
0answers
401 views
bcp queryout “for xml path” delimiters
I am trying to export data to an XML file using bcp command with queryout and select... FOR XML PATH option.
I have a test data of 5000 records.
Expected output is:
<row>
...
1
vote
1answer
77 views
How can I get Sql Server 2K8 R2 to return this xml without resorting to compatability mode
We are in the process of upgrading our sql server to 2K8 R2 and the output of a FOR XML AUTO query has changed.
The query outputs columns from three tables
The resultset returns three rows which ...
1
vote
1answer
384 views
Can't set output of 'WITH XMLNAMESPACES…FOR XML PATH' to a variable?
I have a query like the following:
;WITH XMLNAMESPACES ( DEFAULT 'http://www.somewhere.com')
SELECT ( 'SOMETHING' )
FOR XML PATH('RootNode'), TYPE
Running this works fine. However, I run into ...
1
vote
1answer
174 views
sql server 2000 and for xml explicit
I've got a problem with using for xml explicit in SQL Server 2000 (so I can't use the new path() stuff from sql 2005/8)
Essentially I have two tables and the XML structure I want to have is
...
1
vote
1answer
986 views
How do I suppress empty namespaces with FOR XML in Sql Server
We are encountering a strange problem with SQL Server 2005/2008 using the FOR XML with fragments of xml and namespaces. Here is the query in question.
WITH XMLNAMESPACES (
DEFAULT ...
1
vote
2answers
611 views
return parent and child data using FOR XML in a stored proc
If I have a parent table and a child table where there can be one parent to many children, how can I go about returning the following xml from a stored procedure in a stored procedure?
...
1
vote
2answers
308 views
How to return SQL Server 2005/2008 columns as identical child nodes using FOR XML query?
Basically I need to return some data from a SQL Server table in the following XML format:
<querydata>
<entity name="Person.Contact">
<row>
<field ...
1
vote
1answer
347 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 AUTO clause, so ...
1
vote
5answers
2k views
SQL 2005 For XML Explicit - Need help formatting
I have a table with a structure like the following:
------------------------------
LocationID | AccountNumber
------------------------------
long-guid-here | 12345
long-guid-here | 54321
To ...
0
votes
2answers
56 views
SQL Server 2000 XML PATH('') error
SELECT
**FIELDS**
AS [text()] --Stops the XMLPATH line rendering output as XML
FROM #temp
WHERE **CONDITIONS**
FOR XML PATH('')
This doesn't work in SQL server 2000 (unsupported).
I have tried ...
0
votes
0answers
126 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
0answers
111 views
Getting hierarchial table elements into xml format in SQL server 2005 FOR XML
I have two tables one for the codes and other is the child mapping table to represent a parent child relation with the codes table.
Table: Codes
Code ID | Code Value | code Group | code Desc
1 ...
0
votes
1answer
394 views
FOR XML subquery to append attributes to parent
Given the query below, is it doable to have elements found under the "Metadata" element as attributes on the "Event" element, without changing the where clause of the subquery (I.e. WHERE UniqueID = ...
0
votes
1answer
52 views
SQL 'FOR XML' query
I am trying to write a SQL 'FOR XML' query that produces an XML block in a specific xml format. The query I have so far is close but I am having problems getting it produce the exact xml format that ...
0
votes
3answers
332 views
Field name with space problem in case of for xml auto output
my sql is very simple
select ID as [Employee ID], EmpName as [Employee Name], Sal as [Salary] from Emp FOR XML AUTO, ELEMENTS, ROOT('customers')
when i execute this sql then i am getting output in ...
0
votes
1answer
112 views
Using FOR XML AUTO against a synonym
We've just switched to synonyms for linked server stuff, and noticed that our FOR XML output is no longer correct. When returning XML results from a view, we could alias the view and that would be ...
0
votes
1answer
1k views
t-sql most efficient row to column? crosstab for xml path, pivot
I am looking for the most performant way to turn rows into columns. I have a requirement to output the contents of the db (not actual schema below, but concept is similar) in both fixed width and ...
0
votes
3answers
223 views
Row concat from this query
I have this query:
SELECT DISTINCT IM.EDIFICIOS_ID, TI.TITULAR
FROM IMPORTACION IM
INNER JOIN I_EDIFICIO IE ON IM.IMPORTACION_ID=IE.IMPORTACION_ID
INNER JOIN I_EDIFICIO_TITULAR ET ON ...
0
votes
3answers
154 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 database has three ...
0
votes
3answers
1k 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:
...
0
votes
2answers
192 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 with SQL of (where ...
0
votes
1answer
429 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:spreadsheet' as "s",
...
0
votes
2answers
142 views
Writing the results of a FOR XML query to a file with C#.NET
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 wrong?
private static void ...
0
votes
2answers
1k 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:
1) Magazines
| ...
0
votes
1answer
141 views
Sql Server - Capture an XML query and save it to a table?
I would like to run a (extensive) query that produces one line of XML. This XML represents about 12 tables worth of relational data. When I "delete" a row from the top level table I would like to ...
0
votes
1answer
7k views
FOR XML PATH in Sql Server
NOTE: I have solved the majority of this problem but have run into a snag. Read to the bottom please. You will see where I added a (NOTE) section. TIA.
I have a rather extensive join query that I ...
0
votes
2answers
341 views
SQL Server FOR XML adding in a tag
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" DeliveryPickupCharge="5.9900" ...
0
votes
4answers
735 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 a XSL transform to ...