Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
2answers
52 views

How do I return a single XML attribute from an XML document in SQL Server?

I am just trying to get the JobID attribute from some XML using the following script. Is there a better way to do this? PROCEDURE [dbo].[spProcessJobXML] @XMLPACKET as nvarchar(MAX) ...
4
votes
3answers
3k views

SQL server insert data from table into an XML variable

How can I insert a whole bunch of rows into an XML variable without using a cursor? I know I can do SET @errors.modify('insert <error>{ sql:variable("@text") }</error> as last into ...
3
votes
3answers
82 views

SqlDataReader are these two the same Which one is faster

I am working with SqlXml and the stored procedure that returns a xml rather than raw data. How does one actually read the data when returned is a xml and does not know about the column names. I used ...
3
votes
3answers
126 views

SQL Select FOR XML into Solr document

I'm trying to get a SQL select statement to generate XML which conforms to the Solr standard. Given a table like: id | name --------- 1 | one 2 | two 3 | three I need a result which is like ...
3
votes
2answers
78 views

SQL Assemblies vs Application code for complicated queries on large XML columns

I have a table with a few relational columns and one XML column which sometimes holds a fairly large chunk of data. I also have a simple webservice which uses the database. I need to be able to ...
3
votes
1answer
122 views

SELECT FOR XML, How to use?

This statement below: SELECT .... FROM .... WHERE .... FOR XML PATH('Booking'), ROOT('doc') This returns all the records in one XML string. I wish for each record to have its own XML ...
3
votes
3answers
124 views

rank over shredded xml

Given the following sample of XML and the select statement that shreds the xml into a relation, what I need is the second column of the select to be the ordinal of the category (ie 1 for the ...
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
40 views

TSQL getting record count and records in single query

I got this tasks table that has TODO items. We are retrieving the todo items and the count of Finished, Pending tasks using separate query in single stored procedure even though it is querying from ...
2
votes
1answer
28 views

Cast xml to varchar with no entities

This code DECLARE @x xml SET @x = ( SELECT 'A & B > C' FOR XML PATH('') ) PRINT CAST(@x AS nvarchar(1000)) Return: A &amp; B &gt; C How obtain my original string 'A & B > ...
2
votes
3answers
128 views

SQL Server 2000: Trouble with writing xml output

I need to set a variable @XMLOutput to the value of the subquery in XMLformat. The subquery works fine on its own, but when the whole query is run i get the error: Incorrect syntax near XML. ...
2
votes
3answers
273 views

Problem during SQL Bulk Load

we've got a real confusing problem. We're trying to test an SQL Bulk Load using a little app we've written that passes in the datafile XML, the schema, and the SQL database connection string. It's a ...
2
votes
1answer
115 views

Flattening XML in SQLXML

I have this XML in T-SQL: <Elements> <Element> <Index>1</Index> <Type>A</Type> <Code>AB</Code> ...
2
votes
3answers
582 views

XML output from MySQL

is there any chance of getting the output from a MySQL query directly to XML? Im referring to something like MSSQL has with SQL-XML plugin, for example: SELECT * FROM table WHERE 1 FOR XML AUTO ...
2
votes
1answer
740 views

Sql XML Path with different children

I have done a lot of XML PATH statements, but this one escapes me or might not even be possible with multiple different children. The end result should look like this <Process> ...
2
votes
1answer
2k views

How can I use sp_xml_preparedocument on result of NTEXT query in SQL 2000?

I know NTEXT is going away and that there are larger best-practices issues here (like storing XML in an NTEXT column), but I have a table containing XML from which I need to pluck a attribute value. ...
2
votes
1answer
3k views

Convert C# 2.0 System.Data.SqlTypes.SqlXml object into a System.Xml.XmlNode

I seem to always have problems with converting data to and from XML in C#. It always wants you to create a full XMLDocument object even when you think you shouldn't have to. In this case I have a ...
1
vote
1answer
29 views

Edit XML with SQL query SQL Server 2008 R2

I have the following problem and hope someone could help. I have a SQL Server database with a couple thousand rows. Every row consist of a column with an ID and a column with XML data. This XML ...
1
vote
1answer
23 views

using SQLXML in ADO.NET, who needs to dispose?

I cannot find an documented answer to this question. If I'm using a SqlXml object to pass a xml to a StoredProc, who is responsible of disposing the XmlTextReader I'm creating? From what I found so ...
1
vote
1answer
34 views

Trying to replace dbms_xmlgen.xmlget with sys_xmlagg

I'm working on parameterizing some JDBC queries against Oracle 10gR2. Most of the queries are of the form: String value = "somevalue"; String query = "select dbms_xmlgen.xmlget('select c1, c2 from ...
1
vote
1answer
135 views

SQL pivot dynamic columns out of an nvarchar column containing xml

I have been given a table with the following columns and some example data: ID Title FieldsXml [nvarchar(max)] -- ----- ------------------------- 1 A <Fields><Field ...
1
vote
2answers
25 views

convert sql xml datatype to table

Given the SQL... declare @xmlDoc xml set @xmlDoc = '<people> <person PersonID="8" LastName="asdf" /> <person PersonID="26" LastName="rtert" /> <person PersonID="33" ...
1
vote
1answer
98 views

SQL Server 2008 R2 SQLXML and xpath query filter not working

I have the following schema returning four projects when running sql xml: <xsd:element name="iati-activities" sql:relation="IATI.ACTIVITIES" sql:key-fields="BUSINESS_UNIT"> ...
1
vote
3answers
94 views

SQL Server 2008 XML update in a Fragment?U

I have a SQL Server 2008 table with 50k rows, each with an XML fragment in a varchar column that looks like this: <infoElems> <infoElem id="1" Name="somename" money="3399.3984939" ...
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
174 views

XML Insert attribute

When I update an xml column: SET XmlDocumentData.modify('insert attribute User {sql:variable("@User")} as last into (/Configuration/Process/Tasks)[1] ') I am getting an error: Msg 6905, ...
1
vote
1answer
246 views

SQL XML Xquery data query using a variable in the node selection?

I am obviously missing something right in front of me, however I have this SQL 2008 XML query as follows: select distinct cast(customFields_xml.query('data(/root/cf_item_type)') as varchar) as c1 ...
1
vote
1answer
180 views

Learning how to use SQLXML data types

I've been given the challenging task to become familiar with using SQLXML data types in C# using Microsoft SQLServer. None, of my C# or database books cover this and there are no tutorials I can find ...
1
vote
2answers
338 views

XML datatype in SQL Server and LINQ query

I want to retrieve the XML data from SQL Server database and bound it to the DropDownList using LINQ query on C#. XML field in clients table: <root> ...
1
vote
1answer
131 views

Query ELMAH's XML field

The stock ELMAH_Error table uses an nText field to store an Error entry. I found that by adding a field of type XML; then adding this new field to the INSERT statement of the SPROC that populates the ...
1
vote
1answer
244 views

Adding a unique row count to a SQL 2008 “for xml path” statement?

Ok, not sure if this is possible to do.. I have a query that returns just simple records from the database, but formatted out as XML as follows: select name, address, dateCreated, flag from table ...
1
vote
1answer
205 views

xsd schema file must be annotated in SQLXMLBULKLOADLib.SQLXMLBulkLoad4Class?

Here is an example to use SQLXMLBULKLOADLib.SQLXMLBulkLoad4Class - [STAThread] static void Main(string[] args) { try { SQLXMLBULKLOADLib.SQLXMLBulkLoad4Class ...
1
vote
2answers
463 views

Invalid character value for cast specification

I am inserting data into SQL 2005 using SQLXMLBulkLoad.SQLXMLBulkload.3.0 My data table has following column: objDataTable.Columns.Add("TaskDateTime", System.Type.GetType("System.DateTime")) My bulk ...
1
vote
2answers
476 views

SQLXML without XML encoding?

I'm using a generic system for reporting which takes data from a database view (SQL Server 2005). In this view I had to merge data from one-to-many relations in one row and used the solution described ...
1
vote
2answers
59 views

SQL Server 2005 FOR XML

I want to export data from a table to a specifically formatted XML file. I am fairly new to XML files, so what I am after may be quite obvious but I just cant find what I am looking for on the net. ...
1
vote
2answers
404 views

Exposing web based XML data via a SQL Server view

It seems that SQL Server has a fair amount of XML support. Mostly I've seen info regarding storing XML in SQL Server, querying XML data stored in SQL Server, and exposing data as XML. Is the ...
1
vote
4answers
1k views

SQL Server: Output an XML field as tabular data using a stored procedure

I am using a table with an XML data field to store the audit trails of all other tables in the database. That means the same XML field has various XML information. For example my table has two ...
1
vote
2answers
633 views

How do I overcome OpenXML's 8000 character limit?

I'm loading an XML in SQL using OpenXML while declaring the variable the max i can go up to is 8000 chars : DECLARE @xml_text varchar(8000) Since text, ntext is not allowed to be used with openXML ...
1
vote
1answer
630 views

Accessing XML stream from ADO against SQL Server 2008

We are migrating ASP code that used ADO to connect to SQL Server 2000. For the most part the code migrated without a hitch to SQL Server 2008 after defining the connection, but one type of query is ...
1
vote
1answer
400 views

XML xs:choice SQLXMLBulkload

I have some XML files that I need to batch process into SQL Server. The following Schema and XML sections outline an area I'm having trouble with. <xs:complexType> <xs:sequence> ...
1
vote
4answers
1k views

SQLXML with Windows 2008 and SQL Server 2008

I have an application that uses SQLXML to access data on the database. We have it working on a Windows 2003 server and SQL Server 2005. Now the client wants to install it on Windows 2008 and SQL ...
1
vote
1answer
741 views

SQL Pivot using an XML column

Does anyone have an example of a pivot using a table with an XML column in it - specifically turning some of the elements in the xml column into a column in the pivot table? I'm trying to build one, ...
0
votes
1answer
33 views

OutOfMemoryException with SQL XML Insert

I have a large XML file (150mb range) on a local disk and using ADO.NET to put it into an nvarchar(max) column. The code looks like this (heavily edited so stuff to leave just the relevant part of the ...
0
votes
0answers
16 views

Perform an updategram without using SQLXML

Currently want to eliminate the dependency of SQLXML in our project. But we a few codes that uses updategrams. Can't find any solution on how to perform it using ADO.Net.
0
votes
1answer
32 views

Update XML in SQL Server 2005 w/out Node causes Null Error

So i have a script to update/Insert the XML value of the following Node to True: <Submitted>False</Submitted> The issue is not all rows will contain the Node and because of this, it ...
0
votes
1answer
25 views

How do I select a maximum date from SQL Server 2005 XML Column?

I am new to XML programming in SQL Server. This will probably be a simple question for you guys! I have a database table called TestXML, in SQL Server 2005. It has one column testXML with xml ...
0
votes
1answer
45 views

Special Charcter Issue in XML Creation using SQLXMLBULKLOADLib - C#

I am trying to load csv file using SQLXMLBULKLOADLib which first converts csv to xml and then maps it to database model. My cvs file contains special character. When SQLXMLBULKLOADLib loads it in XML, ...
0
votes
0answers
47 views

Need Help to Insert Schema & data through SQLXMLBulkLoad

I am trying to use SQLXMLBulkLoad to insert Data in Multiple Tables. I am using Point 2 Data loading which will list all the Property and Insert in my Database tables. Both myxsd.xsd (Schema File) ...
0
votes
1answer
27 views

SqlXml: Wrong driver for OLEDB?

I am trying to execute this stored proc from sqlxml. I know that the command never reaches sql server, because I have monitored traffic with the profiler. There are no parameters and my Exec ...
0
votes
1answer
259 views

Insert and Updating Multiple XML records to SQL 2008 - A solution, but maybe not the correct one?

Ok, so I have the following two test/example queries to INSERT and UPDATE data from XML into a SQL 2008 table. Fairly basic stuff in the fact the incoming XML structure will be matched to that of the ...

1 2