
flexrep:remote-target-status( $pull as element(flexrep:pull) ) as element(flexrep:target-status)?
This function returns the status of the target in a pull replication configuration.
| Parameters | |
|---|---|
| pull | The pull replication configuration containing the pull target (master database). |
(: Execute on the Replica database. :)
xquery version "1.0-ml";
import module namespace flexrep = "http://marklogic.com/xdmp/flexible-replication"
at "/MarkLogic/flexrep.xqy";
let $pullconfig := flexrep:pull-get-by-id(2261113583548708683)
return flexrep:remote-target-status($pullconfig)
(: Returns the status of the master database from which replica is pulling
updates. :)
http://marklogic.com/xdmp/privileges/flexrep-user
Stack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.