admin.databaseGetId

admin.databaseGetId(
   config as element(configuration),
   database-name as String
) as (Number|String)

Summary

This function returns the ID for the specified database from the configuration. The difference between this function and xdmp:database() is that the ID from this function can come from a database that has not yet been saved (that is, from a database that has been created in the same query with the Admin library but has not yet been saved to the cluster configuration files). This ID enables you to completely configure a newly created database without the need to first save the configuration.

Parameters
config A configuration specification, typically as returned from one of the Admin module functions.
database-name The name of the database.

Required Privileges

This operation requires at least one of the following privileges:

http://marklogic.com/xdmp/privileges/admin/database

http://marklogic.com/xdmp/privileges/admin/database/{id}

Example

  
  const admin = require('/MarkLogic/admin.xqy');
  var config = admin.getConfiguration()
  var config = admin.databaseCreate(config, "myNewDatabase",
                  xdmp.database("Security"), xdmp.database("Schemas"))
  var databaseID = admin.databaseGetId(config, "myNewDatabase")
  var fieldspec = admin.databaseField("myField", fn.true() )
  var config = admin.databaseAddField(config, databaseID, fieldspec)
      admin.databaseAttachForest(config, databaseID,
          xdmp.forest("newForest") )

   //Attaches "newForest" and adds the field, "myField" to the newly created
   //database, "myNewDatabase" 
  
Powered by MarkLogic Server | Terms of Use | Privacy Policy