SQL @@TOTAL_READ

SQL @@TOTAL_READ Statistical Function returns the total number of disk reads since the last time the SQL server started. Remember, this does not include cache reads. The syntax of the @@TOTAL_READ is @@TOTAL_READ SQL @@TOTAL_READ Example The below code snippet shows you the total number of disk reads for this SQL Server. SELECT @@TOTAL_READ AS [Total … Read more