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

Statistiche e informazioni sull'esecuzione di C# SqlDataReader

Prova a utilizzare le statistiche integrate per il tempo di esecuzione e le righe selezionate/interessate:

using (SqlConnection cn = new SqlConnection(ConfigurationManager.ConnectionStrings["NorthwindConnectionString"].ConnectionString))
{
  cn.Open();
  cn.StatisticsEnabled = true;
  using (SqlCommand cmd = new SqlCommand("SP", cn))
  {
    cmd.CommandType = CommandType.StoredProcedure;
    try
    {
      using (SqlDataReader dr = cmd.ExecuteReader())
      {
        while (dr.Read())
        {

        }
      }
    }
    catch (SqlException ex)
    {
      // Inspect the "ex" exception thrown here
    }
  }

  IDictionary stats = cn.RetrieveStatistics();
  long selectRows = (long)stats["SelectRows"];
  long executionTime = (long)stats["ExecutionTime"];
}

Ulteriori informazioni su MSDN .

L'unico modo in cui posso vederti scoprire come qualcosa non è riuscito è ispezionare il SqlException lanciato e guardando i dettagli.