Connecting Tech Pros Worldwide Forums | Help | Site Map

ADVICE WANTED: Website Performance Issues

KWilliams
Guest
 
Posts: n/a
#1: Dec 13 '05
I'd like to get some good advice about our old ASP site. You can see our home
page at:
http://www.douglas-county.com/

....and an example application page at:
http://www.douglas-county.com/employ...topenings2.asp

Our old site uses classic ASP with JavaScript syntax. I'm in the process of
developing a new site that uses XML/XSLT/CSS/ASP.NET/VB.NET, but in the
meantime, we still have our old site up. It contains a lot of applications
that use SQL Server 2000 data, and we're having some major performance issues.

I already know that one issue is the use of tables for formatting, and I'm
already correcting that problem by using CSS Positioning with my new site.
Besides that, here are some of the issues that we're having:

Different Browser Issues?
The site loads much quicker for me in Mozilla Firefox than it does in IE 6.0
for some reason. If this difference is an obvious sign of something, I'd love
to know what that could be.

Connection Issues?
I've looked into whether this problem could be due to "leaky connections",
but this is how I have my connections set up:
Expand|Select|Wrap|Line Numbers
  1. <%@language="javascript"%>
  2. <%
  3. var MM_strConn_STRING =
  4. "Provider=SQLOLEDB;Server=SERVERNAME;Database=DBNAME;UID=UID;PWD=PWD"
  5. %>
  6. <%
  7. var Recordset1 = Server.CreateObject("ADODB.Recordset");
  8. Recordset1.ActiveConnection = MM_strConn_STRING;
  9. Recordset1.Source = "SELECT *  FROM dbo.tblTABLENAME";
  10. Recordset1.CursorType = 0;
  11. Recordset1.CursorLocation = 2;
  12. Recordset1.LockType = 3;
  13. Recordset1.Open();
  14. var Recordset1_numRows = 0;
  15. %>
  16. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
  17. "http://www.w3.org/TR/html4/loose.dtd">
  18. <html>
  19. <body>...</body>
  20. </html>
  21. <%
  22. Recordset1.Close();
  23. %>
The reason I'm looking at this as a possible cause is because my Network
Administrator states that when he restarts the SQL Server, the site loads
quicker. Then over time, it seems to get bogged down until the server is
restarted again. It loads much slower for some users than others for some
reason, and that's when they have the same browser version.

Ok, that's it. If there are any other obvious causes of this issue, please
let me know. Any constructive criticism would be greatly appreciated. Thanks.

Jevon
Guest
 
Posts: n/a
#2: Dec 13 '05

re: ADVICE WANTED: Website Performance Issues


There are a few things to consider here.

The browser issue you mention is (possibly) related to how different
browsers load pages - some wait for the entire <table> element to arrive
(i.e. until </table>) before rendering the table for display, others do it
as it comes. Some (I think) delay rendering until [some] images are loaded,
etc. I don't know if these options can be configured or not so might not be
the only issue. Caching [of images] might be having an effect too.

I don't have experience of using recordsets the way you do, without an
ADODB.Connection object, however you should open Recordsets/database
connections for the minimal amount of time possible. Also, I don't know if
you explicitly need to close the database connection with your method or
not.

Is your site the only thing using the SQL Server? If not, do other
sites/systems run noticeably faster after a restart? I wonder if perhaps
there is a mis-configuration with the SQL Server causing the slowdown; is it
fully patched? What is the memory usage like with both SQL and IIS before
and after a restart?

Jevon


"KWilliams" <KWilliams@discussions.microsoft.com> wrote in message
news:DC232790-C789-42DC-9C54-837A435874B1@microsoft.com...[color=blue]
> I'd like to get some good advice about our old ASP site. You can see our
> home
> page at:
> http://www.douglas-county.com/
>
> ...and an example application page at:
> http://www.douglas-county.com/employ...topenings2.asp
>
> Our old site uses classic ASP with JavaScript syntax. I'm in the process
> of
> developing a new site that uses XML/XSLT/CSS/ASP.NET/VB.NET, but in the
> meantime, we still have our old site up. It contains a lot of applications
> that use SQL Server 2000 data, and we're having some major performance
> issues.
>
> I already know that one issue is the use of tables for formatting, and I'm
> already correcting that problem by using CSS Positioning with my new site.
> Besides that, here are some of the issues that we're having:
>
> Different Browser Issues?
> The site loads much quicker for me in Mozilla Firefox than it does in IE
> 6.0
> for some reason. If this difference is an obvious sign of something, I'd
> love
> to know what that could be.
>
> Connection Issues?
> I've looked into whether this problem could be due to "leaky connections",
> but this is how I have my connections set up:
>
Expand|Select|Wrap|Line Numbers
  1. <%@language="javascript"%>
  2. > <%
  3. > var MM_strConn_STRING =
  4. > "Provider=SQLOLEDB;Server=SERVERNAME;Database=DBNAME;UID=UID;PWD=PWD"
  5. > %>
  6. > <%
  7. > var Recordset1 = Server.CreateObject("ADODB.Recordset");
  8. > Recordset1.ActiveConnection = MM_strConn_STRING;
  9. > Recordset1.Source = "SELECT *  FROM dbo.tblTABLENAME";
  10. > Recordset1.CursorType = 0;
  11. > Recordset1.CursorLocation = 2;
  12. > Recordset1.LockType = 3;
  13. > Recordset1.Open();
  14. > var Recordset1_numRows = 0;
  15. > %>
  16. > <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
  17. > "http://www.w3.org/TR/html4/loose.dtd">
  18. > <html>
  19. > <body>...</body>
  20. > </html>
  21. > <%
  22. > Recordset1.Close();
  23. > %>
>
> The reason I'm looking at this as a possible cause is because my Network
> Administrator states that when he restarts the SQL Server, the site loads
> quicker. Then over time, it seems to get bogged down until the server is
> restarted again. It loads much slower for some users than others for some
> reason, and that's when they have the same browser version.
>
> Ok, that's it. If there are any other obvious causes of this issue, please
> let me know. Any constructive criticism would be greatly appreciated.
> Thanks.[/color]


preet
Guest
 
Posts: n/a
#3: Dec 13 '05

re: ADVICE WANTED: Website Performance Issues


I have used MS SQL 2000 and worked as a database administraor for a
large corporate handling close to 67 million records which is used by
call center executives around 1700 in number with multiple queries per
second.

My advice would be, first never use session variables bake cookies
instead (i love to eat them)

second improve on your sql query, as far as possible you should do the
maximum processing on the SQL server and use the results for the web
page.

Your maximum average query traffic per query should not exceed 1 KB
unless you are running large reports.

MOST IMPORTANT - as far as possible keep the main sql database on
private IP ; if you require it on public IP then specify only one port
open and rest all closed.

And please please patch your system thoroughly.



A comprehensive knowledgebase on EECP treatment and procedures
worldwide.
http://www.eecpworld.com
Provide your suggestions for improvement

*** Sent via Developersdex http://www.developersdex.com ***
Mark J. McGinty
Guest
 
Posts: n/a
#4: Dec 14 '05

re: ADVICE WANTED: Website Performance Issues



"KWilliams" <KWilliams@discussions.microsoft.com> wrote in message
news:DC232790-C789-42DC-9C54-837A435874B1@microsoft.com...[color=blue]
> I'd like to get some good advice about our old ASP site. You can see our
> home
> page at:
> http://www.douglas-county.com/
>
> ...and an example application page at:
> http://www.douglas-county.com/employ...topenings2.asp
>
> Our old site uses classic ASP with JavaScript syntax. I'm in the process
> of
> developing a new site that uses XML/XSLT/CSS/ASP.NET/VB.NET, but in the
> meantime, we still have our old site up. It contains a lot of applications
> that use SQL Server 2000 data, and we're having some major performance
> issues.
>
> I already know that one issue is the use of tables for formatting, and I'm
> already correcting that problem by using CSS Positioning with my new site.
> Besides that, here are some of the issues that we're having:
>
> Different Browser Issues?
> The site loads much quicker for me in Mozilla Firefox than it does in IE
> 6.0
> for some reason. If this difference is an obvious sign of something, I'd
> love
> to know what that could be.
>
> Connection Issues?
> I've looked into whether this problem could be due to "leaky connections",
> but this is how I have my connections set up:
>
Expand|Select|Wrap|Line Numbers
  1. <%@language="javascript"%>
  2. > <%
  3. > var MM_strConn_STRING =
  4. > "Provider=SQLOLEDB;Server=SERVERNAME;Database=DBNAME;UID=UID;PWD=PWD"
  5. > %>
  6. > <%
  7. > var Recordset1 = Server.CreateObject("ADODB.Recordset");
  8. > Recordset1.ActiveConnection = MM_strConn_STRING;[/color]
  9.  
  10. By setting ActiveConnection to a string, instead of a connection object, you
  11. are causing the recordset to create and open an implicit connection object
  12. that will not be implicitly closed.  One way to fix this is to explicitly
  13. create a connection object, set ActiveConnection to that, and close it after
  14. you're done.  The other way is to acquire a reference to ActiveConnection
  15. before closing the recordset, and call close on that reference after closing
  16. the recordset, e.g.,
  17.  
  18. var cn = Recordset1.ActiveConnection;
  19. Recordset1.Close();
  20. cn.Close();
  21.  
  22. The former is more conventional, and more effecient if you're using more
  23. than one recordset.  The latter must only be used when you're absolutely
  24. certain the connection is not being used elsewhere in your code.
  25.  
  26.  
  27. -Mark
  28.  
  29. [color=blue]
  30. > Recordset1.Source = "SELECT *  FROM dbo.tblTABLENAME";
  31. > Recordset1.CursorType = 0;
  32. > Recordset1.CursorLocation = 2;
  33. > Recordset1.LockType = 3;
  34. > Recordset1.Open();
  35. > var Recordset1_numRows = 0;
  36. > %>
  37. > <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
  38. > "http://www.w3.org/TR/html4/loose.dtd">
  39. > <html>
  40. > <body>...</body>
  41. > </html>
  42. > <%
  43. > Recordset1.Close();
  44. > %>
>
> The reason I'm looking at this as a possible cause is because my Network
> Administrator states that when he restarts the SQL Server, the site loads
> quicker. Then over time, it seems to get bogged down until the server is
> restarted again. It loads much slower for some users than others for some
> reason, and that's when they have the same browser version.
>
> Ok, that's it. If there are any other obvious causes of this issue, please
> let me know. Any constructive criticism would be greatly appreciated.
> Thanks.[/color]


Closed Thread


Similar ASP / Active Server Pages bytes