0
votes
0answers
5 views
Does QExo XQuery string-join work?
When I run string-join, I get a weird output like this:
<clinic>
<Name>Olive Street Pediatrics</Name>
<Address>1500 Olive St, Los Angeles, CA 90015< …
0
votes
0answers
2 views
XQuery: weird xsi tag being inserted into my XQuery output
Here is an example of the XQuery output that I get:
<clinic>
<Name xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">Healthy Kids Pediatrics</Name>
& …
0
votes
1answer
50 views
Zorba (XQuery) - using print functions
I'm using Eclipse's XQDT with Zorba 0.9.5. I'm trying to call the Zorba internal function zorba:print(...) from within a FLWOR expression, but it gets ignored.
Specifically, I'm d …
0
votes
4answers
29 views
XQuery: how to properly append , in for loop
So I have xml data like this:
<PhoneNumber>213-512-7457</PhoneNumber>
<PhoneNumber>213-512-7465</PhoneNumber>
and with this XQuery:
<PhoneNumberL …
1
vote
2answers
25 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 …
0
votes
4answers
34 views
XML, XML Stylesheets XQuery: book and development environment
I'm completely new to XML Schema, XML Stylesheets and XQuery.
To me, XML is just a text file just containing tags and values. I know that much, lol.
I just got a homework asking …
0
votes
1answer
26 views
How to load large XML file (> 100 MB) to an XMLType column in Oracle
Dear All,
I try this command to upload a file (standard.xml) into table "book" the file is very large (>100MB).
insert into book values(1,'Complete Data', XMLType(bfilename('XM …
0
votes
1answer
51 views
How to get the attribute value with XQuery in MS SQL Server 2008
I have an XML like this:
<EXP>
<TITLES>
<SUBTITLE CL="AXT4" FL="1" NB="Text 1"/>
</TITLES>
<TITLES>
<SUBTITLE CL="BVT6" FL="2" NB="T …
0
votes
1answer
35 views
How to query for rows along with their xml representation?
I need something like
select * from tb_listings for xml auto
But I need every row to be separate, and not one big xml document.
I have tried something like the following:
sel …
3
votes
3answers
150 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?
0
votes
1answer
54 views
SQL Server XML Declare Namespace
Hi All, I would like to have a few namespaces available by default when running an XQuery in SQL Server 2005, is this possible?
For example, I would like to do the following:
sel …
0
votes
1answer
40 views
SQL Server 2005 Xquery namespaces
I'm trying to get some values out of an Xml Datatype. The data looks like:
<Individual xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/ …
2
votes
2answers
93 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, howe …
2
votes
1answer
30 views
How to change matched element text with XQuery?
Hi, I'm trying to piece together all the examples I've seen for finding elements and modifying them, but I haven't come up with something that works yet. I created an example belo …
1
vote
1answer
80 views
How to replace attribute value of *all* matching elements with XQuery?
Hi, I'm trying without luck to create a modify() statement to change the value of an attribute in all elements that have that attribute value -- so far I can only get it to change …
