October 26, 2011 at 8:01 am
I ran this query:
SELECT [object_name],
[counter_name],
[cntr_value]
FROM sys.dm_os_performance_counters
WHERE [object_name] LIKE '%Manager%'
AND [counter_name] = 'Page life expectancy'
The result I got is 55881.
Is it meant I need more memory?
I am running SQL Server 2008 R2 standard version and the database size is 883527.00 MB.
Thanks
October 26, 2011 at 8:04 am
55881 seems pretty healthy to me. Are you seeing other symptoms of memory pressure?
Andrew
October 26, 2011 at 8:07 am
October 26, 2011 at 8:12 am
I thought it supposed to be 300.
What number is good and what number is bad?
I don't understand the number meant. Can you explain?
Thanks
October 26, 2011 at 8:14 am
Loner (10/26/2011)
I thought it supposed to be 300.
10 years ago if page life expectancy dropped below 300 it was considered bad. Many people still blindly quote 300 as the figure it shouldn't go under without understanding what that figure means
What number is good and what number is bad?
I don't understand the number meant. Can you explain?
Did you read the blog post?
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
October 26, 2011 at 10:32 am
Loner (10/26/2011)
I thought it supposed to be 300.What number is good and what number is bad?
I don't understand the number meant. Can you explain?
Thanks
If you haven't read the blog post, I'll give a quick explanation and Gail can correct me when I'm wrong :-P.
Page Life Expectancy is how long a data page stays in memory. There are no absolutes as to what is a good number as the blog post explains. Essentially the higher the number the better because it usually means you have plenty of memory and you aren't going out to disk as often. You need to establish a baseline for your environment and when it gets below what has been normal you need to investigate why it is falling.
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
October 26, 2011 at 10:51 am
Perhaps a better formula for PLE from Jonathan Kehayias.
Viewing 7 posts - 1 through 6 (of 6 total)
You must be logged in to reply to this topic. Login to reply