SQL Server/T-SQL Tutorial/System Settings/TOTAL WRITE
@@TOTAL_WRITE Displays the number of disk writes by the SQL Server instance since it was last started.
3>
4> SELECT "TotalWrite", @@TOTAL_WRITE
5> GO
---------- -----------
TotalWrite 10485
(1 rows affected)