For Programmers: Free Programming Magazines  


Home > Archive > 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, 6:56 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, 6:56 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-15, 9:56 pm

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:55 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, 6:56 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?

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


Akerlund

2007-06-17, 6:56 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:56 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:56 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:
[color=darkred]
> 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:
>
Admojotedder

2007-06-22, 6:10 am

Angelina Jolie Stripping Down!
http://www.YourTubeAmp.com/WatchTube?vid=726071

Cameron Diaz Cheerleader Movies!
http://www.YourTubeAmp.com/watch?vid=726071

Jessica Simpson strips of pantyhose!
http://www.YourTubeAmp.com/Player.mpeg?watch=726071

Paula Abdul Shows Juicy Knockers!
http://www.YourTubeAmp.com/WatchMovie?vid=726071

Cameron Diaz takes anal!
http://www.YourTubeAmp.com/WatchMovie?clip=726071

home made porn movie flubber movie resume mindy vega video clip usher live amateur porn video clip
free asian lesbian sex video amateur video post free porn movie sample porno granny movie ebony picture porn video
layout myspace usher burning dvd movie anal cumsumption full movie blog clip youtube porn star gauge video
[url=http://new-dam-hussein-execution.org/new-dam-video.html]new dam video[/url] music video watch black clip porn video xxx video on demand free amateur home video porn

madonna sex
twisty video clip
free hardcore movie
clear clip
hardcore movie thumbnal
gay movie free
free torrent movie download
black male porn she video
mature XXXX movie
dvd movie database
Sponsored Links







Also available: Server administration forum archive | Web Design forum archive | Software forum archive | Hardware reviews archive

Copyright 2008 codecomments.com