Sqlserver
 sql >> Database >  >> RDS >> Sqlserver

Come rilevare le eccezioni di timeout di SQLServer

Per verificare un timeout, credo che tu controlli il valore di ex.Number. Se è -2, allora hai una situazione di timeout.

-2 è il codice di errore per il timeout, restituito da DBNETLIB, il driver MDAC per SQL Server. Questo può essere visto scaricando Reflector e cercando in System.Data.SqlClient.TdsEnums per TIMEOUT_EXPIRED.

Il tuo codice leggerebbe:

if (ex.Number == -2)
{
     //handle timeout
}

Codice per dimostrare il fallimento:

try
{
    SqlConnection sql = new SqlConnection(@"Network Library=DBMSSOCN;Data Source=YourServer,1433;Initial Catalog=YourDB;Integrated Security=SSPI;");
    sql.Open();

    SqlCommand cmd = sql.CreateCommand();
    cmd.CommandText = "DECLARE @i int WHILE EXISTS (SELECT 1 from sysobjects) BEGIN SELECT @i = 1 END";
    cmd.ExecuteNonQuery(); // This line will timeout.

    cmd.Dispose();
    sql.Close();
}
catch (SqlException ex)
{
    if (ex.Number == -2) {
        Console.WriteLine ("Timeout occurred");
    }
}