473,382 Members | 1,635 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,382 software developers and data experts.

Out Of Memory - What Memory?


Hello All,

I am getting an ASP error.. that tells the server it is OUT OF MEMORY.. then
the server displays a message about the DLLHOST.exe and it waits for an "OK"
from me... after hitting OK... it goes back to working fine.... BUT, while
the notification is up on the screen... the website is NOT AVAILABLE.... that
is the message that visitors get when they try to get to the website....

so, is there a way I can tell the system to SKIP the notification ... and
just restart the service..... ?

ALSO... What memory is the issue here... I am assuming this memory error is
coming from an INFINITE LOOP or something... from one of my ASP pages... so,
I would imagine the best move would be to get RID of the "On Error Resume
Next" code at the top of my pages.. to try and isolate the problem?

thanks...

any info that you can provide would be greatly appreciated...
--

Systems Programmer

Jul 22 '05 #1
4 2145
MSUTech wrote:
Hello All,

I am getting an ASP error.. that tells the server it is OUT OF
MEMORY.. then the server displays a message about the DLLHOST.exe and
it waits for an "OK" from me... after hitting OK... it goes back to
working fine.... BUT, while the notification is up on the screen...
the website is NOT AVAILABLE.... that is the message that visitors
get when they try to get to the website....

so, is there a way I can tell the system to SKIP the notification ...
and just restart the service..... ?
Nope. Not that I'm aware of.
ALSO... What memory is the issue here... I am assuming this memory
error is coming from an INFINITE LOOP or something... from one of my
ASP pages... so, I would imagine the best move would be to get RID of
the "On Error Resume Next" code at the top of my pages.. to try and
isolate the problem?

That would be a good thing to do. You should also check the IIS logs to see
what request was being worked on when the crash occurred. It will at least
help you concentrate on the correct page.

Go to www.iisfaq.com. They have some debugging tools that may prove usefull
(iisstate).

HTH,
Bob Barrows
PS. This newsgroup is deals mostly with programming issues. You may get more
useful answers about server problems from the .inetserver.iis newsgroup.

--
Microsoft MVP -- ASP/ASP.NET
Please reply to the newsgroup. The email account listed in my From
header is my spam trap, so I don't check it very often. You will get a
quicker response by posting to the newsgroup.
Jul 22 '05 #2
MSUTech wrote:
Hello All,

I am getting an ASP error.. that tells the server it is OUT OF MEMORY.. then
the server displays a message about the DLLHOST.exe and it waits for an "OK"
from me... after hitting OK... it goes back to working fine.... BUT, while
the notification is up on the screen... the website is NOT AVAILABLE.... that
is the message that visitors get when they try to get to the website....

so, is there a way I can tell the system to SKIP the notification ... and
just restart the service..... ?

ALSO... What memory is the issue here... I am assuming this memory error is
coming from an INFINITE LOOP or something... from one of my ASP pages... so,
I would imagine the best move would be to get RID of the "On Error Resume
Next" code at the top of my pages.. to try and isolate the problem?

thanks...

any info that you can provide would be greatly appreciated...


What server OS are you running?
It's an IIS setting, not an ASP one by the way... you might want to hit
an IIS group, they could probably give you more pointers...

--
Curt Christianson
site: http://www.darkfalz.com
blog: http://blog.darkfalz.com
Jul 22 '05 #3
I am running Win 2000 Server...

I will go ahead and post this problem on that other newsgroup as well..

thanks...
--

Systems Programmer

"Curt_C [MVP]" wrote:
MSUTech wrote:
Hello All,

I am getting an ASP error.. that tells the server it is OUT OF MEMORY.. then
the server displays a message about the DLLHOST.exe and it waits for an "OK"
from me... after hitting OK... it goes back to working fine.... BUT, while
the notification is up on the screen... the website is NOT AVAILABLE.... that
is the message that visitors get when they try to get to the website....

so, is there a way I can tell the system to SKIP the notification ... and
just restart the service..... ?

ALSO... What memory is the issue here... I am assuming this memory error is
coming from an INFINITE LOOP or something... from one of my ASP pages... so,
I would imagine the best move would be to get RID of the "On Error Resume
Next" code at the top of my pages.. to try and isolate the problem?

thanks...

any info that you can provide would be greatly appreciated...


What server OS are you running?
It's an IIS setting, not an ASP one by the way... you might want to hit
an IIS group, they could probably give you more pointers...

--
Curt Christianson
site: http://www.darkfalz.com
blog: http://blog.darkfalz.com

Jul 22 '05 #4
Its definately due to infinite loop/ large recordset etc. Could you post your
code ?Remember you ASP app should always be statless
1.Open connection
2.Get data
3.Close connection

Post code, I will help you out

"MSUTech" wrote:
I am running Win 2000 Server...

I will go ahead and post this problem on that other newsgroup as well..

thanks...
--

Systems Programmer

"Curt_C [MVP]" wrote:
MSUTech wrote:
Hello All,

I am getting an ASP error.. that tells the server it is OUT OF MEMORY.. then
the server displays a message about the DLLHOST.exe and it waits for an "OK"
from me... after hitting OK... it goes back to working fine.... BUT, while
the notification is up on the screen... the website is NOT AVAILABLE.... that
is the message that visitors get when they try to get to the website....

so, is there a way I can tell the system to SKIP the notification ... and
just restart the service..... ?

ALSO... What memory is the issue here... I am assuming this memory error is
coming from an INFINITE LOOP or something... from one of my ASP pages... so,
I would imagine the best move would be to get RID of the "On Error Resume
Next" code at the top of my pages.. to try and isolate the problem?

thanks...

any info that you can provide would be greatly appreciated...


What server OS are you running?
It's an IIS setting, not an ASP one by the way... you might want to hit
an IIS group, they could probably give you more pointers...

--
Curt Christianson
site: http://www.darkfalz.com
blog: http://blog.darkfalz.com

Jul 22 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
by: Andreas Suurkuusk | last post by:
Hi, I just noticed your post in the "C# memory problem: no end for our problem?" thread. In the post you implied that I do not how the garbage collector works and that I mislead people. Since...
4
by: Frank Esser | last post by:
I am using SQL 8 Personal edition with sp2 applied. I set the max server memory to 32MB and leave the min server memory at 0. When my application starts hitting the database hard the memory usage...
4
by: Franklin Lee | last post by:
Hi All, I use new to allocate some memory,even I doesn't use delete to release them. When my Application exit, OS will release them. Am I right? If I'm right, how about Thread especally on...
9
by: Mike P | last post by:
I know everything about reference counting and making sure you don't have large objects lying around. I have also profiled my app with multiple tools. I know about the fact GC collects memory but...
22
by: xixi | last post by:
hi, we are using db2 udb v8.1 for windows, i have changed the buffer pool size to accommadate better performance, say size 200000, if i have multiple connection to the same database from...
14
by: Alessandro Monopoli | last post by:
Hi all, I'm searching a PORTABLE way to get the available and total physical memory. Something like "getTotalMemory" and it returns the memory installed on my PC in bytes, and...
1
by: Nick Craig-Wood | last post by:
I've been dumping a database in a python code format (for use with Python on S60 mobile phone actually) and I've noticed that it uses absolutely tons of memory as compared to how much the data...
5
by: kumarmdb2 | last post by:
Hi guys, For last few days we are getting out of private memory error. We have a development environment. We tried to figure out the problem but we believe that it might be related to the OS...
1
by: Jean-Paul Calderone | last post by:
On Tue, 22 Apr 2008 14:54:37 -0700 (PDT), yzghan@gmail.com wrote: The test doesn't demonstrate any leaks. It does demonstrate that memory usage can remain at or near peak memory usage even after...
5
by: cham | last post by:
Hi, I am working on c++ in a linux system ( Fedora core 4 ), kernel version - 2.6.11-1.1369_FC4 gcc version - 4.0.0 20050519 ( Red Hat 4.0.0-8 ) In my code i am creating a vector to store...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.