@@PACKET_ERRORS (Transact-SQL)

Applies to: SQL Server Azure SQL Managed Instance

Returns the number of network packet errors that have occurred on SQL Server connections since SQL Server was last started.

Transact-SQL syntax conventions

Syntax

@@PACKET_ERRORS  

Note

To view Transact-SQL syntax for SQL Server 2014 (12.x) and earlier versions, see Previous versions documentation.

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)
@@PACK_SENT (Transact-SQL)
sp_monitor (Transact-SQL)
System Statistical Functions (Transact-SQL)