@@PACKET_ERRORS (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 network packet errors that have occurred on SQL Server connections since SQL Server SQL Server was last started.

Topic link icon Transact-SQL Syntax Conventions

Syntax

  
@@PACKET_ERRORS  

Return Types

integer

Remarks

To display a report containing several SQL Server statistics, including packet errors, run sp_monitor.

Examples

The following example shows using @@PACKET_ERRORS.

SELECT @@PACKET_ERRORS AS 'Packet Errors';  

Here is a sample result set.

Packet Errors  
-------------  
0  

See Also

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