
admin:database-backup-set-enabled( $config as element(configuration), $database-id as xs:unsignedLong, $backup-id as xs:unsignedLong, $enabled as xs:boolean ) as element(configuration)
This function enables database backup for the specified database.
| Parameters | |
|---|---|
| config | A configuration specification, typically as returned from one of the Admin module functions. | 
| database-id | The ID for the
      database (for example, xdmp:database("myDatabase")
      ). | 
	  
| backup-id | The ID of the backup,
	found by XPath to the backup location(for example, //db:backup-id/).  | 
	  
| enabled | Sets the database backup to
	enabled. The default is true, which means the database backup
	will take place.  | 
	  
http://marklogic.com/xdmp/privileges/admin/database
http://marklogic.com/xdmp/privileges/admin/database/backup
http://marklogic.com/xdmp/privileges/admin/database/backup/{id}
xquery version "1.0-ml";
import module namespace admin = "http://marklogic.com/xdmp/admin"
      at "/MarkLogic/admin.xqy"
declare namespace db =  "http://marklogic.com/xdmp/database";
 let $backup-ids := admin:database-get-backups(
  admin:get-configuration(), xdmp:database("Documents"))//db:backup-id/fn:data()
 return admin:database-backup-set-enabled(admin:get-configuration(), xdmp:database("Documents"),
 $backup-ids, fn:true())
  (: returns the new configuration element -- use admin:save-configuration
     to save the changes to the configuration or pass the configuration
     to other Admin API functions to make other changes.  :)