Returns the number of output packets written to the network by SQL Server since it was last started.
Transact-SQL Syntax Conventions
@@PACK_SENT
integer
To display a report containing several SQL Server statistics, including packets sent and received, run sp_monitor.
The following example shows the usage of @@PACK_SENT.
SELECT @@PACK_SENT AS 'Pack Sent'
Here is a sample result set.
Pack Sent ----------- 291