Hello Group,
I have had an issue on my server for a long time and what ever I have tryed
I just cant fix it.
I run mySQL and IIS, and my server will crash every few days because a file
on the server called DLLHOST.EXE has taken all the memory, and the mySQL
goes off line.
I close all of the record sets, and all of the Text files I read, as below
========
set fso = createobject("s cripting.filesy stemobject")
set act = fso.opentextfil e(server.mappat h ("/counters/year_count-"&
year(date())&". txt"))
countery = clng(act.readli ne)
countery = countery + 1
act.close
fso.close
========
============
strQuery = "SELECT * FROM category WHERE CATEGORY_ID='"& top_id&"';"
Set rscateinfo = adoConn.Execute (strQuery)
Do While Not rscateinfo.EOF
leveltop=rscate info("name").Va lue
leveltopurl=rsc ateinfo("link_u rl").Value
rscateinfo.Move Next
loop
rscateinfo.clos e
set rscateinfo = Nothing
=============
each page I open the DLLHOST.EXE will will grow anything upto 150K per
page.. in the SQL example above the table for category has 35 columns, would
it make any differnace to memory if I selected the fields rather than all of
the fields from the in SELECT * FROM
The only solution I can come up with now is to buy more memory, but I am
sure I must be doing someting wrong.
Do I have to close the varables I have opened to stop this memory leek ????
Kind Regards
Graham Mattingley
I have had an issue on my server for a long time and what ever I have tryed
I just cant fix it.
I run mySQL and IIS, and my server will crash every few days because a file
on the server called DLLHOST.EXE has taken all the memory, and the mySQL
goes off line.
I close all of the record sets, and all of the Text files I read, as below
========
set fso = createobject("s cripting.filesy stemobject")
set act = fso.opentextfil e(server.mappat h ("/counters/year_count-"&
year(date())&". txt"))
countery = clng(act.readli ne)
countery = countery + 1
act.close
fso.close
========
============
strQuery = "SELECT * FROM category WHERE CATEGORY_ID='"& top_id&"';"
Set rscateinfo = adoConn.Execute (strQuery)
Do While Not rscateinfo.EOF
leveltop=rscate info("name").Va lue
leveltopurl=rsc ateinfo("link_u rl").Value
rscateinfo.Move Next
loop
rscateinfo.clos e
set rscateinfo = Nothing
=============
each page I open the DLLHOST.EXE will will grow anything upto 150K per
page.. in the SQL example above the table for category has 35 columns, would
it make any differnace to memory if I selected the fields rather than all of
the fields from the in SELECT * FROM
The only solution I can come up with now is to buy more memory, but I am
sure I must be doing someting wrong.
Do I have to close the varables I have opened to stop this memory leek ????
Kind Regards
Graham Mattingley
Comment