Detailed explanation of two methods for setting global variables and session variables in MySQL

Detailed explanation of two methods for setting global variables and session variables in MySQL

1. There are two ways to modify global variables in MySQL:

Method 1: Modify the my.ini configuration file. If you want to set global variables, the easiest way is to write the variable configuration directly in the my.ini file, as shown in the figure below. Restarting the database service will make the global variables take effect.

We open several MySQL command lines and can see that the variables in all sessions are effective, as shown in the figure

Method 2: Use the keyword global to set global variables without modifying the configuration file

set global autocommit=1;

Set the value of the autocommit variable to ON

It should be noted that the setting of global variables using this method is only valid for newly opened sessions and is not effective for already opened sessions.

2. To modify session variables in MySQL, you can use the session keyword, such as:

set session autocommit=1;

Modifying the session variable configuration is only effective for the variable configuration of this session and is invalid for other sessions.

3. Although global variables and session variables are set, the database configuration will be reinitialized after the MySQL service is restarted, and everything will be initialized according to the configuration of my.ini. Both global and session configurations will become invalid.

Summarize

The above is the method of setting global variables and session variables in MySQL that I introduced to you. I hope it will be helpful to you. If you have any questions, please leave me a message and I will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website!

You may also be interested in:
  • Example of writing lazy UNION in MySQL using custom variables
  • Detailed explanation of mysql user variables and set statement examples
  • MySQL variable principles and application examples
  • Detailed explanation of MySQL startup options and system variables examples
  • Example analysis of mysql variable usage [system variables, user variables]
  • How to create (CREATE PROCEDURE) and call (CALL) a MySQL stored procedure and how to create (DECLARE) and assign (SET) a variable
  • 15 important variables you must know about MySQL performance tuning (summary)
  • MySQL 8.0.12 installation and environment variable configuration tutorial under win10
  • MySQL 5.6.23 Installation and Configuration Environment Variables Tutorial
  • The concept and characteristics of MySQL custom variables

<<:  Nginx load balancing algorithm and failover analysis

>>:  Basic usage examples of Vue named slots

Recommend

iframe adaptive size implementation code

Page domain relationship: The main page a.html bel...

Detailed explanation of Vue's caching method example

Recently, a new requirement "front-end cache...

Some useful meta setting methods (must read)

<meta name="viewport" content="...

Troubleshooting of master-slave delay issues when upgrading MySQL 5.6 to 5.7

Recently, when upgrading the Zabbix database from...

Quickly install MySQL5.7 compressed package on Windows

This article shares with you how to install the M...

How to use Portainer to build a visual interface for Docker

Portainer Introduction Portainer is a graphical m...

How to build mysql master-slave server on centos7 (graphic tutorial)

This article mainly introduces how to build a MyS...

This article will show you how to use Vue 3.0 responsive

Table of contents Use Cases Reactive API related ...

JavaScript+HTML to implement student information management system

Table of contents 1. Introduction 2. Rendering 3....

Summary of JavaScript JSON.stringify() usage

Table of contents 1. Usage 1. Basic usage 2. The ...

Detailed explanation of mysql deadlock checking and deadlock removal examples

1. Query process show processlist 2. Query the co...

How to understand JavaScript modularity

Table of contents 1. Browser support 2. export ex...

Web page layout should consider IE6 compatibility issues

The figure below shows the browser viewing rate i...