xdmp:set-transaction-name

xdmp:set-transaction-name(
   $name as xs:string,
   [$host-id as xs:unsignedLong],
   [$txn-id as xs:unsignedLong]
) as empty-sequence()

Summary

Set the name of a local or remote transaction.

Parameters
name The new name.
host-id An optional host ID. If omitted, the local App Server host is assumed. If a host ID is given, then a transaction ID must also be given.
txn-id An optional transaction ID. If omitted, the current transaction is assumed. If a transaction ID is given, then a host ID must also be given.

Required Privileges

http://marklogic.com/xdmp/privileges/xdmp-set-transaction-name-my

http://marklogic.com/xdmp/privileges/xdmp-set-transaction-name-any

Usage Notes

If the transaction already has a name, it is overwritten with the new name.

If the specified transaction does not exist, XDMP-NOTXN is raised.

If host-id is not found or MarkLogic Server is not available on that host, the exception XDMP-HOSTOFFLINE is raised.

See Also

Example

xdmp:set-transaction-name("myTransaction")
=> Set the name of the current transaction in the current local session
   to "myTransaction".

Example

xdmp:set-transaction-name("myTransaction",
                            xdmp:host("some-host.marklogic.com"), $txn-id)
=> Set the name of the given transaction on the remote host
   some-host.marklogic.com to "myTransaction".
Powered by MarkLogic Server | Terms of Use | Privacy Policy