Loading TOC...

tieredstorage:partition-delete

tieredstorage:partition-delete(
   $database-id as xs:unsignedLong,
   $partition-name as xs:string,
   $delete-data as xs:boolean,
   [$options as xs:string*]
) as empty-sequence()

Summary

This function deletes all forests in the specified partition. For details, see Deleting Partitions in the Administrator's Guide.

Parameters
database-id ID of the database in which the partition will reside.
partition-name Name of the partition.
delete-data Whether or not data will be deleted.
options Whether or not data will be deleted. Valid option value:
timeout=N
Specifies the number of seconds to wait for a forest to re-open after a configuration is made during the delete operation.

Example

xquery version "1.0-ml";
import module namespace ts="http://marklogic.com/xdmp/tieredstorage" 
          at "/MarkLogic/tieredstorage.xqy";

ts:partition-delete(xdmp:database("Documents"),"2012-April",xs:boolean("true"))
=>
()
  

Stack Overflow iconStack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.