MarkLogic Server, an enterprise-class, NoSQL document database with realtime search, ACID transactions, and XQuery engine.

learn more… | top users | synonyms

0
votes
1answer
18 views

How to fire query for loaded documents in marklogic server

I loaded some xml documents to marklogic server through load content, xquery and through admin interface. i did some sample example for fetching document data, manipulating and all through xquery ...
-1
votes
0answers
17 views

Want to explore MarkLogic and need guidance [closed]

I am new to MarkLogic. I installed server on my PC and i uploded some xml document to server from local to server. Please suggest me next what I need to do. I am looking for- like if someone can ...
0
votes
1answer
12 views

Will path-rage-index added to parent element also results for child element?

Consider that following is a part of XML data: <ContentOwner> <OrganizationLevel1>US Department of Justice</OrganizationLevel1> <OrganizationLevel2>National Criminal ...
1
vote
2answers
25 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?
0
votes
3answers
35 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
1answer
24 views

Can you restore a MarkLogic backup to a new database?

We want to take a backup of a MarkLogic database from last Wednesday and restore it to a new database name on the same server. We are running MarkLogic 5.0-3.1.
-1
votes
1answer
13 views

Facing Issue with settingup MarkLogic 2 node cluster. [closed]

As I am new to MarkLogic and I am having free developer license, am trying to create 2 Node Cluster for MarkLogic server. I have installed it on one machine but when I am trying to add one more ...
0
votes
2answers
29 views

MarkLogic localhost connection not accepted by remote device or resource

Once the MarkLogic service started, I tried to connect to localhost:8001. I was prompted to request for student/developer/express license. I requested developer license and obtained it. MarkLogic ...
2
votes
2answers
32 views

MarkLogic java API join 2 documents

Is there a way to join 2 documents within a marklogic database utilizing MarkLogic's Java API? For instance let's say there's the following 2 documents: doc1.xml: <a> ...
0
votes
1answer
28 views

Database Backup best practices

I am working in a production environment, where we process XML files daily. Our database size is quite big. we are taking a daily backup. I learned that Marklogic adds up changes to your previous ...
0
votes
1answer
27 views

Managing linked content in marklogic

Is there any way to link contents in marklogic so that when a particular version of the content is accessed then its corresponding linked contents are also retrieved? Say there is a content named as ...
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
2answers
37 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
2answers
41 views

Difference between Single statement transaction and multistatement transaction in real life scenerio for Marklogic

I am studying the Single statement transaction and multi-statement transaction in Marklogic Server. Except the difference of explicit commit in multi-statement,what are other differences.I mean what ...
0
votes
4answers
71 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 ...
0
votes
2answers
54 views

Accessing xml documents stored in Marklogic Server via Oracle APEX Restful Webservice

There is a setup done by our dba in Marklogic server, and he has uploaded several xml documents. I am trying to access those documents via oracle apex RESTFUL web service pl/sql code declare l_clob ...
1
vote
1answer
30 views

transform-to-json — custom config drops elements? no array?

I have the following xml <foods xmlns="http://example.com/agt" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" > <food id="1" name="celery"> ...
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
1answer
51 views

How to Order Facets?

I need to arrange facets as(fc=Topic,DocumentType,PublicationYear,Contributor) But the order of facets is based on naming concept as Contributor,Doc Type,Pub Year,Topic(arranged by name in ascending ...
1
vote
2answers
56 views

Marklogic: Element Range Index VS Element Word Lexicon

I have an element which contains text value and I need to be able to search for the text content in it from the GUI application. I was reading the ML 5.0 documentation and I saw that I can use ...
1
vote
1answer
36 views

MarkLogic WebDav documents created as binary instead of xml

I am trying to create a dynamic website using MarkLogic and xQuery as the server side language. I have created a WebDav server and am using windows explorer to create xml documents within the ...
0
votes
1answer
79 views

Getting XDMP-CONFLICTINGUPDATES exception in Marklogic

Getting XDMP-CONFLICTINGUPDATES while trying to execute the following statements, (dls:document-update($uri,$content,"Main Document ...
1
vote
1answer
48 views

Update managed document without changing the version

I have used Library services API to insert documents into marklogic. There are scenarios where in I need to just save the changes done without checkin. That means save the changes into current version ...
4
votes
2answers
92 views

What is the most efficient way to store name/value pairs in a Marklogic database

My application often needs to decorate values in the documents it serves using a lookup take to fetch human readable forms of various codes. For example <product_code>PC001</product_code> ...
2
votes
1answer
49 views

Is there any way to restrict marklogic search on specific version of the document

I store managed documents into a specific collection in marklogic (through dls:document-update and dls:document-checkin API). I want search to include only current version documents. Is there any way ...
1
vote
1answer
26 views

Marklogic: DLS-INVALIDVERSION

when trying to access older versions of my managed XML files, it gives me something like: DLS-INVALIDVERSION: (err:FOER0000) /company/1448220.xml has no version number 3 in /MarkLogic/dls.xqy, at ...
1
vote
2answers
46 views

Check document in MarkLogic Collection Using .Net Xcc

How to check whether a document Exists in a Collection in Mark Logic Database using .Net XCC
1
vote
1answer
37 views

How do I prevent xdmp:node-delete() from adding whitespace in my xml doc

I am trying to MOVE a node from one xml document to another. Both documents are using the same namespace. I am trying to accomplish this by doing xdmp:node-insert-child() on the first document then ...
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
1answer
63 views

ms-excel compatible csv file representing all documents in a MarkLogic directory

How do I best make an MS-Excel compatible csv file representing all documents in a MarkLogic directory Using XCC Java Client and Tomcat and Marklogic Both are remotely located. Number of document in ...
-1
votes
3answers
95 views

Marklogic : Query response time is very high

I have around 15000 records in xml format in a uri, say:"documents/products/specs/*.xml". Each xml is of around 25 Kilo Bytes in size. I connected to this marklogic server uisng a remote Apache Tomcat ...
0
votes
2answers
112 views

Escaping curl command in Windows

I'm trying to run a curl command from the command line in Windows, but for the life of me I can't figure out how I'm supposed to escape it. I'm executing this: C:\WINDOWS\system32>curl --anyauth ...
-1
votes
3answers
57 views

how to upload files from a FTP location into Marklogic

i need to upload files from a FTP location into marklogic. please guide me on this
0
votes
1answer
41 views

Unable to access files from MarkLogic Java API

In the process of showing demoing some new Java code that accesses a local MarkLogic server, I ran into the following error. It pops up any time I try to either load a file, or access its metadata: ...
1
vote
1answer
47 views

In Marklogic (5.x), how can I include a doctype declaration in a zipped document?

I have a document that I run through an xslt and then capture in a variable, e.g. $doc. The xslt has the requisite output options set so that I can get my docytpe declaration prolog in the document, ...
1
vote
1answer
59 views

MarkLogic: Finding related articles

I have a huge database of records. When I view some record, I need to find related records to this particular record and list them down. You might have seen this in many websites like they provide ...
0
votes
3answers
65 views

Accessing HTML Tidy with MarkLogic's Java API

I'm refactoring a Java EE project to use MarkLogic, and would like to take advantage of MarkLogic's built-in HTML Tidy functionality. Is it possible to make use of HTML Tidy from the MarkLogic Java ...
0
votes
1answer
49 views

Sending email using marklogic and xdmp

I went through product library and found that there is a method called xdmp:email($node) which can send email only using a thing called smtp relay(?) which does NOT require any authentication. How can ...
1
vote
1answer
54 views

Getting last-modified property from MarkLogic Java API

I'm trying to figure out how to access the last-modified property of a file stored in MarkLogic via the Java API, but I'm coming up empty. I tried getting to it via metadata, but for a simple XML ...
2
votes
1answer
81 views

avoiding XDMP-EXPNTREECACHEFULL and loading document

I am using marklogic 4 and I have some 15000 documents (each of around 10 KB). I want to load the entire content as a document ( and convert the total documents to a single csv file and output to HTTP ...
0
votes
4answers
278 views

Replacing strings in various XML files

Given the following xml file with the knowledge that the structure and contents can change: <something> <parent> <child>Bird is the word 1.</child> ...
0
votes
1answer
43 views

Alternative of xdmp:functions() in MarkLogic 5.0?

Is there any API to get all in-scope functions in MarkLogic 5.0?
0
votes
1answer
48 views

Getting wrong result with cts:element-range-query and cts:element-attribute-range-query

I have following xml file <data> <element attribute="10">element1</element> <element attribute="7">element2</element> </data> I have created element range index ...
0
votes
2answers
67 views

Updating node's text contents uisng Marklogic and XQuery

consider I have two xmls, xmlA & xmlB, and I want to update the 'text content' of xmlA/abc with xmlB/bcd. xmlA: <root> <abc>texas</abc> </root> xmlB: <root> ...
3
votes
3answers
40 views

XDMP Function: String to XML

Is there any method defined in marklogic function library, by which we can convert (or try to convert) a string (xs:string type) to an xml 'document' type? In my problem, I shall normally get an xml ...
1
vote
1answer
29 views

marklogic tree cache - shared resource?

If I run a really dumb query that loads in a huge number of nodes into the expanded tree cache am I impacting other queries running on MarkLogic? In other words is the expanded tree cache a shared ...
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). ...
0
votes
2answers
51 views

Alternative to map in marklogic

In my application I need to feed billions of entries in map which is taking much time for execution, can there be any other alternative to map which takes less execution time?
1
vote
2answers
49 views

Enabling CPF in Marklogic

I wanted to understand the impact of enabling CPF - Content Processing Framework on Marklogic 4.2.9 server. We have a production DB of the size of 3TB and we are looking at various content enrichment ...
0
votes
1answer
55 views

MarkLogic dls library- conflicting updates

Well, we have what should be a pretty simple scenario. We utilize Marklogic dls library to manage documents, so below is the code The variable passed in looks like one below: $doc: =<root> ...

1 2 3 4 5