MicroStrategy ONE

Revoke Security Role statement

Revokes a security role from a user or user group.

Copy
REVOKE 
 [SECURITY ROLE] "security_role_name" FROM 
 ([USER] "login_name" | 
 [USER] GROUP "user_group_name") 
 FROM PROJECT "project_name";

where:

  • SECURITY ROLE "security_role_name" is the name of the security role to be revoked from a user or user group in a project, of type string.

  • USER "login_name" is the login name of the user for whom the security role in a project is to be revoked, of type string.

  • USER GROUP "user_group_name" is the name of the user group for which the security role in a project is to be revoked, of type string.

  • PROJECT "project_name" is the name of the project in which the security role is to be revoked from a user or user group, of type string.

Examples

Copy
REVOKE 
 SECURITY ROLE "Architect Role" FROM GROUP "Temporary Architects" 
 FROM PROJECT "Development";
Copy
REVOKE 
 "Architect Role" FROM "palcazar" FROM "MicroStrategy 
 Tutorial";