flexrep:configuration-target-get-id( $cfg as element(flexrep:configuration), $target-name as xs:string ) as xs:unsignedLong
This function returns the ID of the named replication target.
Parameters | |
---|---|
cfg | The replication configuration. |
target-name | The name of the replication target. |
xquery version "1.0-ml"; import module namespace flexrep = "http://marklogic.com/xdmp/flexible-replication" at "/MarkLogic/flexrep.xqy"; (: Obtain the domain ID from the database used by the Master to enable CPF. :) let $domain:= xdmp:eval( 'xquery version "1.0-ml"; import module namespace dom = "http://marklogic.com/cpf/domains" at "/MarkLogic/cpf/domains.xqy"; fn:data(dom:get( "Default Master" )//dom:domain-id)', (), <options xmlns="xdmp:eval"> <database>{xdmp:database("Triggers")}</database> </options>) let $cfg := flexrep:configuration-get($domain, fn:true()) return flexrep:configuration-target-get-id($cfg, "Replica") (: Returns the ID of the target named "Replica." :)
Stack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.