How to shrink the log file in MYSQL SERVER

How to shrink the log file in MYSQL SERVER

The transaction log records the operations on the relevant database and also stores information related to database recovery.

There are many reasons to shrink the log, some due to insufficient space, and some due to application limitations.

The following describes the shrinking operation in simple mode.

1. Command line

USE MASTER
GO
ALTER DATABASE {DBName} SET RECOVERY SIMPLE WITH NO_WAIT
GO
ALTER DATABASE {DBName} SET RECOVERY SIMPLE --Simple mode GO
USE {DBName}
GO
DBCC SHRINKFILE (N'{DBName}_Log', 8, TRUNCATEONLY)
GO
USE MASTER
GO
ALTER DATABASE {DBName} SET RECOVERY FULL WITH NO_WAIT
GO
ALTER DATABASE {DBName} SET RECOVERY FULL --Restore to full mode

2. Step-by-step operation through the graphical interface

1. Open the database properties window

2. Change the database recovery mode from "full" to "simple"

3. Shrink the database log, "Task" -> "Shrink"

4. After shrinking, change the recovery mode of the database to "full"

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • MySQL series: redo log, undo log and binlog detailed explanation
  • Detailed explanation of MySQL redo log (redo log) and rollback log (undo logo)
  • Summary of 7 types of logs in MySQL
  • MySQL uses binlog logs to implement data recovery
  • Analysis and solution of a MySQL slow log monitoring false alarm problem
  • The role and opening of MySQL slow query log
  • Enabling and configuring MySQL slow query log
  • Undo log in MySQL
  • Detailed explanation of the binlog log analysis tool for monitoring MySQL: Canal
  • Analysis of MySQL Aborted connection warning log
  • Summary of MySQL Undo Log and Redo Log

<<:  Element dynamic routing breadcrumbs implementation example

>>:  Use of Linux sed command

Recommend

MySQL 8.0.21 installation and configuration method graphic tutorial

Record the installation and configuration method ...

How to draw a mind map in a mini program

Table of contents What is a mind map? How to draw...

Vue+openlayer5 method to get the coordinates of the current mouse slide

Preface: How to get the coordinates of the curren...

Installation and configuration of MySQL 5.7.17 free installation version

MYSQL version: MySQL Community Server 5.7.17, ins...

js to realize the function of uploading pictures

The principle of uploading pictures on the front ...

JS implements simple calendar effect

This article shares the specific code of JS to ac...

A brief discussion on the correct approach to MySQL table space recovery

Table of contents Preliminary Notes Problem Repro...

Summary of the pitfalls of using primary keys and rowids in MySQL

Preface We may have heard of the concept of rowid...

Use pure CSS to create a pulsating loader effect source code

Effect Preview Press the "Click to Preview&q...

Detailed explanation of MYSQL database table structure optimization method

This article uses an example to illustrate the me...

Use render function to encapsulate highly scalable components

need: In background management, there are often d...

How to use filters to implement monitoring in Zabbix

Recently, when I was working on monitoring equipm...

MySQL column to row conversion and year-month grouping example

As shown below: SELECT count(DISTINCT(a.rect_id))...

Docker and portainer configuration methods under Linux

1. Install and use Docer CE This article takes Ce...