MicroStrategy ONE

Create Project statement

Create a new empty project in the project source.

Copy
CREATE PROJECT "project_name" [DESCRIPTION "project_description"]  [ENABLEGUESTACCOUNT (TRUE | FALSE)];

where:

  • PROJECT "project_name" is the name of the new project, of type string.

  • DESCRIPTION "project_description" is the description of the new project, of type string.

  • ENABLEGUESTACCOUNT indicates whether to enable the Guest user account for this project.

This statement is not subject to the Command Manager timeout limit.

Example

Copy
CREATE PROJECT 
 "Test environment 2" DESCRIPTION "Secondary test environment";