MicroStrategy ONE

Unload Projects From Cluster statement

Unload a project from the cluster.

Copy
UNLOAD PROJECT "project_name" FROM CLUSTER (ALL SERVERS | SERVERS "servername1"[, ... "servernameN"]]);

where:

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

  • ALL SERVERS indicates that the project should be unloaded from all servers in the cluster.

  • SERVERS "server_name1..N" are the names of the specific servers in the cluster from which the project  is unloaded, of type string.

Examples

Copy
UNLOAD PROJECT "MicroStrategy Tutorial" 
 FROM CLUSTER SERVERS "LocalServer2", "LocalServer3";

 

Copy
UNLOAD PROJECT "MicroStrategy Tutorial" 
 FROM CLUSTER ALL SERVERS;