LSN 在 SQL Server 中是什么意思?

What does LSN mean in SQL Server?(LSN 在 SQL Server 中是什么意思?)
本文介绍了LSN 在 SQL Server 中是什么意思?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

日志序列号是什么意思?我知道它是二进制类型和 10 字节长,它对应于事务在 DB 中发生的时间.但这是一个以某种有效二进制格式存储的高精度日期时间值,还是日期时间和其他东西的函数(例如,在同一毫秒内发生的事务序列号).我做了很多搜索,但找不到一个好的答案.

What is the meaning of Log Sequence Number? I know that it is of type binary and 10bytes long and it corresponds to the time the transaction happen in DB. But is this a high precision date-time value that is stored in some efficient binary format or is this a function of date-time and something else (for example the serial number of transactions that happen at the same milli second). I did a lot of searching but couldn't find a good answer to this.

任何人都可以用一个公式或函数来解释,该公式或函数用于从日期-时间或其他任何东西推导出 LSN.

Can any one explain with a formula or function that is used to derive the LSN from date-time or anything.

推荐答案

SQL Server 中的每条记录事务日志是唯一标识的通过日志序列号 (LSN).LSN排序使得如果 LSN2 是大于 LSN1,变化由引用的日志记录描述到由 LSN2 发生更改后由日志记录 LSN 描述.

Every record in the SQL Server transaction log is uniquely identified by a log sequence number (LSN). LSNs are ordered such that if LSN2 is greater than LSN1, the change described by the log record referred to by LSN2 occurred after the change described by the log record LSN.

来自这里.

您不应该关心这些是如何生成的.

You should not be concerned with how these are generated.

这篇关于LSN 在 SQL Server 中是什么意思?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

Simulating MySQL#39;s ORDER BY FIELD() in Postgresql(在 Postgresql 中模拟 MySQL 的 ORDER BY FIELD())
Using MySQL query to traverse rows to make a recursive tree(使用MySQL查询遍历行制作递归树)
MySQL LOAD DATA INFILE with ON DUPLICATE KEY UPDATE(MySQL LOAD DATA INFILE 和 ON DUPLICATE KEY UPDATE)
Search for quot;whole word matchquot; in MySQL(搜索“全字匹配在 MySQL 中)
add column to mysql table if it does not exist(如果不存在,则将列添加到 mysql 表)
MIN/MAX vs ORDER BY and LIMIT(MIN/MAX 与 ORDER BY 和 LIMIT)