IIS ASP - Slow ASP Pages on IIS6 / Windows 2003

This is Interesting: Free IT Magazines  
Home > Archive > IIS ASP > June 2007 > Slow ASP Pages on IIS6 / Windows 2003





You are viewing an archived Text-only version of the thread. To view this thread in it's original format and/or if you want to reply to this thread please [click here]

Author Slow ASP Pages on IIS6 / Windows 2003
Akerlund

2007-06-15, 7:26 pm

User clicks a link that displays a customer card and financial stats (has a
lot of database calls). Every 5 times the user clicks the same page/link it
takes about 30 seconds (normal response time is <1 second) to display. Then
you can click 4 times with a normal response time and the 5th the repsone
time it is 30 seconds again. The page has exactly the same parameters every
time but there seem to occur some "locking" that stops the action every 5
calls but I can not understand what this is. For other pages this could be
every three pages or every ten pages depends omn the amount of database calls.

Info:
The exactly same page and database works fine on IIS5 with consistently <1s
response times no matter how many times the page is displayed in row.

ASP application moved from IIS5/2000 to IIS6/2003. Database SQL2000 on
different server (not changed at move).

Database calls use adodb and are closed (.close() ) when used. Database
connections is set to Nothing after use.

Tracing the the database calls on the sql server shows that the calls stop
for about 30s (last command audit logout) and then commences normally.

Any suggestions on how to remedy this situation so that the 30s "hickups"
would disappear?
Akerlund

2007-06-15, 7:26 pm

Some additional info:
If I request the page 4 times and then wait more than 30 seconds before I
request it again I can request it 4 times with 1s response time, then wait 30
seconds and request 4 times again etc all with 1s response times. Something
seems to be recycling or released but what?

Running II6 in IIS 5 isolation mode have the same problems. Using IP or
hosts file for db connection have the same problems.
GeorgeScott

2007-06-16, 1:34 am

Try combining some of those querys into one by joining the tables and

a) If you only want one record use TOP 1 (select TOP 1 id,first,last
from table where ID = 5)

b) Make sure your tables are indexed, if you use say userID =1 and
CompanyID = 0 in your sql query then be sure that there is an index
for Record & Company together so it won't have to scan the rows so
much.

c) Use 0,1:
sSQL = Select TOP 1 ID,First,Last from Table where CompanyID =0 and
userID = 1
rs.open sSQL, Conn, 0, 1

Thanks

George Scott
http://www.officezilla.com/whatisit.asp

On Jun 15, 12:22 pm, Akerlund <Akerl...@discussions.microsoft.com>
wrote:
> User clicks a link that displays a customer card and financial stats (has a
> lot of database calls). Every 5 times the user clicks the same page/link it
> takes about 30 seconds (normal response time is <1 second) to display. Then
> you can click 4 times with a normal response time and the 5th the repsone
> time it is 30 seconds again. The page has exactly the same parameters every
> time but there seem to occur some "locking" that stops the action every 5
> calls but I can not understand what this is. For other pages this could be


Akerlund

2007-06-17, 7:17 am

Hi George,
thank you for your answer, but I fail to understand how that would affect
that the page works fine on a machine with IIS5 (we are connecting to the
same database from both the machine with IIS5 and the machine with IIS6).

We are using indexes on join fields.

"GeorgeScott" wrote:

> Try combining some of those querys into one by joining the tables and
>
> a) If you only want one record use TOP 1 (select TOP 1 id,first,last
> from table where ID = 5)
>
> b) Make sure your tables are indexed, if you use say userID =1 and
> CompanyID = 0 in your sql query then be sure that there is an index
> for Record & Company together so it won't have to scan the rows so
> much.
>
> c) Use 0,1:
> sSQL = Select TOP 1 ID,First,Last from Table where CompanyID =0 and
> userID = 1
> rs.open sSQL, Conn, 0, 1
>
> Thanks
>
> George Scott
> http://www.officezilla.com/whatisit.asp
>
> On Jun 15, 12:22 pm, Akerlund <Akerl...@discussions.microsoft.com>
> wrote:
>
>

Anthony Jones

2007-06-17, 1:18 pm


"Akerlund" <Akerlund@discussions.microsoft.com> wrote in message
news:6BBA9009-74EF-4798-92F5-0AC3A82221C9@microsoft.com...
> Hi George,
> thank you for your answer, but I fail to understand how that would affect
> that the page works fine on a machine with IIS5 (we are connecting to the
> same database from both the machine with IIS5 and the machine with IIS6).
>
> We are using indexes on join fields.



Have checked the event logs on both the IIS6 and SQL2000 server machines?

[vbcol=seagreen]
>
> "GeorgeScott" wrote:
>
(has a[vbcol=seagreen]
page/link it[vbcol=seagreen]
Then[vbcol=seagreen]
repsone[vbcol=seagreen]
every[vbcol=seagreen]
every 5[vbcol=seagreen]
could be[vbcol=seagreen]


Akerlund

2007-06-17, 7:20 pm

Event logs checked on both machines (iis/db) and I can see no entries
connected to the problems, there are no events at all during the "test" runs
on either server (rebooted both machines first).

"Anthony Jones" wrote:

>
> "Akerlund" <Akerlund@discussions.microsoft.com> wrote in message
> news:6BBA9009-74EF-4798-92F5-0AC3A82221C9@microsoft.com...
>
>
> Have checked the event logs on both the IIS6 and SQL2000 server machines?
>
>
> (has a
> page/link it
> Then
> repsone
> every
> every 5
> could be
>
>
>

Akerlund

2007-06-20, 7:21 am

Did a new install of a web server (2000/IIS5 ) and the error could be
repeated so now I am thinking that this is a firewall problem (firewall
changed from cisco Pix to Microsoft ISA).

"Akerlund" wrote:

> User clicks a link that displays a customer card and financial stats (has a
> lot of database calls). Every 5 times the user clicks the same page/link it
> takes about 30 seconds (normal response time is <1 second) to display. Then
> you can click 4 times with a normal response time and the 5th the repsone
> time it is 30 seconds again. The page has exactly the same parameters every
> time but there seem to occur some "locking" that stops the action every 5
> calls but I can not understand what this is. For other pages this could be
> every three pages or every ten pages depends omn the amount of database calls.
>
> Info:
> The exactly same page and database works fine on IIS5 with consistently <1s
> response times no matter how many times the page is displayed in row.
>
> ASP application moved from IIS5/2000 to IIS6/2003. Database SQL2000 on
> different server (not changed at move).
>
> Database calls use adodb and are closed (.close() ) when used. Database
> connections is set to Nothing after use.
>
> Tracing the the database calls on the sql server shows that the calls stop
> for about 30s (last command audit logout) and then commences normally.
>
> Any suggestions on how to remedy this situation so that the 30s "hickups"
> would disappear?

Akerlund

2007-06-21, 7:22 am

Problem solved.

"ISA Server limits the number of connections at any given time. You can
configure the limit, specifying a maximum number of concurrent connections."

We raised the limit from 1000 to 2000 and now the application runs smoothly.

More info can be found here:

http://www.microsoft.com/technet/is...eningguide.mspx




"Akerlund" wrote:
[vbcol=seagreen]
> Did a new install of a web server (2000/IIS5 ) and the error could be
> repeated so now I am thinking that this is a firewall problem (firewall
> changed from cisco Pix to Microsoft ISA).
>
> "Akerlund" wrote:
>
Sponsored Links






Free braindumps | Software forum | Database administration forum

Copyright 2003 - 2008 webservertalk.com