Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > ASP .Net > ASP General > Slow ASP Pages on IIS6 / Windows 2003

Reply
Thread Tools

Slow ASP Pages on IIS6 / Windows 2003

 
 
Akerlund
Guest
Posts: n/a
 
      06-15-2007
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?
 
Reply With Quote
 
 
 
 
Akerlund
Guest
Posts: n/a
 
      06-15-2007
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.
 
Reply With Quote
 
 
 
 
GeorgeScott
Guest
Posts: n/a
 
      06-16-2007
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


 
Reply With Quote
 
Akerlund
Guest
Posts: n/a
 
      06-17-2007
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:
> > 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

>
>

 
Reply With Quote
 
Anthony Jones
Guest
Posts: n/a
 
      06-17-2007

"Akerlund" <> wrote in message
news:6BBA9009-74EF-4798-92F5-...
> 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?


>
> "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:
> > > 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
> >
> >



 
Reply With Quote
 
Akerlund
Guest
Posts: n/a
 
      06-17-2007
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" <> wrote in message
> news:6BBA9009-74EF-4798-92F5-...
> > 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?
>
>
> >
> > "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:
> > > > 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
> > >
> > >

>
>
>

 
Reply With Quote
 
Akerlund
Guest
Posts: n/a
 
      06-20-2007
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?

 
Reply With Quote
 
Akerlund
Guest
Posts: n/a
 
      06-21-2007
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/isa...ningguide.mspx




"Akerlund" wrote:

> 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?

 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
ASP on IIS6 Windows 2003 Server Joe ASP General 1 05-28-2007 08:50 PM
asp.net IIS6 windows 2003 web service wonders!(Urgent help needed) Bredal Jensen ASP .Net 3 12-25-2005 06:59 PM
Problem with Excel Automation in ASP.net on IIS6 & Windows 2003 Sam Vanderstraeten ASP .Net Security 1 12-09-2005 12:10 PM
Problem with Excel Automation in ASP.net on IIS6 & Windows 2003 Sam Vanderstraeten ASP .Net 1 12-09-2005 12:10 PM
ASP.Net server too busy on Windows 2003/IIS6 Raymond ASP .Net 3 07-02-2004 08:54 PM



Advertisments
 



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