Commands: How to compact database?

To compact a database, please use CompactDatabase command available in GlobalAdmin.

Syntax

Operation CompactDatabase(string databaseName);
Parameters
databaseName string Name of a database to compact

Example

Operation operation = store
	.DatabaseCommands
	.GlobalAdmin
	.CompactDatabase("Northwind");

operation.WaitForCompletion();

Remarks

Compacting operation is executed asynchronously and during this operation the database will be offline.