
admin:database-one-time-merge-blackout( $limit as xs:unsignedInt, $merge-priority as xs:string, $start as xs:dateTime, $end as xs:dateTime?, $duration as xs:duration? ) as element(db:merge-blackout)
This function constructs a one-time merge-blackout specification.
  xquery version "1.0-ml";
  import module namespace admin = "http://marklogic.com/xdmp/admin"
		  at "/MarkLogic/admin.xqy";
  admin:database-one-time-merge-blackout(500, "lower",
        xs:dateTime("2008-02-14T09:45:00"),
	(), xs:dayTimeDuration("PT3H") )
  (: returns the one-time merge-blackout specification.
     Use admin:save-configuration to save these changes. :)
  
Stack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.