SQLServer中的事务和锁
SQL Server中的事务和锁 事务全部是关于原子性(atomicity)的。原子性的概念是指可以把一些事情当作一个单元来看待。从数据库的角度看,它是指应全部执行或全部不执行的一条或多条语句的最小组合。 在事务中可以标记的点: 1. Begin Tran:设置起始点。 2. Co
SQL Server中的事务和锁
事务全部是关于原子性(atomicity)的。原子性的概念是指可以把一些事情当作一个单元来看待。从数据库的角度看,它是指应全部执行或全部不执行的一条或多条语句的最小组合。
在事务中可以标记的点:
1. Begin Tran:设置起始点。
2. Commit Tran:使事务成为数据库永久的、不可逆转的一部分。
3. Rollback Tran:本质上说想要忘记它曾经发生过,即使回滚,回到事务发生之初。
4. Save Tran:创建一个特定标识符,,只运行作部分回滚。
SQL Server日志的工作方式
SQL Server中可以锁定的资源:
1. 数据库:锁定整个数据库。这通常发生在整个数据库模式改变的时候。
2. 表:锁定整个表。这包含了于该表相关联的所有数据相关的对象,包括实际的数据行(它们的每一行)以及与该表相关联的所有索引中的键。
3. 区段:锁定整个区段。因为一个区段是由8页组成,所以区段锁定是指锁定控制了区段、控制了该区段内的8个数据或索引页以及8也中的所有数据行。
4. 页:锁定该页中的所有数据或索引键。
5. 键:在索引中的特定键或一系列键上有锁。相同索引页中的其他键不受影响。
6. 行或行标识符(RID):虽然从技术上讲:锁是放在行标识符(它是SQL Server的内部结构)上的,但是本质上是锁定了整个数据行。
SQL Server锁的锁定模式:
1. 共享锁:共享锁用于只需要读取数据的时候,也就是不会改变任何内容。
2. 排他锁:不能与其他锁共存。
3. 更新锁:更新锁是共享锁和排他锁的混合,是一种特殊的占位符。也就是先共享数据,可以读取,当需要更改的时候,转换成排他锁,就可以有效地防止死锁了。
4. 意向锁(IntentLock):是真正的占位符,用来处理对象层次问题。
5. 模式锁(SchemaLock):分为模式修改锁(对对象模式改变)和模式稳定性锁定(维持模式稳定)。
6. 批量更新锁:允许并行加载数据。
锁的兼容性:
SQL Server中死锁的错误号:1205
事务的ACID:
1. 原子性(Atomicity):事务要么全部执行,要么全部不执行。
2. 一致性(Consistency):需要遵守所有的约束以及其他的数据完整性规则,并且 完全的更新所有相关的对象(数据页、索引页)。
3. 隔离性(Isolation):每一个事务都与其他的任何事务完全的隔离。一个事务不会受到另一个事务动作的干扰。
4. 持久性(Durability):完成事务后,它的作用结果将永远存在于系统内。

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

For objects with the same name that already exist in the SQL Server database, the following steps need to be taken: Confirm the object type (table, view, stored procedure). IF NOT EXISTS can be used to skip creation if the object is empty. If the object has data, use a different name or modify the structure. Use DROP to delete existing objects (use caution, backup recommended). Check for schema changes to make sure there are no references to deleted or renamed objects.

The import steps are as follows: Copy the MDF file to SQL Server's data directory (usually C:\Program Files\Microsoft SQL Server\MSSQL\DATA). In SQL Server Management Studio (SSMS), open the database and select Attach. Click the Add button and select the MDF file. Confirm the database name and click the OK button.

When the SQL Server service fails to start, here are some steps to resolve: Check the error log to determine the root cause. Make sure the service account has permission to start the service. Check whether dependency services are running. Disable antivirus software. Repair SQL Server installation. If the repair does not work, reinstall SQL Server.

To view the SQL Server port number: Open SSMS and connect to the server. Find the server name in Object Explorer, right-click it and select Properties. In the Connection tab, view the TCP Port field.

SQL Server database files are usually stored in the following default location: Windows: C:\Program Files\Microsoft SQL Server\MSSQL\DATALinux: /var/opt/mssql/data The database file location can be customized by modifying the database file path setting.

If you accidentally delete a SQL Server database, you can take the following steps to recover: stop database activity; back up log files; check database logs; recovery options: restore from backup; restore from transaction log; use DBCC CHECKDB; use third-party tools. Please back up your database regularly and enable transaction logging to prevent data loss.

If the SQL Server installation fails, you can clean it up by following these steps: Uninstall SQL Server Delete registry keys Delete files and folders Restart the computer

SQL Server English installation can be changed to Chinese by following the following steps: download the corresponding language pack; stop the SQL Server service; install the language pack; change the instance language; change the user interface language; restart the application.
