Ver Mensaje Individual
  #1 (permalink)  
Antiguo 19/01/2011, 14:03
th3r0rn
 
Fecha de Ingreso: noviembre-2007
Mensajes: 504
Antigüedad: 17 años
Puntos: 2
Como ampliar el tiempo de espera de datos

Hola, hago un select a una DB pero son muchos datos, de hecho el SQL server cuando ejecuto la query en su administrador de consultas tardas como 2 minutos, entonces en ASPX cuando hago esto se colapsa y me dice el siguiente mensaje:

Timeout expired. The timeout period elapsed prior to completion of the operation or the server is not responding.

Tienen alguna forma de poder ampliar el tiempo de espera?


Código C++:
Ver original
  1. using System;
  2. using System.Data;
  3. using System.Data.SqlClient;
  4. using System.Configuration;
  5. using System.Web;
  6. using System.Web.Security;
  7. using System.Web.UI;
  8. using System.Web.UI.WebControls;
  9. using System.Web.UI.WebControls.WebParts;
  10. using System.Web.UI.HtmlControls;
  11.  
  12. public partial class _Default : System.Web.UI.Page
  13. {
  14.     string hora;
  15.     SqlConnection cn = new SqlConnection("SERVER=VALP-MAPLE01;UID=sa;PWD=messrv;DataBase=wasp");
  16.    
  17.  
  18.     protected void Button1_Click(object sender, EventArgs e)
  19.     {
  20.        
  21.         SqlDataAdapter  sql = new SqlDataAdapter ("exec monitor3 '20110117', 'L07s', '11:00 - 11:30'", cn);
  22.        
  23.         DataTable dt = new DataTable();
  24.        
  25.         sql.Fill(dt);
  26.        
  27.         GridView1.DataSource = dt;
  28.     }
  29. }