Skip to main content
Version: 2.0.1

Runtime settings

Memgraph contains settings that can be modified during runtime. All the settings are persisted between multiple runs.

Settings​

Setting nameDescription
organization.nameName of the organization using the instance of Memgraph (used for verifying the license key).
enterprise.licenseLicense key for Memgraph Enterprise

Checking and modifying settings​

All settings can be fetched by calling the following query:

SHOW DATABASE SETTINGS;

To check the value of a single setting you can use a slightly different query:

SHOW DATABASE SETTING 'setting.name';

If you want to change a value for a specific setting, following query should be used:

SET DATABASE SETTING 'setting.name' TO 'some-string-value';