MicroStrategy ONE

Unload Document Cache statement

Unloads a document cache from memory.

Copy
UNLOAD DOCUMENT CACHE [(FOR USER "username" 
 | GUID cache_guid1 [, ... cache_guidN])] IN PROJECT "project_name";

where:

  • USER "username" is the user for whom document caches are to be unloaded, of type string.

  • GUID cache_guid1..N are the GUIDs of the document caches to be unloaded, of type GUID.

  • PROJECT "project_name" is the name of the project for which caches are to be unloaded, of type string.

This statement can only be used with three-tier or four-tier project source names.

Examples

Copy
UNLOAD DOCUMENT CACHE FOR USER "HChen" 
 IN PROJECT "Production01";
Copy
UNLOAD DOCUMENT CACHE 123456789ABCDEF, 223456789ABCDEF 
 IN PROJECT "MicroStrategy Tutorial";