Yandex Cloud
Search
Contact UsTry it for free
  • Customer Stories
  • Documentation
  • Blog
  • All Services
  • System Status
  • Marketplace
    • Featured
    • Infrastructure & Network
    • Data Platform
    • AI for business
    • Security
    • DevOps tools
    • Serverless
    • Monitoring & Resources
  • All Solutions
    • By industry
    • By use case
    • Economics and Pricing
    • Security
    • Technical Support
    • Start testing with double trial credits
    • Cloud credits to scale your IT product
    • Gateway to Russia
    • Cloud for Startups
    • Center for Technologies and Society
    • Yandex Cloud Partner program
    • Price calculator
    • Pricing plans
  • Customer Stories
  • Documentation
  • Blog
© 2026 Direct Cursus Technology L.L.C.
Yandex Managed Service for MySQL®
  • Getting started
    • Resource relationships
    • High availability clusters
    • Networking in Managed Service for MySQL
    • Quotas and limits
    • Storage in Managed Service for MySQL®
    • Backups
    • Replication
    • Maintenance
    • User permissions
    • MySQL settings
    • SQL command limits
    • Comparing MySQL® 5.7 and 8.0
  • Access management
  • Pricing policy
  • Terraform reference
  • Monitoring metrics
  • Audit Trails events
  • Public materials
  • Release notes
  1. Concepts
  2. User permissions

User permissions in Managed Service for MySQL®

Written by
Yandex Cloud
Updated at April 20, 2026

In a Managed Service for MySQL® cluster, user permissions are decided by one or more privileges assigned to the user.

A privilege is a permission to perform certain operations in the cluster. In MySQL®, there are three levels of user privileges:

  • Administrative privileges, which allow cluster-level operations. These are set in the user-level MySQL® settings and are valid for all the cluster hosts.
  • Database-level privileges, which allow operations with all objects in the database.
  • Database object-level privileges, which allow operations with individual database objects, i.e., tables, indexes, views, and stored procedures.

Alongside the cluster, the system creates a database and a user with a privilege designated as ALL_PRIVILEGES for this database.

Administrative and database-level privileges are set via the Yandex Cloud interfaces; whereas database object-level privileges, via the GRANT and REVOKE SQL commands.

Warning

Privileges set via SQL are not saved in the cluster configuration and get reset after you restart the cluster.

Database-level user privileges in Managed Service for MySQL®Database-level user privileges in Managed Service for MySQL®

Privilege Description
ALL_PRIVILEGES Allows all actions with user data in the database and allows using the SHOW SLAVE STATUS statement.
ALL Synonym for the ALL_PRIVILEGES privilege used for managing privileges via the Yandex Cloud CLI.
ALTER Allows using the ALTER TABLE statement to change the structure of any custom tables in the database. To modify a table, you need the CREATE and INSERT privileges. To rename a table, you need the ALTER and DROP privileges for the original table and CREATE and INSERT for the new one.
ALTER_ROUTINE Allows using the ALTER ROUTINE statement to change or delete any custom stored procedures and functions in the database.
CREATE Allows using the CREATE statement to create custom tables in the database.
CREATE_ROUTINE Allows using the CREATE ROUTINE statement to create custom stored procedures and functions in the database.
CREATE_TEMPORARY_TABLES Allows using the CREATE TEMPORARY TABLE statement to create temporary custom tables in the database.
CREATE_VIEW Allows using the CREATE VIEW statement to create custom views in the database.
DELETE Allows deleting records from any custom tables in the database.
DROP Allows deleting tables and views.
EVENT Allows you to create, change, delete, or display events in the Event Scheduler.
EXECUTE Allows executing any custom stored procedures and functions.
INDEX Allows you to create and delete indexes from existing tables in the database.
INSERT Allows inserting records into custom DB tables.
LOCK_TABLES Allows the explicit use of the LOCK TABLES statement to create table locks in the database.
REFERENCES Enables you to create FOREIGN KEY for DB tables.
SELECT Allows you to read data from DB tables.
SHOW_VIEW Allows using the SHOW CREATE VIEW statement.
TRIGGER Allows you to create, delete, execute, or display triggers for existing DB tables.
UPDATE Allows updating records in DB tables.

To learn more about managing user privileges, see this MySQL® guide.

Was the article helpful?

Previous
Maintenance
Next
MySQL settings
© 2026 Direct Cursus Technology L.L.C.