SQL @@PACK_SENT is a System Statistical Function, returns the total number of output packets written to the network since the last time the SQL server started. The syntax behind this @@PACK_SENT is
@@PACK_SENT
SQL @@PACK_SENT Example
It shows you the total number of packets sent to the network in this SQL Server.
SELECT @@PACK_SENT AS [Total Packets Sent]

You can use the GETDATE() function along with the Pack_sent function to see the total packets sent until today. Learn more about SQL GETDATE from our SQL Server tutorial page.
SELECT @@PACK_SENT AS [Total Packets Sent], GETDATE() AS [As of Today]

@@PACK_SENT Example 2
In this @@PACK_SENT example, we are using both the Packet sent and Packet receive functions, along with Today’s date. Please refer to the SQL @@PACK_RECEIVED and SQL @@PACKET_ERRORS articles.
SELECT @@PACK_SENT AS [Total Packets Sent], @@PACK_RECEIVED AS [Total Packets Received], GETDATE() AS [As of Today]
