Wrox Programmer Forums
|
SQL Server 2000 General discussion of Microsoft SQL Server -- for topics that don't fit in one of the more specific SQL Server forums. version 2000 only. There's a new forum for SQL Server 2005.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the SQL Server 2000 section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old November 11th, 2003, 06:02 AM
Registered User
 
Join Date: Nov 2003
Posts: 7
Thanks: 0
Thanked 0 Times in 0 Posts
Default Regarding Memory Usage

How can I check how much My SQL server is utilizing Physical Memory and How much we have allocated physical memory to my sql server


 
Old November 11th, 2003, 06:14 AM
Registered User
 
Join Date: Nov 2003
Posts: 7
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to mpradeep Send a message via Yahoo to mpradeep
Default

Hi,

You can use the following query to reconfigure the physical memory

USE master
EXEC sp_configure 'max server memory (MB)', '3'
RECONFIGURE WITH OVERRIDE


Or In the Enterprise Manager Section right click on the Instance and select properties and in the Memory Tab you can set the Required Memory Settings

Regards
Pradeep

Pradeep
 
Old November 11th, 2003, 06:16 AM
Registered User
 
Join Date: Nov 2003
Posts: 7
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to mpradeep Send a message via Yahoo to mpradeep
Default

Sorry,

I missed one thing Use EXEC sp_configure 'max server memory (MB)'
to see how much physical Memory is currently Used.

Regards
Pradeep

Pradeep
 
Old November 11th, 2003, 07:04 AM
Registered User
 
Join Date: Nov 2003
Posts: 7
Thanks: 0
Thanked 0 Times in 0 Posts
Default

Hi,

No,I am looking for the procedure or any function in which it return me , how much physical memory SQL is utilizing

 
Old November 11th, 2003, 07:26 AM
Registered User
 
Join Date: Nov 2003
Posts: 7
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to mpradeep Send a message via Yahoo to mpradeep
Default

Hi,

a small guess if its not useful ignore it,in the server where sql server is installed go to task manages and in the processes tab you can see the memory used by sqlserver.exe

regards
Pradeep

Pradeep





Similar Threads
Thread Thread Starter Forum Replies Last Post
Memory usage: new and dispose Koeno Pro Visual Basic 2005 2 August 9th, 2008 03:17 AM
about the usage of ant wangpan J2EE 5 June 12th, 2007 06:57 AM
New keyword Usage John Pennington Beginning VB 6 4 August 8th, 2006 10:39 PM
CONTAINS keyword usage caterpillar SQL Server 2000 2 July 12th, 2006 01:19 PM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.