Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
2answers
191 views

Sort all attributes of XML in SQL query using XQuery

How can get the XML with sorted attributes using XQuery in SQL? for example for this XML: <root><book b='' c='' a=''/></root> must return: <root><book a='' b='' ...
4
votes
1answer
87 views

SQL Server 2008 find and replace elements in XML column

In the following table: CREATE TABLE [dbo].[GDB_ITEMS]( [ObjectID] [int] NOT NULL, [UUID] [uniqueidentifier] NOT NULL, [Type] [uniqueidentifier] NOT NULL, [Name] [nvarchar](226) NULL, ...
4
votes
2answers
35 views

SQL Server XQuery in one line?

DECLARE @myXml XML SET @myXml = CONVERT(xml, '<a key="2"></a>', 1) SELECT s.value('@key', 'VARCHAR(8000)') AS myKey from @myXml.nodes('/a') t(s) answer : which is fine. ...
4
votes
2answers
194 views

Which is faster .exist or .value in a where clause?

I am doing some crude benchmarks with the xml datatype of SQL Server 2008. I've seen many places where .exist is used in where clauses. I recently compared two queries though and got odd results. ...
3
votes
2answers
51 views

T-SQL, XQuery Invalid Column

I'm just learning XQUERY and trying to accomplish what I thought would be very simple. Here's my T-SQL code: DECLARE @XML xml set @xml = ...
3
votes
3answers
383 views

Search for multiple values in xml column in SQL

This is my table BasketId(int) BasketName(varchar) BasketFruits(xml) 1 Gold ...
3
votes
2answers
288 views

The best way to extract data from xml with xquery

Consider the following xml: <Persons num="3"> <Person age="5" /> <Person age="19" /> </Persons> There is a need to extract this xml into a relational table: Persons ...
3
votes
1answer
390 views

How to replace a part of XML node in SQL Server 2005

I would like to know how I can update a part of the text of an XML node in SQL Server 2005 using xquery In the following example I would like to replace the word "very" with "excellent" declare ...
3
votes
1answer
220 views

When querying XML in SQL Server 2005, multiple tags of the document are in the same row

Update to provide clarification Here's a full copy of one of the xml files I"m having trouble with. <Grower_Run xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" ...
2
votes
1answer
44 views

TSQL How to select employee with skills in xml column

In a table schema like below CREATE TABLE [dbo].[Employee]( [EmployeeId] [uniqueidentifier] NOT NULL, [Name] [nvarchar](50) NOT NULL, [Location] [nvarchar](50) NOT NULL, [Skills] ...
2
votes
1answer
32 views

Update XML Node with Conversion in SQL Server 2005

I have a column that contains XML data, but is TEXT type and not XML type. (I have to leave it like this for another reason). Basically i need to cast it to NText first and then XML. The only problem ...
2
votes
1answer
74 views

Fixing SQL Update using XQuery modify to work on SQL 2005

I'm trying to move a bunch of fields from a table into an xml blob contained within the same table. After this is successful I will be removing the column from the table. A really simple version ...
2
votes
1answer
79 views

any element in XML schema blocks XQuery

I have the following XML Schema: CREATE XML SCHEMA COLLECTION test AS ' <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <xsd:element name="PointConf"> ...
2
votes
1answer
34 views

Implement an IN Query using XQuery in MSSQLServer 2005

I'm trying to query an xml column using an IN expression. I have not found a native XQuery way of doing such a query so I have tried two work-arounds: Implement the IN query as a concatenation of ...
2
votes
1answer
117 views

How to optimise the 'XQuery' SQL

I have an XML hierarchy like this in an XML type column of a table with 10,000 records- <Root> <Elem1> <Parent1> <Separator> ...
2
votes
1answer
148 views

How to extract values from XML without hard coding names of elements using XQuery in SQL Server?

I have xml stored in a table and table with names/paths of the elements I am interested in. I would like to extract values of these elements without hard coding paths and/or names of the elements. ...
2
votes
1answer
62 views

MSSQL 2008 get all levels of item

say I have xml in a SQL xml type field e.g. @x='<root> <item> <title></title> <item> <title></title> ...
2
votes
1answer
156 views

Need a help Local.name(.) xquery function

can any one tell me how Local.name(.) xquery function works. regarding sql construction problem i post a question in a forum and they give me answer. where Local.name(.) xquery function is used but ...
2
votes
2answers
161 views

Use XQuery to get at this data

I am new to XQuery and am having some problems with it. Here is my example. I have this variable: declare @xmlDoc XML it has the following xml stored in it: <?xml version="1.0" ...
2
votes
1answer
191 views

Get all the Subchild values using XQUERY-SQL

I'm attempting to create an xquery expression that will return all the subchild node values. Now I get only the first subchild under each child. I have the following XML: <order> ...
2
votes
2answers
255 views

In an SQL XQuery result set, is there a way to make the “value” operator return null on missing elements?

When getting values out of xml attributes, using the xquery value operator, missing attributes are returned as null. Is there a way to do the same thing without resorting to CASE WHEN ...
2
votes
1answer
90 views

Convert XML Data to Tabular and XML Form in SQL Server 2005

This is my XML <ROOMTYPES> <ROOMTYPE Id="1" Total="5"> <ROOMFACILITIES> <FID>101</FID> <FID>103</FID> <FID>105</FID> ...
2
votes
2answers
428 views

SQL Server 2008 XPath

We're trying to filter a set of XML based on a value we provide. We have the following XML in an XML field with our database, and if passing through the number "5052095050830", we need to find this ...
2
votes
1answer
98 views

XQuery when a node doesn't exist

In the following XQuery syntax, I've added in the last table with a CROSS APPLY, and it seems to filter out some records. It would seem that this is the case because the node defined is optional. I ...
2
votes
1answer
226 views

Add an attribute to the root element

How can I add attribute to the root element of any XML documents which is a column in a table called book this table contains bookid int title varchar(10) ...
2
votes
1answer
1k views

Sql Xquery How to Replace text in Update Query

Table is named as MasterTable Columns ID type BIGINT, Name type VARCHAR(200) (stores xml type data for some reasons) Name contains data structured as ...
2
votes
1answer
842 views

xQuery LIKE-operator (starts-with)

Value in the field is as follows <en-US>Parameter23</en-US> <it-IT>Parameter</it-IT> SQL query is select * from parametermaster where cast(ParameterName as ...
2
votes
3answers
295 views

Transform XML data into Tabular format in T-SQL

I would like to know how I could transform XML hierarchical data into tabular format and join with other relational database tables in SQL Server 2005 T-SQL (XPath/XQuery). For instance, ...
2
votes
4answers
875 views

XPath/XQuery: Select a root node with its attributes without childs

I have an xml: <Customer id=""> <Name /> <Address /> </Customer> I would like to select ONLY a root node with its attributes without its child nodes: <Customer id=""/ ...
1
vote
1answer
20 views

How to retrieve value of attribute in xml datatype based on parameter name in SQL Server 2008 R2?

I have the following sample xml in a column of xml data type: <diagnostics CurrentIterationNumber="79" TotalItemsProcessed="37847" ItemsProcessedLastIteration="75" ...
1
vote
1answer
25 views

XML attributes query in Qexo.

I've the following XML, I used Xquerry to query some results using Qexo. How to query only the attributes like affiliation? Like if i want to query all affiliations of each author? I could do the ...
1
vote
2answers
88 views

Compare two sets of XML data using XQuery in SQL Server

Suppose I store employee data in a xml column in my log table. Sometimes data is also updated in the xml column from a stored procedure. Here is the sample example DECLARE @XML1 XML DECLARE @XML2 ...
1
vote
2answers
54 views

Extract data from xml

i came to know that the below sql can be used to extract data from xml SELECT A.B.value('(SearchField)[1]', 'VARCHAR(255)' ) SearchField, A.B.value('(FilterCondition)[1]', 'VARCHAR(25)' ) Operator, ...
1
vote
1answer
42 views

Insert xml element contents(which is also xml tags) into column in SQL Server 2005

For a table schema like below CREATE TABLE [dbo].[Employee]( [EmployeeId] [uniqueidentifier] NOT NULL, [Name] [nvarchar](50) NOT NULL, [Location] [nvarchar](50) NOT NULL, [Skills] ...
1
vote
1answer
39 views

selecting individual xml node using SQL

I have a large XML note with many nodes. is there a way that I can select only a single node and all of its contents from the larger XML? i am using sql 2005
1
vote
1answer
101 views

SQL XQuery command to recursively get descendants of same type

I'm new to XQuery in SQL but I'm understanding the basics of getting nodes and the values of the queries. My issue now is handling a hierarchy of unknown depth. The relationship is Contract -> ...
1
vote
1answer
67 views

SQL XQuery and Cross Apply problems…too many rows in results

I have a table of contracts. There are several columns and finally an XML column representing the whole contract. Inside the contract are projects (1 or more) and inside each project are 1 or more ...
1
vote
1answer
182 views

Updating XML attribute in SQL Server XML column

I am trying to update a node of in my XML which is stored in a SQL Server XML column, the line below works if my XML is in a XML element but now I somehow need to change it to XML attributes, ...
1
vote
2answers
49 views

Updating SQL Server XML node

I am trying to update a node Qty of my XML which is stored inside a SQL Server XML column, no error occurred but my field did not got updated. Please advice. Thanks. XML data copied from SQL Server ...
1
vote
1answer
111 views

Transform XML to Table data using XQuery in SQL Server

Is it possible to achieve the following table from of output using XQuery in SQL Server Edit: A change in my requirement, Consider i have a table which stores the below xml and also UserID DECLARE ...
1
vote
1answer
139 views

xQuery - Returning MAX Row

I'm pulling what hair I have left out! The resultset is all good but I now need to do something else. Here's the T-SQL SELECT documentdate , x.a.value('(Date)[1]','varchar(50)') as [Date] , ...
1
vote
2answers
748 views

SQL Server XML Type Select Where Attribute = X From Any Tag

select * from tablename where CONVERT(xml, Sections).value('(/sections/section/@value)[1]', 'varchar(1)') = 'f' will properly retrieve a record with the following value in the Sections column: ...
1
vote
1answer
99 views

XQUERY SQL - How to pass individual node element(s) as variables?

Is there an alternate way to pass node elements dynamically than the one shown below - ? select XMLTable.XMLCOL.query('//*[local-name()=sql:variable("@node")') For e.g., even if I am trying to give ...
1
vote
2answers
278 views

XQUERY - How to use the sql:variable in 'value()' function?

The query below is trying to select a child node of a given Node. How do I use a variable instead of hard coding the child node such that I can pass them as parameters in a SProc? declare @T ...
1
vote
1answer
50 views

How do I use an XQuery result list as a relational table in SQL Server 2008?

I have a table with an XML column: declare @xmltest xml; set @xmltest = '<list> <el> <x>1</x> <y>one</y> </el> <el> <x>2</x> ...
1
vote
1answer
306 views

Modify XML values identified through cross apply

I've got a data issue with some values stored in an XML column in a database. I've reproduced the problem as the following example: Setup Script: create table XMLTest ( [XML] xml ) --A row with ...
1
vote
1answer
68 views

sql xml order processor

I was wondering if anyone could point me to a tutorial or give me suggestions on processing an XML "Request For Quote" document. Using SQL Server 2005. For example: <MyQuote> ...
1
vote
1answer
49 views

How can grouping be done to the following code/grouping be done in XML data

select first name ,last name ,employeeID ,CASE WHEN ...
1
vote
2answers
140 views

XQuery and Node Ids

I have this variable: declare @xmlDoc XML it has the following xml stored in it: <?xml version="1.0" encoding="utf-8"?> <NewDataSet> <Table1> ...
1
vote
3answers
366 views

Update XML field with no text in T-SQL

I've come across a problem in updating an SQL field in that what I've written works perfectly for xml nodes with a text present, however it trips up when the node is empty. <filemeta ...

1 2