Tagged Questions

2
votes
1answer
38 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> …
2
votes
3answers
60 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 …
0
votes
2answers
35 views

SQLXML in SQL server

I'm having an small issue with SQLXML in SQL Server 2008. Here's my testing SQL query DECLARE @XMLTable TABLE(GameHistory XML) INSERT INTO @XMLTable VALUES( '<game xmlns="http: …
0
votes
1answer
50 views

Why is SQL 2005 calling CONVERT when passed a sqlxml parameter?

Hi I am declaring an SqlXml param and passing it a XmlReader. This then gets parametrized and the SQL gets executed all very well. However, when looking at the SQL which gets exec …
0
votes
2answers
245 views

SQLXML with Windows 2008 and SQL Server 2008

Hi all, 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 …
1
vote
3answers
357 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 …
0
votes
1answer
49 views

SQL - Formatting XML response value

Hi I want to receive my response XML in following format... <PersonDetails> <Name>Ajay</Name> <Age>29</Age> <ContactDetails> …
0
votes
1answer
140 views

How can I select tags from an SQL XML Query?

How can I retrieve the fields within an XML field in MS SQL? Every query I try does not work as intended whenever I use this XML code: <soap:Envelope xmlns:xsi="[URI]" xmlns:x …
3
votes
2answers
193 views

How to overcome OpenXML 8000 charachters limit

I'm loading an XML in SQL using OpenXML while declaring the variable the max i can go upto is 8000 chars : DECLARE @xml_text varchar(8000) Since text, ntext is not allowed to be …
1
vote
1answer
166 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 …
0
votes
1answer
128 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> < …
0
votes
1answer
57 views

Why would a schema make an XML column slower?

I have a table with an XML column. The documents are pretty large and numerous, and I've been trying various ways to improve the performance of basic queries. Because the documen …
2
votes
1answer
490 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 …
0
votes
4answers
720 views

MS SQL 2005 “For XML Path” Node Layout Question

I have the following query Select field1 as 'node1/field1', field2 as 'node1/field2', (Select field3 as 'child1/field3', field4 as 'child1/field4' From table …
0
votes
1answer
197 views

SQL Server For Xml Path

I am returning an xml result for a query. Given two tables: **Foo** FooId int FooName varchar(10) **Bar** BarId int FooId int (FK) BarName varchar(10) I create a select statem …

1 2 next
15 30 50 per page