@@PACK_SENT (Transact-SQL)

Applies to: SQL Server Azure SQL Managed Instance

Returns the number of output packets written to the network by SQL Server since it was last started.

Transact-SQL syntax conventions

Syntax

@@PACK_SENT  

Note

To view Transact-SQL syntax for SQL Server 2014 (12.x) and earlier versions, see Previous versions documentation.

Return Types

integer

Remarks

To display a report containing several SQL Server statistics, including packets sent and received, run sp_monitor.

Examples

The following example shows the usage of @@PACK_SENT.

SELECT @@PACK_SENT AS 'Pack Sent';  

Here is a sample result set.

Pack Sent  
-----------  
291  

See Also

@@PACK_RECEIVED (Transact-SQL)
sp_monitor (Transact-SQL)
System Statistical Functions (Transact-SQL)