Tagged Questions
1
vote
1answer
21 views
exide not show any results on screen
I write this query in exist-db (Exide):
doc("/db/libros/prueba.xhtml")/html/body/p/a/@href
Find two results:
Found 2 in 0.003s
But the screen does not show any
Input document is:
<html>
...
0
votes
2answers
27 views
XPath-Query with wildcard not working
It is driving me crazy.
Can someone tell me why this query does not work:
xquery version "3.0";
for $item in collection("openkernel/openehr_ehr/archetyped/")
let $uid:=$item//uid/value
where ...
0
votes
1answer
25 views
Xquery: Dividing the attribute value by spaces
So I'm trying to get the country codes of this river.
<river id="river-Donau" country="SRB A D H HR SK BG RO MD UA">
</river>
How can I access them individually?
0
votes
1answer
19 views
XQuery: Getting multiple attribute values
So I'm trying to access the country codes of the following, but with no luck:
<river id="river-Rhone" country="F CH">
<name>Rhone</name>
<located country="F" />
...
-1
votes
0answers
40 views
XQuery XPath expression not matching
I am new to coding and not sure what to use in "nextxpath" (see below) to move to next page and collect all the info.
The code does collect info from first page but doesn't move to next.
Javascript ...
1
vote
2answers
72 views
Xpath returning NULL for valid Xpath expression
I'm using a fairly straightforward Xpath query (below) to query a SQL Server 2008 database column whose values all follow the form of the example (below that). My query returns NULL for all rows, ...
1
vote
2answers
36 views
Loop incrementation for url
I want to insert dynamic url from my title, it works but it displays 6*6 'cause of 2 differents loops... I don't know how to do differently...
I tried to use global variable but it's the same... (I ...
0
votes
1answer
111 views
Parsing/edition docx file with PHP
I've been asked to write a php script that should read/parse a docx file and do some operations such as duplicate a specific paragraph/table and fill-in some variables (#myvar or $myvar) with values.
...
0
votes
1answer
64 views
Is there something wrong with this xpath, or is Marklogic misbehaving?
I've got a weird problem with what should be a simple xpath not returning data when I'm sure the data is present in Marklogic. I can see the data in question through a more general xpath, but not get ...
0
votes
2answers
66 views
print text inside <project><groupId>..</groupId> and <project><parent><groupId>..</groupId>
I need to list the text inside these two elements in the many pom.xml in a directory tree. The files may contain the element at other places too, I am only looking for the content of these two.
...
1
vote
2answers
65 views
Select multiple values and compare them using xQuery or xPath?
I have the following XML:
<items>
<item min="1" max="3"> </item>
<item min="2" max="7"> </item>
<item min="1" max="2"> </item>
</items>
And I need ...
0
votes
2answers
57 views
Why does this XQuery (Mergesort) Code Snippet not work correct?
While learning XQuery I'm trying to implement a merge sort.
For joining two already sorted sequences into one I wanted to implement a helper function called "merge".
It currently looks like this:
...
0
votes
1answer
36 views
Iterating through in LinqToXml query
As I haven't work yet with LinqToXml I'd like to ask you for help
Source XML:
<Projects xmlns="">
<Project id="12345">
<Name>AName</Name>
</Project>
...
-1
votes
2answers
50 views
What is the meaning of the following XPath fragment?
Im am reading the specifications/documentation of a project and it says:
You may focus on the following XPath fragment:
p::= A | * | p/p | p//p | p[q]
What is the meaning of p :: = A ?
0
votes
1answer
75 views
Using XQuery to search for Node having specific details
I'm not an expert in XQuery and I'm having to search though big collection of files,
the XML doc have a structure like this,
<files>
<file>
<name>1</name>
...
1
vote
3answers
55 views
XQuery Distinct XML tag
I am trying create a XQuery to generate a following details of the xml tag used with the no. of occurrence
Book- 3 occurrence
Article-2 occurrence
conference - 1 occurrence
Is this possible? i've ...
0
votes
1answer
49 views
Optimizing XML In TSQL
I have recently started working with XML in table columns using TSQL, and found that it is horrendously slower than your average everyday 3rd-Normal-Form-associative-tables-Query-joining, from my ...
0
votes
1answer
67 views
sql + xquery to delete multiple parent nodes
In the below xml i have three 5 /Item elements, 4 of which have a Blob child element. I want to delete the elements that have a child Blob element but only where Item/@Name has the text "Blob" in it.
...
0
votes
0answers
110 views
xpath contains concat not work
this is xml file(demo.xml):-
<products>
<product_id value="1">
<tab_id value="351">
<tab_name value="test1"/>
<dist_map value="5"/>
...
0
votes
1answer
72 views
less than, grater than, equal to not work perfact in XPath
this is my xml file:-
<products>
<product_id value="1">
<tab_id value="351">
<tab_name value="test1"/>
<dist_map value="5"/>
...
0
votes
1answer
200 views
How can i access this message in fault sequence in wso2 esb
how can i access this error text which is from wso2dss side standard error in wso2 esb fault sequence ERROR_CODE i am getting properly but this ERROR_MESSAGE giving NUll how can i do this
THIS IS ...
0
votes
0answers
47 views
syntex not proper in xpath
this is my cide:-
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script>
var xml;
$.get(
...
0
votes
0answers
52 views
xQuerying the WSDL (schema part)
I've got a huge problem concerning querying WSDL file and namespaces in it.
The beginning of a file looks like that:
<?xml version="1.0" encoding="UTF-8"?>
<definitions ...
0
votes
1answer
67 views
how to set both xPath query in one query?
here is my totally code:-
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script>
var xml;
...
-1
votes
1answer
39 views
Why is this query not returning the data( in XQuery, Java)?
This is for XQuery used in Java. My code is working with other XML files, but this time it is not returning the required data. The faulty code is below. What is wrong with it? Thanks.
String ...
0
votes
2answers
131 views
translate Date in to 1990-03-20 to 19900320 and check the enter with textbox value less-than xml attr value [duplicate]
this is my xml format :-
<products>
<product_id value="nokia">
<tab_id value="3550">
<individual_born_from value="1990-03-20"/>
</tab_id>
...
0
votes
1answer
42 views
XQuery targeting multiple namespaces
I'm writing a library that generates complex XQuery expressions that target documents from two different namespaces. However, when I'm generating the query I don't know the particular namespace for ...
0
votes
1answer
91 views
xpath date comparison using textbox
my xml file :-
<root>
<name id="1">
<region value="001">
<date value="1989-03-09"/>
</region>
<name id="2">
<region ...
1
vote
2answers
113 views
In Marklogic, how can I efficiently deep-compare two xml documents?
I have a logging requirement to store the differences between old and new values when a (moderately complex) section of a document changes in our database. Only the changed data should be reported on. ...
2
votes
2answers
481 views
Using XPATH/XQUERY to select all values for elements with attribute X
I am relatively new to XPath and XQuery. I am working with XML stored in a table called tblXML.
XML is stored in this table by caseID. For this example, this value is unique.
The XML itself is stored ...
3
votes
2answers
100 views
XPath/XQuery - matching all elements containing a particilar value
My xml looks a bit like this`
<root>
<child1>
<grandchild1>{tagID1}<grandchild1/>
<grandchild2>{tag2}<grandchild2/>
</child1>
...
0
votes
1answer
66 views
Is there any property is there which will convert epoch in milliseconds to timestampwithtimezone in wso2 esb
my property like this:
<property name="ReadingDateTime"
expression="//ReadingDateTime/text()"
scope="default"
type="STRING"
/>
Result is :1361855692325
which is in epoch ...
0
votes
1answer
50 views
How to run a query where it displays all items of a XML node?
<DataItem name="xxxxx" value="2" />
<Roles>
<Role id="Role1" />
<Role id="Role2" />
<Role id="Role3" />
<Role id="Role4" />
</Roles>
This XML is in ...
1
vote
2answers
47 views
Xquery to return rows with restricted nodes
I have a table where a column contains XML data. Now i want to retrieve those xml data with restriction of nodes. Kindly see the following example for more explanation on my scenario,
declare @table ...
0
votes
2answers
86 views
scraping Images off Ebay
I am trying to scrap a list of products off ebay.I can get all the information except the Image source. My query retrieves all the the information of the image ie alt,height,etc but does not ...
0
votes
1answer
55 views
Getting value of attribute value from XML document
I'm using Editix to run some XML queries, and I'm trying to get the "role" attribute from the tags...
<actor id="5" role="Richie Cusack"/>
....and insert the value in between tags that I ...
0
votes
1answer
63 views
Nested return in function XQuery
I want that the function XQuery to return the id_fermata from the instance of file tratta.xml where id_linea of the file tratta.xml matches with id of the linea.xml
The file linea.xml is :
...
2
votes
1answer
269 views
Working with a SqlXml parameter in a SQLCLR method
This is SQL CLR, I'm just trying to create a function that receives XML from SQL and then gets the value for a certain node and returns it:
[SqlFunction]
public static SqlString ...
2
votes
2answers
80 views
XQuery to fetch and insert same time
I am retrieving data and inserting it into another file. But the inserted data is not ordered. Following is the example of what I am trying to achieve.
let $n := <N>
<n>Lemon</n>
...
1
vote
1answer
67 views
Xquery / Xpath what is the meaning of /*:
Xquery / Xpath what is the meaning of /*:
(: Here $patterns looks like <pattern match="something" replace="else" /> :)
declare function local:transform($text as text(), $patterns as ...
0
votes
1answer
64 views
Performance improvement - Alternative for a map in xquery
I am using cts:element-value-co-occurences for a query which returns a big list of values. Since I am giving "map" as an option, those occurences are copied into a map(an example given below).
...
1
vote
1answer
187 views
Extract Values from XML Name/Value schema and show as columns in result
Given that I have information stored like this in an XML column with a schema like the one below -
<root>
<Setting>
<Name>BookingDate</Name>
<Value>01 Jan ...
0
votes
3answers
141 views
How to compare GMT and EST time from xml using xquery
I ran into this problem: I fetch rss feeds from various webpages and then i need to order them by date. I'm using xquery for xml manipulation and eXist database for storing rss/xml.
Here is my code:
...
1
vote
1answer
131 views
Evaluating XQuery/XPath expressions from table
I have a table that contains XQuery expressions. I'd like to evaluate the expression from each row for a given XML data structure. I'm trying this.
DECLARE @somexml xml
SET @somexml = ...
2
votes
1answer
642 views
How to calculate a weighted average in XPath or XQuery?
I need to calculate a simple weighted average in a XForms form. How can I do that in an elegant and declarative way using XPath and/or XQuery ?
[EDITED] This is the source XML document :
...
1
vote
1answer
77 views
onclick error calling Xquery function
i'm trying to call a function with parameters, send an id and return the url of a photo, the idea is to show the photo of the element when you click on a button, the problem is that i can't call the ...
1
vote
1answer
225 views
Extracting XML element value from Postgres
Given:
CREATE TABLE xmltest(xtxt xml);
And:
INSERT INTO xmltest values ...
5
votes
1answer
183 views
Retrieve an element without sub-elements in SQL Server
I am using SQL Server 2008 and I want to retrieve XML elements and return the element itself and its attributes without any sub elements and without the text(). Eg the following XML has 4 nodes (doc, ...
1
vote
2answers
260 views
java- how to process large XML files using Saxon library
In an app I am working on, I have to process very large XML files (files as much as 2GB in size)...I want to run some XQuery commands against those files using the Saxon java library.
How do I do ...
2
votes
1answer
237 views
Xquery for finding cousins in an xml
I am new to xquery and I am looking for a quick solution to this problem.
I have an xml document, and I want to find all pairs of first cousins and all pairs of 2nd cousins in the documents.
Please ...
