dbTalk Databases Forums  

Memory leak in SQL Server

comp.databases.ms-sqlserver comp.databases.ms-sqlserver


Discuss Memory leak in SQL Server in the comp.databases.ms-sqlserver forum.



Reply
 
Thread Tools Display Modes
  #11  
Old   
Bardolator
 
Posts: n/a

Default Re: Memory leak in SQL Server - 05-13-2005 , 11:23 AM






Its both curiosity and a bug. A machine with 512 MB (this is all we can
ask our customer) that has MSDE and it's database is just 26 MB takes
around 200 MB of RAM. This seems to be a problem. SQL 7.0 doesn't use
to do this.


Reply With Quote
  #12  
Old   
Malcolm
 
Posts: n/a

Default Re: Memory leak in SQL Server - 05-14-2005 , 06:44 AM






You haven't answered my question you have simply restated the memory
usage observation. Is this actually a performance problem?

Is your application noticably slower with the 2K version of MSDE?

Are other applications running on the same machine crawling to a halt?

SQL Server will rightly take as much memory as it can but should be a
good citizen when it comes to playing nicely with other apps demands.

Malc
www.dbghost.com - Build, Compare and Synchronize = Database Change
Management for SQL Server


Reply With Quote
  #13  
Old   
Erland Sommarskog
 
Posts: n/a

Default Re: Memory leak in SQL Server - 05-14-2005 , 04:59 PM



Bardolator (Bardolator (AT) gmail (DOT) com) writes:
Quote:
Its both curiosity and a bug. A machine with 512 MB (this is all we can
ask our customer) that has MSDE and it's database is just 26 MB takes
around 200 MB of RAM. This seems to be a problem. SQL 7.0 doesn't use
to do this.
Just because you don't like, does not mean that it is a bug.

Use sp_configure to constrain how much memory SQL Server may use.

exec sp_configure 'max server memory', 100
go
reconfigure

100 is 100 megabyte.

You have have to first say:

exec sp_configure 'show advanced', 1
go
reconfigure


--
Erland Sommarskog, SQL Server MVP, esquel (AT) sommarskog (DOT) se

Books Online for SQL Server SP3 at
http://www.microsoft.com/sql/techinf...2000/books.asp


Reply With Quote
Reply




Thread Tools
Display Modes

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

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.3
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.