
pkg:remove-database( $pkgname as xs:string, $database as xs:string ) as empty-sequence()
[DEPRECATED: use cma:generate-config and
cma:apply-config instead.]
| Parameters | |
|---|---|
| pkgname | The name of the package from which to remove the database configuration. |
| database | The name of the database for which to remove the configuration. |
xquery version "1.0-ml";
import module namespace pkg = "http://marklogic.com/manage/package"
at "/MarkLogic/manage/package/package.xqy";
pkg:remove-database("mypackage", "Documents")
(: Removes the configuration of the 'Documents' database from the package
named, 'mypackage'. :)
Stack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.