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:
|
<<: Element dynamic routing breadcrumbs implementation example
Record the installation and configuration method ...
Table of contents What is a mind map? How to draw...
Preface: How to get the coordinates of the curren...
MYSQL version: MySQL Community Server 5.7.17, ins...
question Running gdb in docker, hitting a breakpo...
The principle of uploading pictures on the front ...
This article shares the specific code of JS to ac...
Table of contents Preliminary Notes Problem Repro...
Preface We may have heard of the concept of rowid...
Effect Preview Press the "Click to Preview&q...
This article uses an example to illustrate the me...
need: In background management, there are often d...
Recently, when I was working on monitoring equipm...
As shown below: SELECT count(DISTINCT(a.rect_id))...
1. Install and use Docer CE This article takes Ce...