Recent Timeout Error

Ask a Question related to ASP Database, Design and Development.

  1. #1

    Default Recent Timeout Error

    I recently moved hosting companies, we went from a Windows 2000 environment to a Windows 2003 environmennt.

    Since the move I have started to get timeout errors about once a day. I maybe got an error like this once every 4 months before the move.

    Microsoft OLE DB Provider for SQL Server (0x80040E31)
    Timeout expired

    It will occur for any page with a query and it can last anywhere from 30 min to 3 hours before it corrects itself.

    Has anyone every seen this behavior when switching 2000 -> 2003. Any suggestions for tracking why its happening. I look in the SQL logs and nothing standouts.
    Brian Peddle Guest

  2. Similar Questions and Discussions

    1. timeout expired error
      I am using visual web developer and the odbc driver to connect to a mysql database. It seems like every four or five connections to the database...
    2. Max Timeout Error
      My database has 15,000 records. When doing a select statement (with php.ini timeout set to 30 seconds) I get a timeout error from php. I've set...
    3. SQL Timeout Error
      Here is the error I get when I run a form of a sql server 2000 box after about 40 seconds. System.Data.SqlClient.SqlException: Timeout expired....
    4. ** TIMEOUT ERROR WITH PROXY -- HELP !**
      I'm becoming *crazy* with a problem: * I have a simple WebService, called "HelloWorld" * I access the web server using a proxy (SQUID on linux). *...
    5. WebService TimeOut Error
      I have 2 forms, where Form2 is displayed modeless-ly ( i.e. Form2.Show() ) from Form1. Form1 contains a Windows.Forms.Timer which triggers at 30...
  3. #2

    Default RE: Recent Timeout Error

    Hi Biran,

    Thank you for posting here. Regarding on the issue, I am
    finding proper resource to assist you and we will update as soon as posible.

    Regards,

    Steven Cheng
    Microsoft Online Support

    Get Secure! [url]www.microsoft.com/security(This[/url] posting is provided "AS IS",
    with no warranties, and confers no rights.)

    Steven Cheng[MSFT] Guest

  4. #3

    Default Re: Recent Timeout Error

    Looks like a Command timeout to me, try increasing your command timeout
    property on the connection object and see if this solves the problem.

    This could happen because the SQL server is not on the same subnet as your
    IIS server. While you can not do much about this (since your hosting
    provider controls the infrastructure), you can try to write queries that are
    faster (using stored procedures) or optimized to run faster (tweaking the
    query clauses, etc.)

    --
    Manohar Kamath
    Editor, .netWire
    [url]www.dotnetwire.com[/url]


    "Brian Peddle" <brian@nospam.com> wrote in message
    news:eg2YGGMcEHA.996@TK2MSFTNGP12.phx.gbl...
    I recently moved hosting companies, we went from a Windows 2000 environment
    to a Windows 2003 environmennt.

    Since the move I have started to get timeout errors about once a day. I
    maybe got an error like this once every 4 months before the move.

    Microsoft OLE DB Provider for SQL Server (0x80040E31)
    Timeout expired

    It will occur for any page with a query and it can last anywhere from 30 min
    to 3 hours before it corrects itself.

    Has anyone every seen this behavior when switching 2000 -> 2003. Any
    suggestions for tracking why its happening. I look in the SQL logs and
    nothing standouts.


    Manohar Kamath [MVP] Guest

  5. #4

    Default RE: Recent Timeout Error

    Hello Brian,

    I was reviewing the issue thread. Did you resolve the problem by enlarging
    connection timeout value? If the problem is not resolved yet, please feel
    free to post here and we will follow up.

    A quick code sample should like:
    set conn = server.createobject("adodb.connection")
    conn.connectionTimeout = x
    conn.commandTimeout = x
    (x should be in seconds)

    Thanks.

    Best regards,
    Yanhong Huang
    Microsoft Community Support

    Get Secure! ¨C [url]www.microsoft.com/security[/url]
    Register to Access MSDN Managed Newsgroups!
    -http://support.microsoft.com/default.aspx?scid=/servicedesks/msdn/nospam.as
    p&SD=msdn

    This posting is provided "AS IS" with no warranties, and confers no rights.

    Yan-Hong Huang[MSFT] Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139