Tagged Questions
XQuery is a functional language designed to query and manipulate XML data with XPATH.
13
votes
1answer
1k views
Using XQuery in Linq To SQL?
Let's say I have a table that has a column of XML type data. Within SQL, I can execute the following statement:
select top 10 *,
Content.value('(/root/item/value)[1]', 'float') as Value
...
12
votes
4answers
147 views
Is there a JSON equivalent of XQuery/XPath?
When searching for items in complex JSON arrays and hashes, like:
[
{ "id": 1, "name": "One", "objects": [
{ "id": 1, "name": "Response 1", "objects": [
// etc.
}]
...
8
votes
2answers
2k views
how to retrieve parent node using xquery?
I am using xml and xqueries.I usually use an xpath expression relative to a parent node to retrieve its child node. But, I am not sure how to do the opposite meaning if I have a child node, how do I ...
8
votes
2answers
5k views
[SQL Server 2005]: XML query() works, value() requires singleton found xdt:untypedAtomic
I have a typed xml document stored as text. So I use CONVERT the data type to xml by using a Common Table Expression in order to be able to use XML methods:
WITH xoutput AS (
SELECT CONVERT(xml, ...
8
votes
5answers
4k views
How can I remove duplicate nodes in XQuery?
I have an XML document I generate on the fly, and I need a function to eliminate any duplicate nodes from it.
My function looks like:
declare function local:start2() {
let $data := ...
7
votes
1answer
6k views
Using XQuery/XPath to get the attribute value of an element's parent node
Given this xml document:
<?xml version="1.0" encoding="UTF-8"?>
<mydoc>
<foo f="fooattr">
<bar r="barattr1">
<baz ...
7
votes
3answers
2k views
XQuery library under Python
Hey
Is there any existing way to run XQuery under python? (not starting to build a parser yourself in other words).
I got a ton of legacy XQuery that I want to port to our new system, or rather I ...
6
votes
5answers
220 views
How to suppress indentation for XML output in XQuery
Is there a way from within an XQuery to remove indentation of the XML output?
Eg. say I had an XQuery of;
<foo><bar/></foo>
producing an XML result document of;
<foo>
...
6
votes
2answers
1k views
Using XPath, How do I select a node based on its text content and value of an attribute?
Given this XML:
<DocText>
<WithQuads>
<Page pageNumber="3">
<Word>
July
<Quad>
<P1 X="84" Y="711.25" />
...
6
votes
7answers
2k views
Screen scraping: regular expressions or XQuery expressions?
I was answering some quiz questions for an interview, and the question was about how would I do screen scraping. That is, picking content out of a web page, assuming you don't have a better ...
5
votes
2answers
2k views
Filter SQL queries on the XML column using XPath/XQuery
I'm having a table with one XML column. I'd like to filter out the rows where a specific attribute in the XML match a string, essentially doing a WHERE or HAVING.
The table looks something like this
...
5
votes
4answers
3k views
Does XQuery (or XPath) have equivalents to Update, Insert, and Delete as well as Select?
I know how to find what I need from XML using XPath. The syntax takes a little getting used to, but it is quite powerful. I'm interested in learning XQuery also, but the SQL like syntax seems ...
4
votes
3answers
119 views
Using xquery FLWOR expressions to find multiple “where” restrictions
I am trying to find employees who work on projects located in Houston but the department the project is housed in is not located in Houston. I was trying to model the expression after this example of ...
4
votes
2answers
54 views
Sql iteration over XML
I'm trying to read xml data field from a table and insert this data in another database. The XML document looks like this:
<Master>
<UserIds>
<id>1</id>
...
4
votes
4answers
225 views
XSLT - select nodes that came after another node
I'm trying to select all nodes that 1) come after a node with a particular property and 2) have a particular property themselves. So if I had the following XML:
<node id="1"><child ...
4
votes
2answers
236 views
LINQ to SQL - Xml Field Problem - How low down can you intercept the generated TSQL?
Our development stumbled onto a major roadblock in terms of Linq to Sql and Sql 2005+ Xml Fields. We have an Xml blob field containing fields...
<Profile name-first="Terry" name-last="Aney" ...
4
votes
2answers
1k views
Get XML nodes from SQL Server column as comma-separated list
I have a data stored in a xml column and need a comma-separated list of child nodes. Using script below, I can only get "A B C". Please help me get "A,B,C" using xquery (Simple replace of space with ...
4
votes
1answer
651 views
XQuery: Create a new element with a given name?
I have data like:
<td>USERID</td>
<td>NAME</td>
<td>RATING</td>
I want to transform it into:
<userid></userid>
...
4
votes
2answers
938 views
XQuery in SQL server doing SUM over zero value
I'm trying to extract monetary sums stored in some poorly formated xml columns (there is no schema defined for the XML column which I guess is part of the problem). I'm getting a conversion error ...
4
votes
4answers
670 views
What is the best way to screen scrape poorly formed XHTML pages for a java app
I want to be able to grab content from web pages, especially the tags and the content within them. I have tried XQuery and XPath but they don't seem to work for malformed XHTML and REGEX is just a ...
4
votes
1answer
7k views
Using XQUERY/Modify to replace a piece of my XML with value from varchar field
I have a table:
MyTable
config as XML
title as varchar(255)
In MyTable.config I have XML in the following structure:
<configuration pagetitle="myConfig">
<column>
<row>
...
4
votes
3answers
1k views
looking for Java GUI components / ideas for syntax highlighting
I'm not committed to any particular GUI tookit or anything - just needs to be Java based. I want to do simple syntax highlighting ( XML and XQuery ) inside editable text areas.
My only candidate so ...
4
votes
2answers
9k views
Using SQL Server 2005's XQuery select all nodes with a specific attribute value, or with that attribute missing
Update: giving a much more thorough example.
The first two solutions offered were right along the lines of what I was trying to say not to do. I can't know location, it needs to be able to look at ...
3
votes
1answer
35 views
Read xsi:type from T-SQL
I would like to read the xsi:type attribute from the "current" node in a SELECT statement. My XML looks like this:
<ns2:data xmlns:ns2="http://mynamespace">
<OrderLineItems>
...
3
votes
2answers
39 views
Query multiple elements without specifying the element name
This may be a silly question, but is it possible to make a query using XPath without specifying the element name?
Normally I would write something like
//ElementName[@id = "some_id"]
But the thing ...
3
votes
1answer
92 views
Transact SQL XQuery XML Query
DECLARE @tProduct TABLE (
[pProductId] [smallint] IDENTITY(1,1) PRIMARY KEY NOT NULl,
[ProductDetails] [xml] NOT NULL
)
INSERT @tProduct
( [ProductDetails] )
VALUES
( ...
3
votes
3answers
82 views
How to bind an XQuery external variable in Zorba from PHP?
Can the Zorba XQuery processor PHP API bind to variables declared as external within an xquery?
For example this line in an xquery would bind to an external variable named $foo;
declare variable ...
3
votes
2answers
57 views
Eliminate a single element type from XML using XQUERY
Here is my problem... I need to select everything in an entire xml document, but leaving out one tag. Unfortunately, this tag can vary in depth.
Using the following code sample, I would like to ...
3
votes
2answers
62 views
Getting values from XML type field using in SQL server
I have MS SQL table which contains a XML type field. This field has data in the format below:
<doc>
<quote>
<code>AA</code>
</quote>
<quote>
...
3
votes
2answers
40 views
Excluding elements in XQuery
I have an XML element such as:
<items>
<item>
<size>360</size>
<quantity>400</quantity>
<item>
<item>
...
3
votes
2answers
184 views
Is there any way in XQuery to get the current time in milliseconds since some Epoch?
XQuery offers various date/time functions like current-dateTime(), however I can't seem to find one which gives me the time in milliseconds since Epoch. Functions to extract hours, minutes and seconds ...
3
votes
1answer
98 views
Is there a similar Linq function to XPathEvaluate but for XQuery expressions instead of XPath?
The Linq to Xml library in .Net has the extension method XPathEvaluate which allows to query an XDocument by passing an XPath expression. But XPath is more restrictive than XQuery. Is there a function ...
3
votes
2answers
71 views
Turn an XML sequence of attribute values into a string?
Using xquery 1.0, I want to take a sequence like this;
<foo xml:id="x20"/>
<foo xml:id="x47"/>
<foo xml:id="x3"/>
And collate the ids into a string to put in an attribute of a new ...
3
votes
1answer
59 views
In a VIM syntax file how can I use a start match in the end match?
In VIM syntax files one can write a syntax region match like this:
syn region xqString start=+'+ end=+'+
syn region xqString start=+"+ end=+"+
What I want to write instead is
syn region xqString ...
3
votes
3answers
318 views
XPath Sum over sub structure
How do I write an XPath sum over the following structure ?
<Order>
<Details>
<Detail>
<Quantity>10</Quantity>
...
3
votes
2answers
305 views
Select just text directly in node, not in child nodes
How does one retreive the text in a node without selecting the text in the children?
<div id="comment">
<div class="title">Editor's Description</div>
<div ...
3
votes
1answer
446 views
XPath - compound predicate + test if value does NOT start with something
I need help with some XPath. Say I am working on XHTML. How do I select all the a elements whose href attribute is NOT empty and does not begin with, say, 'mailto:'?
3
votes
2answers
408 views
How can I use xpath querying using R's XML library?
The xml file has this snippet:
<?xml version="1.0"?>
<PC-AssayContainer
xmlns="http://www.ncbi.nlm.nih.gov"
xmlns:xs="http://www.w3.org/2001/XMLSchema-instance"
...
3
votes
1answer
949 views
SQL Server XML Column exist() query
Assuming I have a SQL Server 2005 table with an xml column containing the following values:
CREATE TABLE XmlTest (
XMLid int,
Data xml)
INSERT XMLTest
VALUES ( 1 , ...
3
votes
2answers
480 views
TSQL: How can I update the value of an xml tag with the value of an xml tag from another related table?
How can I update the value of an xml tag with the value of an xml tag from another related table?
something like this:
UPDATE v2
SET
[xml].modify ('replace value of (//TAG1/text())[1]
...
3
votes
3answers
527 views
XQuery vs XSLT for transfroming data
Which one of them do you use in your applications in order to transform XML data to other data types? WHY?
3
votes
1answer
2k views
How do I use QXmlQuery properly? (Qt XQuery/XPath)
I'm using the following code to load in an XML file (actually an NZB):
QXmlQuery query;
query.bindVariable("path", QVariant(path));
query.setQuery("doc($path)/nzb/file/segments/segment/string()");
...
3
votes
1answer
266 views
LPX-00607 for ora:contains in java but not sqlplus
I am trying to doing some SQL queries out of Oracle 11g and am having issues using ora:contains. I am using Spring's JDBC implementation and my code generates the sql statement:
select *
from ...
3
votes
2answers
334 views
xquery brackets without FLWOR
hi I have a bit lame question, can't find the answer though.
what happens if I leave the constructor brackets void?
e.g.
{data(doc("somedata.xml")//node[0])}
I mean, I know what happens, but what ...
3
votes
2answers
959 views
How do I Pivot on an XML column's attributes in T-SQL
I need to perform a pivot on an XML column in a table, where the XML contains multiple elements with a number of attributes. The attributes in each element is always the same, however the number of ...
3
votes
3answers
890 views
Delphi and XQuery/XPath 2.0?
How do people use XQuery and/or XPath 2.0 from Delphi? I've got MSXML v6.0 working from Delphi, so any sufficiently documented COM-implementation will work. What's your favorite?
3
votes
2answers
1k views
XQuery Insert without namespace SQL2008
<game xmlns="http://my.name.space" ></game>
This is my root element. I've written a stored procedure to insert elements into it. To sum up the stored procedure, here's the SQL
UPDATE ...
3
votes
2answers
4k views
Deleting Multiple Nodes in Single XQuery for SQL Server
I have:
a table with an xml type column (list of IDs)
an xml type parameter (also list of IDs)
What is the best way to remove nodes from the column that match the nodes in the parameter, while ...
3
votes
2answers
4k views
Difference between XPATH, XQuery and Xpointer
What is the difference between XPath, Xquery and Xpointer? As far as my knowledge, xquery is extended version of Xpath. I have the basic knowledge of XPath. Is there any feature available in XPAth ...
3
votes
1answer
2k views
Replacing xml namespace prefixes in SQL Server with XQuery
I have an xml structure in an existing SQL Server 2005 database table with a particular namespace defined, I need to query out the XML and in the process, change the namespace prefix to become the ...