MicroStrategy ONE

Create User Group statement

Creates a user group.

Copy
CREATE USER GROUP "user_group_name" 
 [DESCRIPTION "user_group_description"] [LONGDESCRIPTION 
 "long_description"] [LDAPLINK "LDAP_user_name"] [MEMBERS "login_name1" [, ... "login_nameN"]] 
 [[IN] GROUP "parent_user_group_name"];

where:

  • USER GROUP "user_group_name" is the login name of the new user group, of type string.

  • DESCRIPTION "user_group_description" is the description of the new user group, of type string.

  • LONGDESCRIPTION "long_description" is the long description of the user group, of type string.

  • LDAPLINK "LDAP_user_name" is the new LDAP user to be linked to the user group, of type string.

  • MEMBERS "login_name1..N" is the login name of a user to be added to the new group, of type string.

  • GROUP "parent_user_group_name" is the name of a user group of which the new group is a member, of type string.

Example

Copy
CREATE 
 USER GROUP "Managers" MEMBERS "palcazar", "dsmith";