BI SQL # 182 : SQL Server DBA Scripts : Page Life Expectancy
Hi Folks,
In this article we are going to cover Page Life Expectancy.
In this post we are going to discuss following points:
- Problem Statement of SQL Script:
- Description of SQL Script:
- SQL Script Output Column
- SQL Script Code
- SQL Script Output Screenshot
- User Level to execute
Problem Statement of SQL Script:
Get page life expectancy.
Description of SQL Script:
This Transact-SQL script lists page life expectancy.
SQL Script Output Column
SQL Script Code
SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED SELECT ple.[Node] ,LTRIM(STR([PageLife_S] / 3600)) + ':' + REPLACE(STR( [PageLife_S] % 3600 / 60, 2), SPACE(1), '0') + ':' + REPLACE(STR([PageLife_S] % 60, 2), SPACE(1), '0') [PageLife] ,ple.[PageLife_S] ,dp.[DatabasePages] [BufferPool_Pages] ,CONVERT(DECIMAL(15, 3), dp.[DatabasePages] * 0.0078125) [BufferPool_MiB] ,CONVERT(DECIMAL(15, 3), dp.[DatabasePages] * 0.0078125 / [PageLife_S]) [BufferPool_MiB_S] FROM ( SELECT [instance_name] [node] ,[cntr_value] [PageLife_S] FROM sys.dm_os_performance_counters WHERE [counter_name] = 'Page life expectancy' ) ple INNER JOIN ( SELECT [instance_name] [node] ,[cntr_value] [DatabasePages] FROM sys.dm_os_performance_counters WHERE [counter_name] = 'Database pages' ) dp ON ple.[node] = dp.[node]
SQL Script Output Screenshot
User Level to execute
- 300
Hope you will like to Page Life Expectancy.
If you really like reading my blog and understood at least few thing then please don’t forget to subscribe my blog.
If you want daily link and analysis or interesting link go to following website which will give @ your inbox please subscribe our following link resource blog :
For More information related to BI World visit my Mentalist Blog
SQL Server Mentalist >> SQL Learning Blog
Business Intelligence Mentalist >> BI World
Infographic Mentalist >> Image worth explaining thousand Words
Microsoft Mentalist >> MVC,ASP.NET, WCF & LinQ
DBA Mentalist >>Advance SQL Server Blog
Microsoft BI Mentalist >> MS BI Development Update
Connect With me on