5

As per explaination given on MSDN at link http://msdn.microsoft.com/en-us/library/ms177648.aspx I am not able to understand the meaning of Reads and Writes fully.whether it is physical or logical or database Reads and Writes. Please help me out in this regards

4

2 回答 2

4

它是 8k 块的物理读/写次数。因此,如果将其乘以 8,您将获得已读取/写入的千字节数。

于 2012-12-05T16:33:20.000 回答
2

Martin 回答了您的问题...logical_reads 列对应于逻辑读取(即可以由缓冲区缓存中当前可用的数据完成的请求),而读取对应于物理读取(即对当前不在缓冲区缓存中的数据的请求并且需要从磁盘上的相关数据文件中读取)。

SQL Server 中的写入会修改内存中的页面;修改后的页面被标记为脏页并由异步进程写入磁盘(也是 Martin 所说的)。

补充一下,所有这些数字都代表页数,而不是行数。

于 2012-05-30T22:12:22.327 回答