Skip to content

Latest commit

 

History

History
64 lines (50 loc) · 1.97 KB

pack-sent-transact-sql.md

File metadata and controls

64 lines (50 loc) · 1.97 KB
title description author ms.author ms.date ms.service ms.subservice ms.topic f1_keywords helpviewer_keywords dev_langs
@@PACK_SENT (Transact-SQL)
@@PACK_SENT (Transact-SQL)
VanMSFT
vanto
09/18/2017
sql
t-sql
reference
@@PACK_SENT
@@PACK_SENT_TSQL
number of output packets written
@@PACK_SENT function
packets [SQL Server], output
networking [SQL Server], output packets
connections [SQL Server], packets
output packets written to network [SQL Server]
TSQL

@@PACK_SENT (Transact-SQL)

[!INCLUDE SQL Server Azure SQL Managed Instance]

Returns the number of output packets written to the network by [!INCLUDEssNoVersion] since it was last started.

:::image type="icon" source="../../includes/media/topic-link-icon.svg" border="false"::: Transact-SQL syntax conventions

Syntax

@@PACK_SENT  

[!INCLUDEsql-server-tsql-previous-offline-documentation]

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_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)