Home Database Mysql Tutorial [MSSQL]SQLServer事务语法_MySQL

[MSSQL]SQLServer事务语法_MySQL

May 30, 2016 pm 05:09 PM
affairs grammar

事务全部是关于原子性的。原子性的概念是指可以把一些事情当做一个单元来看待。从数据库的角度看,它是指应全部执行或全部都不执行的一条或多条语句的最小组合。
为了理解事务的概念,需要能够定义非常明确的边界。事务要有非常明确的开始和结束点。SQL Server中的每一条SELECT、INSERT、UPDATE和DELETE语句都是隐式事务的一部分。即使只发出一条语句,也会把这条语句当做一个事务-要么执行语句中的所有内容,要么什么都不执行。但是如果需要的不只是一条,可能是多条语句呢?在这种情况下,就需要有一种方法来标记事务的开始和结束,以及事务的成功或失败。可以使用一些T-SQL语句在事务中”标记”这些点。

BEGIN TRAN:设置起始点。
COMMIT TRAN:使事务成为数据库中永久的、不可逆转的一部分。
ROLLBACK TRAN:本质上说想要忘记它曾经发生过。
SAVE TRAN:创建一个特定标记符,只允许部分回滚。
一、BEGIN TRAN
  事务的开始可能是事务过程中最容易理解的概念。它唯一的目的就是表示一个单元的开始。如果由于某种原因,不能或者不想提交事务,那么这就是所有数据库活动将要回滚的起点。也就是说,数据库会忽略这个起点之后的最终没有提交的所有语句。

  语法如下:

  BEGIN TRAN[SACTION] [ | ]
  [ WITH MARK [] ]
二、COMMIT TRAN
  事务的提交是一个事务的终点。当发出COMMIT TRAN命令时,可以认为该事务是持久的。也就是说,事务的影响现在是持久的并会持续,即使发生系统故障也不受影响(只要有备份或者数据库文件没有被物理破坏就行)。撤销已完成事务的唯一方法是发出一个新的事务。从功能上而言,该事务是对第一个事务的反转。

  COMMIT TRAN语法如下:

  COMMIT TRAN[SACTION] [ | ]
三、ROLLBACK TRAN
  ROLLBACK做的事情是回到起点。从关联的BEGIN语句开始发生的任何事情事实上都会被忘记。

  除了允许保存点外,ROLLBACK的语法看上去和BEGIN或COMMIT语句一样:

  ROLLBACK TRAN[SACTION] [ | | | ]
四、SAVE TRAN
  保存事务从本质上说就是创建书签(bookmark)。为书签建立一个名称,在建立了”书签”之后,可以在回滚中引用它。创建书签的好处是可以回滚到代码中的特定点上-只要为想要回滚到的那个保存点命名。

  语法如下:

  SAVE TRAN[SCATION] [ | ]
  下面整个示例,先来建一张表如下:
  这里写图片描述
  

<code class="hljs sql">
--==================================================
--作者:龚德辉
--用途:生成新版报价
--日期:2015-11-04
--==================================================
Create Proc UP_NewQuo
(
 @PricingCode as nvarchar(30),
 @NewPricingCode as  nvarchar(30)
)
--set @PricingCode=&#39;QT-150804-001&#39;
--set @NewPricingCode=&#39;QT-150804-001-1&#39;
as
begin

BEGIN TRAN Tran_NewVersion    --开始事务

DECLARE @tran_error int;
SET @tran_error = 0;
    BEGIN TRY 

            insert into Quo_Standardcost 
            SELECT    &#39;&#39;, ClientNo, ClientDes, ClientFullDes, [Description], PartNo, CurrencyCode, Rate, LabourCost, 
                            LabourRate, ProfitRate, TaxRate, Ismanufacture, qy, stype, Loss, CarryCostRate, CapitalOccupationRate, 
                            ManufacturingFlag, ManufacturingValue, ManufacturingRate, EngineerId, Engineer,@NewPricingCode , getdate(), Modifier, 
                            ModifyDate, [Priority], SaleRemark, PurRemark, RDRemark, FINRemark, IsSend, SendId, BusinessId, Qty, Amount, 
                            SubTotal, Scrap, MaterialCost, ManufacturingExpense, LaborCost, ProductionCost, TaxCost, CarryCost, Sales, MOQ1K, 
                            MOQ3K, [5K], [3K], [1K], ProjectNo
            FROM      Quo_Standardcost
            WHERE   (PricingCode = @PricingCode)

            insert into [Quo_Standardcostdetail]
            SELECT 
                   @NewPricingCode
                  ,[Description]
                  ,[Item]
                  ,[Spec]
                  ,[Usage]
                  ,[Unit]
                  ,[Currency]
                  ,[Remarks]
                  ,getdate()
                  ,[Modifier]
                  ,[ModifyDate]
                  ,[MOQ]
              FROM  [Quo_Standardcostdetail]
              WHERE   (PricingCode = @PricingCode)


        SET @tran_error = @tran_error + @@ERROR;
    END TRY

BEGIN CATCH
    PRINT &#39;出现异常,错误编号:&#39; + convert(varchar,error_number()) + &#39;,错误消息:&#39; + error_message()
    SET @tran_error = @tran_error + 1
END CATCH

IF(@tran_error > 0)
    BEGIN
        --执行出错,回滚事务
        ROLLBACK TRAN;
        PRINT &#39;生成新版失败,取消生成!&#39;;
    END
ELSE
    BEGIN
        --没有异常,提交事务
        COMMIT TRAN;
        PRINT &#39;生成新版成功!&#39;;
    END

end</code>
Copy after login
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 尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks 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)

How to quickly turn your Python code into an API How to quickly turn your Python code into an API Apr 14, 2023 pm 06:28 PM

When it comes to API development, you may think of DjangoRESTFramework, Flask, and FastAPI. Yes, they can be used to write APIs. However, the framework shared today allows you to convert existing functions into APIs faster. It is Sanic . Introduction to Sanic Sanic[1] is a Python3.7+ web server and web framework designed to improve performance. It allows the use of the async/await syntax added in Python 3.5, which can effectively avoid blocking and improve response speed. Sanic is committed to providing a simple and fast way to create and launch

Lock wait timeout exceeded; try restarting transaction - How to solve MySQL error: transaction wait timeout Lock wait timeout exceeded; try restarting transaction - How to solve MySQL error: transaction wait timeout Oct 05, 2023 am 08:46 AM

Lockwaittimeoutexceeded;tryrestartingtransaction - How to solve the MySQL error: transaction wait timeout. When using the MySQL database, you may sometimes encounter a common error: Lockwaittimeoutexceeded;tryrestartingtransaction. This error indicates that the transaction wait timeout. This error usually occurs when

MySQL transaction processing: the difference between automatic submission and manual submission MySQL transaction processing: the difference between automatic submission and manual submission Mar 16, 2024 am 11:33 AM

MySQL transaction processing: the difference between automatic submission and manual submission. In the MySQL database, a transaction is a set of SQL statements. Either all executions are successful or all executions fail, ensuring the consistency and integrity of the data. In MySQL, transactions can be divided into automatic submission and manual submission. The difference lies in the timing of transaction submission and the scope of control over the transaction. The following will introduce the difference between automatic submission and manual submission in detail, and give specific code examples to illustrate. 1. Automatically submit in MySQL, if it is not displayed

New type alias syntax in PHP8.0 New type alias syntax in PHP8.0 May 14, 2023 pm 02:21 PM

With the release of PHP 8.0, a new type alias syntax has been added, making it easier to use custom types. In this article, we'll take a closer look at this new syntax and its impact on developers. What is a type alias? In PHP, a type alias is essentially a variable that references the name of another type. This variable can be used like any other type and declared anywhere in the code. The main function of this syntax is to define custom aliases for commonly used types, making the code easier to read and understand.

What are the syntax and structure characteristics of lambda expressions? What are the syntax and structure characteristics of lambda expressions? Apr 25, 2024 pm 01:12 PM

Lambda expression is an anonymous function without a name, and its syntax is: (parameter_list)->expression. They feature anonymity, diversity, currying, and closure. In practical applications, Lambda expressions can be used to define functions concisely, such as the summation function sum_lambda=lambdax,y:x+y, and apply the map() function to the list to perform the summation operation.

The connection and difference between Go language and JS The connection and difference between Go language and JS Mar 29, 2024 am 11:15 AM

The connection and difference between Go language and JS Go language (also known as Golang) and JavaScript (JS) are currently popular programming languages. They are related in some aspects and have obvious differences in other aspects. This article will explore the connections and differences between the Go language and JavaScript, and provide specific code examples to help readers better understand these two programming languages. Connection: Both Go language and JavaScript are cross-platform and can run on different operating systems.

Master the power of PHP PDO: advanced queries and updates Master the power of PHP PDO: advanced queries and updates Feb 20, 2024 am 08:24 AM

The PHP Data Objects (PDO) extension provides efficient and object-oriented interaction with database servers. Its advanced query and update capabilities enable developers to perform complex database operations, improving performance and code maintainability. This article will delve into the advanced query and update functions of PDO and guide you to master its powerful functions. Advanced queries: Using placeholders and bound parameters Placeholders and bound parameters are important tools for improving query performance and security. Placeholders use question marks (?) to represent replaceable parameters in the query, while bind parameters allow you to specify the data type and value of each parameter. By using these methods, you can avoid SQL injection attacks and improve performance because the database engine can optimize queries ahead of time. //Use placeholder $stmt=$

PHP PDO Tutorial: An Advanced Guide from Basics to Mastery PHP PDO Tutorial: An Advanced Guide from Basics to Mastery Feb 19, 2024 pm 06:30 PM

1. Introduction to PDO PDO is an extension library of PHP, which provides an object-oriented way to operate the database. PDO supports a variety of databases, including Mysql, postgresql, oracle, SQLServer, etc. PDO enables developers to use a unified API to operate different databases, which allows developers to easily switch between different databases. 2. PDO connects to the database. To use PDO to connect to the database, you first need to create a PDO object. The constructor of the PDO object receives three parameters: database type, host name, database username and password. For example, the following code creates an object that connects to a mysql database: $dsn="mysq

See all articles