Home Database Mysql Tutorial SQL Server架构----数据库事务

SQL Server架构----数据库事务

Jun 07, 2016 pm 03:48 PM
server sql affairs database Architecture

ACID属性 事务是数据库的工作单元,通常包含一些读/写数据库的命令。一个工作单元要完成事务,必须满足ACID(原子性、一致性、隔离性和持久性)属性。 原子性(Atomicity): 意味着该事务的所有影响必须成功完成或者修改回滚。比如你去ATM取款,要么成功取

ACID属性

事务是数据库的工作单元,通常包含一些读/写数据库的命令。一个工作单元要完成事务,必须满足ACID(原子性、一致性、隔离性和持久性)属性。

原子性(Atomicity):意味着该事务的所有影响必须成功完成或者修改回滚。比如你去ATM取款,要么成功取出钱同时账户余额减少,要么取钱失败且余额不变。

一致性(Consistency):它要确保事务不能破坏数据库的完整性规则,必须使数据库处于一致的状态。比如你的系统要求库存水平不能为负值,性别栏位必须是男性或女性。为了保持一致,一个事务决不能破坏数据的任何限制或规则。

隔离性(Isolation):隔离是指保持运行未完成的事务的变化,同时独立于另一个。每个事务必须完全独立,并且它所做的更改不能被其他事务可读,即便SQL Server允许你通过改变隔离级别来寻求业务和性能要求之间的平衡。

持久性(Durability):一旦事务被提交,即使系统发生故障也要持续,对系统的影响是永久性的。在SQL Server中,事务提交之前,事务所做的更改相关的信息就被写入了事务日志。

SQL Server事务

在SQL Server中,有两种类型的事务,隐式和显式。它们的区别仅在于创建的方式不同。

隐式事务由SQL Server自动使用,目的是确保单一命令的ACID属性。例如,如果你写一个Update语句去更新10行,SQL Server会以隐式事务来执行它,以便应用ACID属性,这10行要么全部更新,要么都不更新。

显示事务是通过使用BEGIN TRANSACTION T-SQL命令启动,并通过使用COMMIT TRANSACTIONROLLBACK TRANSACTION命令来停止。

有效地提交一个事务,意味着使事务做的修改永久化,反之,回滚一个事务意味着撤消事务中所做的所有修改。显示事务常用于这种情况,即你想把ACID属性应用到一组更改,这些更改当成一个整体;如果业务逻辑需要你取消变更时,你也能够在任何时候回滚。

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

What is the difference between HQL and SQL in Hibernate framework? What is the difference between HQL and SQL in Hibernate framework? Apr 17, 2024 pm 02:57 PM

HQL and SQL are compared in the Hibernate framework: HQL (1. Object-oriented syntax, 2. Database-independent queries, 3. Type safety), while SQL directly operates the database (1. Database-independent standards, 2. Complex executable queries and data manipulation).

How does Go language implement the addition, deletion, modification and query operations of the database? How does Go language implement the addition, deletion, modification and query operations of the database? Mar 27, 2024 pm 09:39 PM

Go language is an efficient, concise and easy-to-learn programming language. It is favored by developers because of its advantages in concurrent programming and network programming. In actual development, database operations are an indispensable part. This article will introduce how to use Go language to implement database addition, deletion, modification and query operations. In Go language, we usually use third-party libraries to operate databases, such as commonly used sql packages, gorm, etc. Here we take the sql package as an example to introduce how to implement the addition, deletion, modification and query operations of the database. Assume we are using a MySQL database.

What is the architecture and working principle of Spring Data JPA? What is the architecture and working principle of Spring Data JPA? Apr 17, 2024 pm 02:48 PM

SpringDataJPA is based on the JPA architecture and interacts with the database through mapping, ORM and transaction management. Its repository provides CRUD operations, and derived queries simplify database access. Additionally, it uses lazy loading to only retrieve data when necessary, thus improving performance.

How steep is the learning curve of golang framework architecture? How steep is the learning curve of golang framework architecture? Jun 05, 2024 pm 06:59 PM

The learning curve of the Go framework architecture depends on familiarity with the Go language and back-end development and the complexity of the chosen framework: a good understanding of the basics of the Go language. It helps to have backend development experience. Frameworks that differ in complexity lead to differences in learning curves.

How does Hibernate implement polymorphic mapping? How does Hibernate implement polymorphic mapping? Apr 17, 2024 pm 12:09 PM

Hibernate polymorphic mapping can map inherited classes to the database and provides the following mapping types: joined-subclass: Create a separate table for the subclass, including all columns of the parent class. table-per-class: Create a separate table for subclasses, containing only subclass-specific columns. union-subclass: similar to joined-subclass, but the parent class table unions all subclass columns.

iOS 18 adds a new 'Recovered' album function to retrieve lost or damaged photos iOS 18 adds a new 'Recovered' album function to retrieve lost or damaged photos Jul 18, 2024 am 05:48 AM

Apple's latest releases of iOS18, iPadOS18 and macOS Sequoia systems have added an important feature to the Photos application, designed to help users easily recover photos and videos lost or damaged due to various reasons. The new feature introduces an album called "Recovered" in the Tools section of the Photos app that will automatically appear when a user has pictures or videos on their device that are not part of their photo library. The emergence of the "Recovered" album provides a solution for photos and videos lost due to database corruption, the camera application not saving to the photo library correctly, or a third-party application managing the photo library. Users only need a few simple steps

Hand-tearing Llama3 layer 1: Implementing llama3 from scratch Hand-tearing Llama3 layer 1: Implementing llama3 from scratch Jun 01, 2024 pm 05:45 PM

1. Architecture of Llama3 In this series of articles, we implement llama3 from scratch. The overall architecture of Llama3: Picture the model parameters of Llama3: Let's take a look at the actual values ​​of these parameters in the Llama3 model. Picture [1] Context window (context-window) When instantiating the LlaMa class, the variable max_seq_len defines context-window. There are other parameters in the class, but this parameter is most directly related to the transformer model. The max_seq_len here is 8K. Picture [2] Vocabulary-size and AttentionL

Detailed tutorial on establishing a database connection using MySQLi in PHP Detailed tutorial on establishing a database connection using MySQLi in PHP Jun 04, 2024 pm 01:42 PM

How to use MySQLi to establish a database connection in PHP: Include MySQLi extension (require_once) Create connection function (functionconnect_to_db) Call connection function ($conn=connect_to_db()) Execute query ($result=$conn->query()) Close connection ( $conn->close())

See all articles