The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
0answers
27 views

Evaluating expression in SQL with XQuery (without stored procedure)

I am trying to evaluate an expression in a function, and it happens that XQuery is not able to get string from the SQL variable DECLARE @XML AS XML = '' DECLARE @Formula AS NVARCHAR(MAX) = '1+1' ...
2
votes
1answer
40 views

xquery replacing value if node exist

I'm working with xQuery and I'm trying to replace the value of test element if the element tag Active does not exist under the User element. (I added quotes to be able to display it here properly...) ...
0
votes
0answers
13 views

Linking .xq file with .xml file

I have been trying to query an xml file in Merlin. Here is the line of code I have been using: xqilla -i restaurant.xml query.xq | xmllint --format - I get the error : "Cannot read query content ...
0
votes
0answers
26 views

XML word count in files

We get multiple XML files that has multiple table data in one XML file. One of the issue is that in some files we get TEMPLATE ID as null, this is required filed and should never come as null. Is ...
1
vote
1answer
43 views

XQUERY select different rows in multiple tags

I have a table in oracle create table MOVIE (MOVIE_ID VARCHAR2(10 BYTE), TITLE VARCHAR2(50 BYTE), DIRECTOR VARCHAR2(50 BYTE), WRITER VARCHAR2(50 BYTE), GENRE VARCHAR2(50 BYTE), RELEASE_DATE DATE, ...
0
votes
1answer
43 views

Sql server xquery returning element name

I have the following xml declare @xml xml = '<Values><a>AAA</a><b>BBB</b></Values>'; select @xml.query('for $k in /Values return concat(",@", "=''", $k, "''")') ...
0
votes
1answer
17 views

Query SQL XML field on type

So I've got an xml field in my DB. Sometimes what I'm doing fails and I get the following in my field: <errorMessage>No response received!</errorMessage> How do I query my DB to return ...
1
vote
1answer
153 views

select multiple nodes xml

I'm retrieving xml formatted text from ntext fields (sample format of a row below): <root> <DocInfo> <CompanyName>Some Company</CompanyName> ...
0
votes
1answer
127 views

sql:variable to define xpath in MS-SQL nodes

I have scanned a few examples and commentaries from different blogs, and although I have seen a lot of examples using sql:variable to select certain nodes/attributes, I am not sure something as simple ...
2
votes
4answers
122 views

Questions About Sort Order Using XQuery in SQL Server

Is the result of a SELECT like the one below using XQuery in SQL Server guaranteed to be in document order, that is in the original order the nodes are listed in the xml string? DECLARE @x XML = ...
0
votes
2answers
60 views

Xquery Multiple Results in a node

When I try to execute my Xquery Code on xml file, I am getting multiple results in one of my fields. Here is my xml file <Actors> <Actor name="NTR"> <Movie TITLE="Yamadonga" ...
1
vote
1answer
38 views

Trying to get all xml modes with SQL Server, what am I doing wrong?

I have the following xml in a table cell, in column MyColumn: <BSDL xmlns="..." xmlns:i="..."> <dateTime>2012-12-30T00:00:00Z</dateTime> ...
3
votes
3answers
263 views

Using SQL to transpose/flatten XML structure to columns

I am using SQL Server (2008/2012) and I know there are similar answers from lots of searching, however I can't seem to find the appropriate example/pointers for my case. I have an XML column in a SQL ...
2
votes
1answer
108 views

How can I write an XQuery accessing XML stored in separate SQL Server tables?

I have created a new database with two tables to test SQLServer 2008 XML functionality. If I will succeed in obtaining the desired behaviour I will have to create about 50 tables to then import lots ...
1
vote
1answer
64 views

SQL XML query filter on more than one element

<Root> <Sub> <Name>a</Name> <Value>1</Value> </Sub> <Sub> <Name>b</Name> ...
0
votes
0answers
38 views

How to write xquery for this case in sql query

I have the xml column (memberof) which holds the value like <memberof>CN=Domain Admins,CN=Users,DC=svr2003dc,DC=local</memberof> ...
2
votes
1answer
151 views

How to check VARCHAR(n) for well-formed XML before CAST/CONVERT

My company has a logging table containing a VARCHAR(N) column in which a string is placed that is supposed to be XML, but as it turns out it is not always well-formed. In order to perform analysis on ...
2
votes
1answer
392 views

Updating an attribute with xquery in sql server 2008 R2

I have a table that defines the layout of a form in XML. There are <Control ...> nodes inside of it that have attributes like Id (GUID), and DataType (char), etc... This XML data is used to ...
0
votes
2answers
70 views

Using Value and Query Xml Methods not returning correct results

I have a table! CREATE TABLE [dbo].[XmlTable]( [XmlId] [int] IDENTITY(1,1) NOT NULL, [XmlDocument] [xml] NOT NULL, CONSTRAINT [PK_XmlTable] PRIMARY KEY CLUSTERED ( [XmlId] ASC )WITH ...
1
vote
2answers
129 views

Parameterizing an Array of Ints into SQL Variables in an XQuery Expression

We store section IDs (ints) in XML in a column and use XQuery to find items with the specified section IDs. I'm trying to expand the code (in C#) to be able to use an array of ints that are sections ...
1
vote
2answers
79 views

Want to retrieve only unique nodes from XML using XQUERY

I have XML as follows: <Root> <Inv><Id>1</Id><Name>John</Name></Inv> <Inv><Id>2</Id><Name>Tom</Name></Inv> ...
3
votes
2answers
261 views

TSQL Removing tab and line feed from xml values

I'm trying to select a value from a xml column field with the following query: SELECT LTRIM(LocalData.value('(/root/questionphrase[@ln="nl"]/xhtml/p)[1]', 'nvarchar(max)')) FROM Question The ...
0
votes
0answers
224 views

Sql server xquery insert attribute with a custom value in especific nodes

I have this simple Xml set @p_Documentos= ' <documentos> <documento ID="1" IDTipoDocumento="1" IDTurma="144" IDEmpresa="1" /> <documento ID="2" IDTipoDocumento="1" IDTurma="144" ...
0
votes
1answer
90 views

SQL, xQuery: Find duplicates

I have a moderate knowledge of SQL and xpath, but none of xquery. How might I write a query to get all records where the XML contained within one field has two instances of the same element which also ...
0
votes
1answer
163 views

Retrive data from XML node grouping with attribute value in Xquery

I have XML Data like <Answers> <AnswerSet> <Answer questionId="Name" IncludeInGroup="false">ds</Answer> <Answer questionId="Email" ...
0
votes
1answer
125 views

MySQL Query to XQuery

I'm trying to get the equivalent of the following MySQL Query to an XQuery SELECT S.Classification, COUNT(S.Classification) AS "No. Students", AVG(S.GPA) AS "AVG Class. GPA" FROM Student S GROUP ...
0
votes
0answers
51 views

XQuery - SQL or Programming? [closed]

I'm beginning to use XQuery in my work. According w3schools.com, XQuery is to XML what SQL is to database tables. But is it true? How should you wire your brain in programming XQuery? Programming ...
2
votes
1answer
300 views

xquery return Boolean if node exists at a certain location or not

I have XML similar to the following in a SQL 2008 database, stored in an XML field. I would like to return a true or false indication if a node exists in a specific section of the XML. <root> ...
0
votes
1answer
241 views

delete all child nodes after nth child node from xml in sql

I have the following XML structure : <Config> <DeviceFeatures> <IMEI>7844454564</IMEI> <PhoneNo>12354</PhoneNo> <ICCIDNo>455554</ICCIDNo> ...
3
votes
1answer
443 views

Need a complex Xpath using sibling children, ancestors

I need to find attribute values based on other values pulled from parent's/grand-parent's sibling's children. I think it's going to take 2 different expressions. So given the following XML (which is ...
0
votes
2answers
90 views

sum two xml nod with one name but different attribute

I have an sql query. I need to sum two xml nodes with the same names () but different attributes (ident= "1cat" + "3cat"). I can get nodes by their number ([1] and [3]) but I need to sum them by ...
0
votes
3answers
282 views

xquery get node value

I'm trying to get value of cat but it retuns me null. Please, help me to get this value. Thanks in advance! DECLARE @xml XML SET @xml = ' <cat:catalog xmlns:cat="http://datypic.com/cat" ...
0
votes
1answer
205 views

Efficient way of doing “insert only if node with specific value does not exist” for an xml column

Say, I have a xml column that looks like this: <mi> <m>42</m> </mi> Assuming table: Word(WordId:bigint, Wordtext:nvarchar, MessageIndex:xml) I do NOT want the ...
0
votes
1answer
214 views

Performance issue in retriving data from XMLAttribute using Xquery

I have one history table which has information of transaction record of master table, in this table I have used XML column to store that transaction information. Table structure with data look like. ...
0
votes
1answer
80 views

Search for multiple values in an xml column

Environment: SQL Server 2012. Primary and secondary (value) index is built on xml column. Say I have a table Message with xml column WordIndex. I also have a table Word which has WordId and WordText. ...
0
votes
2answers
101 views

XQuery syntax to account for schema definition

Environment: SQL Server 2012. Say I have a table Message with xml column WordIndex. I also have a table Word which has WordId and WordText. Xml for Message.WordIndex has the following schema: ...
1
vote
1answer
264 views

Delete xml node from SQL Server 2008 r2 table column based on attribute value

I have an xml structure as follows <DifficultyRule xmlns="urn:gjensidige:processguide:201201"> <Id>fc39f423-05c0-4de9-ae46-12fe3c0c279b</Id> ...
0
votes
2answers
998 views

How to read the value of XMLColumn from SQL Server table

I am new to xquery in SQL Server. This the value in ErrorXml column in ReponseRecord table. This is how the sample data for ErrorXML column. Row1: <Data> <Error ...
1
vote
2answers
276 views

XQuery to combine node values with Group By logic

I’m looking for an XQuery that will take: <root> <entity> <entityid>1</entityid> <sometext>this is some text</sometext> </entity> ...
1
vote
2answers
379 views

XQuery: Finding rows which contain specified xml data

I have a table which contains many rows, each with a column named "RecordData" that contains XML data that I wish to search upon. Three rows worth of example xml data from this column is given below: ...
3
votes
1answer
515 views

How to get value from XML attribute using Sql:Variable in xquery

I want to get attribute value from XML using Xquery. MY XML is <Answers> <AnswerSet> <Answer questionId="NodeID">155</Answer> <Answer questionId="ParentNode" ...
0
votes
1answer
136 views

Using variable in XQuery expressions

using Xquery, how can I embed variable in an xquery expression on the following xml document. I have the following xml document <CD> <TITLE>Picture book</TITLE> ...
2
votes
1answer
848 views

Test for a specific node value in an XML column including potentially empty nodes

I have an XML column in a SQL Server 2008 database with values like the following simplified examples: Case 1 <root> <child>sometimes text here</child> <otherstuff ..... ...
1
vote
1answer
267 views

T-sql data migration from xml to columns

I have temp table #xml that have 2 columns: CREATE TABLE #xml ( id int, xmlroutes xml ) INSERT INTO #xml (id, xmlroutes) (SELECT TOP 50 Id, CAST(RouteParameters as xml) as xmlroutes FROM ...
0
votes
1answer
76 views

External Variable in XPath

I am trying to use the dynamic Xquery and forming the path using the external variable. My query is: xquery version "1.0-ml"; declare variable $idValue as xs:string external; declare variable ...
3
votes
1answer
616 views

How to decode &amp; etc using XQuery/SQL?

Using Microsoft SQL Server... declare @x xml set @x = '<Example>&lt;You &amp; Me&gt;</Example>' select cast(@x.query('/Example/text()') as nvarchar(50)) The result is ...
0
votes
0answers
320 views

XQuery 1.0 to get Node with max value in Sql

The following sql query works but will not treat the content of the 'Price' node as an integer. But rather as a string. Therefore it will return me 80 instead of 200. declare @xmldata xml set ...
1
vote
1answer
182 views

SQL XQuery - Insert an integer sql variable value into an xml variable

I got this query: DECLARE @UserId INT DECLARE @StateChangeInformation XML SET @UserId = 1 SET @StateChangeInformation = '<stateChangeInformation ...
2
votes
1answer
124 views

XML Column - Cannot atomize/apply data() on expression that contains type 'xxx' within inferred type

Introduction I'm trying to query an xml column in SQL server 2008, but I get an error I can't fix. This is the schema I use: CREATE XML SCHEMA COLLECTION PublicationSchema AS ' <xs:schema ...
1
vote
1answer
97 views

Xquery: Selecting n number of records at a time

I'm using XQUERY, I have 25000 records saved in Database, I want to select these records in chunks(1000), How do I get the records recursively?

1 2 3 4