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

  1. #1

    Default SQL Server Timeout

    I am connecting to SQL server 2000 via ASP using an ADO recordset and OLEDB
    connection. Occasionally I execute queries though the execute method of the
    connection. Just recently this has started giving a timeout expired error
    but will allow me to delete via the recordset delete method. It's not a huge
    problem to do this but many other sites use direct SQL execution and I am
    worried that they will stop working. Also sometimes it will work and
    sometimes it won't. Is this something obvious that people have come across
    before. If anyone could give me some pointers, that would give me something
    to start on before I start asking my manager to start looking at IIS or SQL
    server. I'm OK on the design side of SQL server but don't have much
    experience on doing diagnostic/profiling type stuff.


    Chris Kennedy Guest

  2. Similar Questions and Discussions

    1. WebService ignoring timeout properties? (Server was unable to process request. --> Timeout exired)
      Hi! I have a webservice serving the latest orders from a webshop. The customer uses a forms app client to fetch these orders and push them into...
    2. ASP + SQL Server - Timeout Expired
      Hello In my ASP page I am trying to ascertain whether a randomly generated ID starts with certain characters that are not allowed or has been used...
    3. Timeout expired. The timeout period elapsed prior to completion of the operation or the server is not responding.
      Gary Why not just change the connection timeout property? Your doing an update statement, which could take various amounts of time depending on...
    4. Server Timeout
      Greetings, I apologize if this is not the right forum for this question. If so, kindly point me in the right direction and I'll not bother you...
    5. Connection timeout - detect if server is available
      I have a connection on a web page to a sql server that isn't always available. I set the CONNECTIONTIMEOUT property to various times between 3 and...
  3. #2

    Default Re: SQL Server Timeout

    Some tools and KB articles here that might help.
    [url]http://www.aspfaq.com/2513[/url]

    --
    Aaron Bertrand
    SQL Server MVP
    [url]http://www.aspfaq.com/[/url]




    "Chris Kennedy" <nospam@microsoft.com> wrote in message
    news:e6OpE#7wDHA.1740@TK2MSFTNGP12.phx.gbl...
    > I am connecting to SQL server 2000 via ASP using an ADO recordset and
    OLEDB
    > connection. Occasionally I execute queries though the execute method of
    the
    > connection. Just recently this has started giving a timeout expired error
    > but will allow me to delete via the recordset delete method. It's not a
    huge
    > problem to do this but many other sites use direct SQL execution and I am
    > worried that they will stop working. Also sometimes it will work and
    > sometimes it won't. Is this something obvious that people have come across
    > before. If anyone could give me some pointers, that would give me
    something
    > to start on before I start asking my manager to start looking at IIS or
    SQL
    > server. I'm OK on the design side of SQL server but don't have much
    > experience on doing diagnostic/profiling type stuff.
    >
    >

    Aaron Bertrand - MVP Guest

  4. #3

    Default Re: SQL Server Timeout

    Hello!
    I'm using next command to avoid problem with timeout
    Server.ScriptTimeout = 300
    it sets timeout interval to 5 min.


    "Chris Kennedy" <nospam@microsoft.com> сообщил/сообщила в новостях
    следующее: news:e6OpE#7wDHA.1740@TK2MSFTNGP12.phx.gbl...
    > I am connecting to SQL server 2000 via ASP using an ADO recordset and
    OLEDB
    > connection. Occasionally I execute queries though the execute method of
    the
    > connection. Just recently this has started giving a timeout expired error
    > but will allow me to delete via the recordset delete method. It's not a
    huge
    > problem to do this but many other sites use direct SQL execution and I am
    > worried that they will stop working. Also sometimes it will work and
    > sometimes it won't. Is this something obvious that people have come across
    > before. If anyone could give me some pointers, that would give me
    something
    > to start on before I start asking my manager to start looking at IIS or
    SQL
    > server. I'm OK on the design side of SQL server but don't have much
    > experience on doing diagnostic/profiling type stuff.
    >
    >

    Наиль Сибгатуллин 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