--- 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) [!INCLUDE[tsql-appliesto-ss2008-xxxx-xxxx-xxx-md](../../includes/tsql-appliesto-ss2008-xxxx-xxxx-xxx-md.md)] Returns the number of input packets read from the network by [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] since it was last started. ![Topic link icon](../../database-engine/configure-windows/media/topic-link.gif "Topic link icon") [Transact-SQL Syntax Conventions](../../t-sql/language-elements/transact-sql-syntax-conventions-transact-sql.md) ## Syntax ``` @@PACK_RECEIVED ``` ## Return Types **integer** ## Remarks To display a report containing several [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] 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](../../relational-databases/system-stored-procedures/sp-monitor-transact-sql.md) [System Statistical Functions](../../t-sql/functions/system-statistical-functions-transact-sql.md)