Skip to content

Latest commit

 

History

History
62 lines (49 loc) · 1.84 KB

File metadata and controls

62 lines (49 loc) · 1.84 KB
title @@PACK_RECEIVED (Transact-SQL) | Microsoft Docs
ms.custom
ms.date 03/14/2017
ms.prod sql
ms.prod_service sql-database
ms.reviewer
ms.technology t-sql
ms.topic language-reference
f1_keywords
@@PACK_RECEIVED_TSQL
@@PACK_RECEIVED
dev_langs
TSQL
helpviewer_keywords
@@PACK_RECEIVED function
number of packets read
packets [SQL Server], number read
ms.assetid 5c0b3d36-bfad-4f0b-abb8-e8f6391b32cd
author VanMSFT
ms.author vanto

@@PACK_RECEIVED (Transact-SQL)

[!INCLUDEtsql-appliesto-ss2008-xxxx-xxxx-xxx-md]

Returns the number of input packets read from the network by [!INCLUDEssNoVersion] 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 [!INCLUDEssNoVersion] 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
sp_monitor
System Statistical Functions