SQL @@TOTAL_WRITE

SQL @@TOTAL_WRITE is a System Statistical Function, returns the total disk writes since the last time the SQL server started. The syntax behind this is @@TOTAL_WRITE is @@TOTAL_WRITE SQL @@TOTAL_WRITE Example The following code snippet will show you the total number of disk writes for this SQL Server. SELECT @@TOTAL_WRITE AS [Total Number of Writes] You … Read more