Explanation of Truncate Table usage

Explanation of Truncate Table usage

TRUNCATE TABLE

Deletes all rows in a table without logging individual row deletions.

grammar

TRUNCATE TABLE name

parameter

name

Is the name of the table to be truncated or from which all rows are to be deleted.

Notes

TRUNCATE TABLE is functionally identical to a DELETE statement without a WHERE clause: both delete all rows in the table. However, TRUNCATE TABLE is faster than DELETE and uses fewer system and transaction log resources.

The DELETE statement deletes one row at a time and records an entry in the transaction log for each row deleted. TRUNCATE TABLE deletes data by freeing the data pages used to store table data, and only records the release of pages in the transaction log.

TRUNCATE TABLE deletes all rows in the table, but the table structure and its columns, constraints, indexes, etc. remain unchanged. The count value used to identify new rows is reset to the seed for the column. If you want to preserve the identity count value, use DELETE instead. If you want to remove a table definition and its data, use the DROP TABLE statement.

For tables referenced by a FOREIGN KEY constraint, TRUNCATE TABLE cannot be used. Instead, a DELETE statement without a WHERE clause should be used. Because TRUNCATE TABLE is not logged, it cannot activate triggers.

TRUNCATE TABLE cannot be used on a table that participates in an indexed view.

Example

The following example deletes all data from the authors table.

TRUNCATE TABLE authors

Permissions

TRUNCATE TABLE permissions default to the table owner, members of sysadmin fixed server role, and members of db_owner and db_ddladmin fixed database roles and are not transferable.

Summarize

The above is the full content of this article. I hope that the content of this article will have certain reference learning value for your study or work. Thank you for your support of 123WORDPRESS.COM. If you want to learn more about this, please check out the following links

You may also be interested in:
  • Oracle's implementation of granting user authorization to truncatetable
  • Difference between delete from table name and truncate table table name
  • Usage of Truncate in SQL
  • Detailed explanation of truncate log file in golang practice
  • Detailed usage of tf.truncated_normal and tf.random_normal
  • How to improve truncate in smarty to support Chinese
  • How to roll back TRUNCATE transactions in SQL Server
  • Understanding the difference between truncate and delete in SQL with examples
  • Detailed explanation of the similarities and differences between drop, delete and truncate in SQL
  • MySQL starts slow SQL and analyzes the causes

<<:  Vue implements tab navigation bar and supports left and right sliding function

>>:  How to solve the problem that VMware virtual machine bridge mode cannot access the Internet

Recommend

Creating private members in JavaScript

Table of contents 1. Use closures 2. Use ES6 clas...

Teach you how to install docker on windows 10 home edition

When I wrote the Redis book and the Spring Cloud ...

Issues with upgrading Python and installing Mongodb drivers under Centos

Check the Python version python -V If it is below...

A simple explanation of MySQL parallel replication

1. Background of Parallel Replication First of al...

Vue+Element realizes paging effect

This article example shares the specific code of ...

Detailed explanation of the relationship between React and Redux

Table of contents 1. The relationship between red...

WeChat applet uses the video player video component

This article example shares the specific code of ...

Sample code for implementing mysql master-slave replication in docker

Table of contents 1. Overview 1. Principle 2. Imp...

Detailed explanation of the practical application of centos7 esxi6.7 template

1. Create a centos7.6 system and optimize the sys...

Mysql sets boolean type operations

Mysql sets boolean type 1. Tinyint type We create...

How to create components in React

Table of contents Preface Component Introduction ...

Detailed explanation of JavaScript prototype and examples

Table of contents The relationship between the co...

Sample code for making a drop-down menu using pure CSS

Introduction: When I looked at interview question...

Build a high-availability MySQL cluster with dual VIP

Table of contents 1. Project Description: 2. Proj...