XQuery is a functional language designed to query and manipulate XML data with XPATH.
0
votes
0answers
2 views
Saxon CE and XQuery? Documentation indicates no XQuery, Examples otherwise?
Saxon CE, a javascript implementation of the popular XSLT, has documentation that indicates Saxon-CE has had XQuery support removed.
However, an example in the Saxon-CE documentation has was looks ...
0
votes
1answer
10 views
Difference between data() and string()
What is the practical difference between the data() function and the string() function in Xquery? It seems they both return the same results when I use them. Can someone give me a simple example of ...
0
votes
1answer
12 views
Are there benefits to an xdmp map over structured xml?
I'm learning XQuery and MarkLogic. I've come across a map, which seems to be like a hash in other languages, but it seems like you can do what you need simply with the built-in functionality of ...
0
votes
1answer
13 views
Does xdmp:database-restore overwrite any existing information in a database?
Does xdmp:database-restore overwrite any existing information in a MarkLogic database?
0
votes
1answer
26 views
XML query search tool
I am looking for a search tool/engine which basically search through folders of XML files and return results. It should support xpath xquery in addition to basic string search. It should support ...
-1
votes
0answers
23 views
formatting linear list to a parent-child list using xquery
My schema is like this:
<?xml version="1.0" encoding="UTF-8"?>
<schema xmlns="http://www.w3.org/2001/XMLSchema" targetNamespace="http://www.example.org/ParentChild" ...
1
vote
1answer
28 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>
...
1
vote
2answers
24 views
Find all “null” values using xquery
I was tasked to find all values where <nodeA> is empty. That could mean that it is NULL, or that it doesn't exist.
I have crafted the below query
SELECT *
FROM table
WHERE AttributeList.value ...
1
vote
3answers
35 views
Search based on count of particular word
Below is a sample XML file.
<Docs>
<Doc>
<Name>Doc 1</Name>
<Info>Hurray</Info>
</Doc>
<Doc>
<Name>Doc 2</Name>
...
0
votes
0answers
25 views
Constructing xquery to get attributes and values for each distinct element in the collection
I have a collection of xml files and what I need to do is to get all distinct elements in the files. For each element, I have to get a list of distinct attributes and all potential values that they ...
-1
votes
0answers
10 views
How to load xquery template from database in camel's xquery endpoint
I have a camel xquery endpoint like this:
...
...
It can read the static xquery template file and process the data xml. However, I'd like to store the xquery template into the database and reload ...
1
vote
2answers
26 views
MarkLogic - Quickest Way to Empty a Large Database
What is the quickest way to empty a large database of documents in MarkLogic version 5?
-2
votes
2answers
77 views
Have two XML files, need to make a query with XQuery and Java [closed]
Need help with a homework assignment. I have two XML files: Person.xml and passedExams.xml
Person.xml form ->
<listWrapper>
<items xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" ...
0
votes
1answer
19 views
How to replace a specific node with XQuery
I want to replace .<br /> with .<p/> or other tags. And I want to keep my text and other tags unchanged. For example:
<div class="page">
<div class="text">
...
2
votes
1answer
48 views
SQL Server : manipulating complex xml into tables
I have some xml which I need to insert into two database tables. The second table (TblSales) must contain the PK of the first (TblDetails.Id).
I can insert the data into these tables using XQuery, ...
0
votes
3answers
38 views
Marklogic : Insert and retrieve document using xquery in the same run
Need something like this in Marklogic by using xquery,
Get a document present in a location, If not present create a document using xdmp:document-insert() and then retrieve document using fn:doc().
...
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
23 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
vote
3answers
23 views
xQuery distinct-value sum issue
I need to sum up the average price of specific product categories, currently i have managed to merge the same category types and count them, now i need to sum up all the prices from the different ...
0
votes
2answers
32 views
How to check if a variable is defined in XQuery
I'd like to know if it is possible to check the existence of a variable in XQuery. I mean to know if the variable is defined or bound. Some sort of a if (defined($a)).
I have searched on the Internet ...
0
votes
1answer
26 views
xQuery category nesting issue
I have a problem nesting the result tags in each other the right way.
The result should look like this:
aimed result
<categoryA>
<position>...</position>
...
-1
votes
1answer
55 views
How to fetch distinct nodes in XQuery?
When applying the function distinct-values() to a sequence of nodes, it returns a sequence of values rather than a sequence of nodes.
Please can someone explain to me which feature of the XQuery ...
0
votes
1answer
28 views
Is there an XQuery IRC?
Does anyone know of an IRC channel for XQuery (or even MarkLogic)? I can't seem to find an active one by searching the googles.
Thanks!
0
votes
1answer
33 views
how to remove � in a response document in oracle service bus?
I'm getting this response document when calling a service with osb:
<FML32>
<FLD_ERRORCODE>5801</FLD_ERRORCODE>
<FLD_ROUTINGFLAG>�</FLD_ROUTINGFLAG>
...
0
votes
2answers
38 views
print out xquery sequence and exit
Is there a way to "die" in execution flow in an xquery file and output a nicely formatted printout of a sequence variable?
I'm trying something like:
return { fn:error(xs:QName("ERROR"), $xml) }
...
0
votes
1answer
33 views
XQuery check for empty element and return a default value if the element is empty
I have an Xquery question. I have a timestamp element in my output xml, which needs to take the value of an element from the input xml only if it exists, otherwise it should return a default value. ...
0
votes
0answers
31 views
Stop route when all messages are filtered
I have a batch route that consumes XML files from a folder. It filters, transforms and finally saves a grouped document to disk. As this is a batch route, I require it to be shut down after a single ...
1
vote
3answers
52 views
insert an attribute to nth Element in a xml in Sql Server
please consider this XML:
<Employees>
<Person>
<ID>1000</ID>
<Name>Nima</Name>
<LName>Agha</LName>
</Person>
...
0
votes
1answer
34 views
XML query fetch attributes as records/rows
I have below xml and want to fetch all records as rows. My xml is like below..
<category ccode="ct8">
<columns>
<col colcode="cl_prodn" displaytext="Prodname" ...
0
votes
0answers
12 views
xquery (sedna) “update insert into” last position
i was wondering about a more specific insert placement in the Sedna xml database.
i do get the idea of the into, preceding and following expressions presented in the UPDATE insert documentation. ...
2
votes
1answer
49 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
38 views
Grouping files for XQuery Collections
I have an XQuery script that calculates statistics on a few thousand uniform XML files. I can run this query on the file system by using the collection method like so:
let $doc := ...
-1
votes
0answers
32 views
Please can someone tell me what the following FLWOR expression produces? [closed]
for $i in (1,2)
let $j := (’a’,’b’)
for $k in (’x’,’y’)
return
<t> - ($i,$j,$k) } </t>
(Addendum) Or, with apparent typos corrected:
for $i in (1,2)
let $j := ('a','b')
for $k in ...
1
vote
2answers
66 views
Cursor for loop creating duplicate entries for nested XQUERY
I have created a procedure which is parsing xml data into multiple tables. I am catching exception for primary key constraint, and if there is a duplicate found in result, it will be inserted into a ...
2
votes
1answer
31 views
XQuery: Simple query example
I have an assignment to create an xml file and query it using XQuery. The file looks roughly like this:
<library>
<book>
<title>Title1</title>
...
0
votes
1answer
37 views
Microsoft.Xml.XQuery math expression error
I'm newer in Microsoft.Xml.XQuery, when I'm trying to run a xquery with math expression like sum i have the error : Cannot apply Add to non integer data.
XML:
<book category="COOKING">
...
0
votes
0answers
31 views
Functions and subselects in single FLWOR
I'm writing an XQuery to analyse large numbers of XML files that store queries similar to the example below. For these queries I'd like to calculate averages, sums and other information on various ...
0
votes
1answer
45 views
PL/SQL unique column identification from two table
I am using Oracle 11G.
I have a PL/SQL procedure which is reading XML using xquery from XMLTYPE column in a table. The XML contains data of DEPARTMENT and its SECTIONS. DEPARTMENT has one to many ...
-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 ...
0
votes
0answers
37 views
xml encoding in basex xqueries
How do I escape special characters such as quotes or < in BaseX Xquery. When I try the following query I am getting a BaseXException because of the text "quotes" in content child node. Thank You.
...
0
votes
4answers
76 views
Load multiple XML file (MarkLogic)
I need make a search in many files but don't want to write the names of them in the query. In my case, I need to query 500 XML files with quite different names each. So Is there a way I can say:
for ...
-1
votes
1answer
27 views
Xquery to find all words in italic <i>
I am trying to write an XQuery that will return a list of all words in italics () for an xml like:
<p>There is abundant evidence of a widened and deepened interest in <i>modern</i>
...
0
votes
0answers
28 views
Using MERGE with XMLQUERY and transform
Using DB2 LUW 10.1. I am having trouble getting MERGE to work on two tables with XML columns that are merged using an XQUERY transform.
I have a table that looks like this:
create table foo (
id ...
2
votes
0answers
27 views
REST call with XQIB reports function send-request not available
I have been trying simple REST call with XQIB. My attempt is only more simplified example (http://www.xqib.org/js/RESTCallCourses_source.html), but I can't get to run neither of them. I get the same ...
1
vote
2answers
40 views
repetitive data in output - xquery
I'm quite new to xQuery and I've to write the following query;
Display the title of DVDs for each director.
My xQuery is;
let $doc := doc("DVDStore.xml")//DVDTitle
return <Directors>{
...
0
votes
1answer
46 views
xquery execute xquery against a hidden field containing xml
Hello i have some standard xml contained within a hidden field of my page. I want to be abble to execute at loading of my page an xquery contained in my page against the xml contained in the field. ...
0
votes
1answer
30 views
Unable to perform multiplication with XQuery in BaseX
Consider an xml file defined as:
<?xml version="1.0"?>
<sports>
<teams>
<team tno="t100">
<tname>Knights</tname>
...
0
votes
3answers
93 views
Analysing (tens of) thousands of XML files
I have an application that will generate a log entry for every search query it processes (from Solr) so that I can calculate certain statistics for my search engine. For instance the number of queries ...
4
votes
3answers
108 views
Select all path from an Xml that have a content like a graph
I have an XML column with an element like this:
<Root>
<Word Type="pre1" Value="A" />
<Word Type="pre1" Value="D" />
<Word Type="base" Value="B" />
<Word ...
