SHOW statement allows you to view configuration parameter values that control various aspects of your Ditto instance’s behavior.
Syntax
DQL
SHOW ALL
Display all configuration parameters and their current values:DQL
Filtering with LIKE
You can filter the parameters displayed using pattern matching:DQL
%- Matches zero or more characters_- Matches exactly one character
Escape Characters
If you need to match literal% or _ characters in parameter names, use the ESCAPE clause:
DQL
SHOW Specific Parameter
Display the value of a single configuration parameter:DQL
Common Configuration Parameters
Some frequently used configuration parameters include:| Parameter | Description |
|---|---|
dql_strict_mode | Controls whether strict mode is enabled for type definitions |
max_query_time | Maximum execution time for queries |
Use
SHOW ALL to see the complete list of available configuration parameters and their current values in your Ditto instance.Usage Examples
See Also
- ALTER SYSTEM - Modify configuration parameters at runtime
- Strict Mode - Understanding DQL_STRICT_MODE parameter