@@PACK_RECEIVED (Transact-SQL)

**APPLIES TO:** ![yes](media/yes.png)SQL Server (starting with 2008) ![no](media/no.png)Azure SQL Database ![no](media/no.png)Azure SQL Data Warehouse ![no](media/no.png)Parallel Data Warehouse

Returns the number of input packets read from the network by SQL Server since it was last started.

Topic link icon Transact-SQL Syntax Conventions

Syntax

@@PACK_RECEIVED  

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_RECEIVED.

SELECT @@PACK_RECEIVED AS 'Packets Received';   

Here is a sample result set.

Packets Received  
----------------  
128  

See Also

[@@PACK_SENT](../../t-sql/functions/pack-sent-transact-sql.md)
sp_monitor
System Statistical Functions