@@PACK_RECEIVED (Transact-SQL)

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

Ikona łącza do tematu Transact-SQL Syntax Conventions

Składnia

@@PACK_RECEIVED

Return Types

integer

Uwagi

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

Zobacz także

Odwołanie

@@PACK_SENT

sp_monitor

System Statistical Functions