March 26, 2017 at 9:21 pm
Comments posted to this topic are about the item sys.dm_exec_query_stats
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
This thing is addressing problems that dont exist. Its solution-ism at its worst. We are dumbing down machines that are inherently superior. - Gilfoyle
March 26, 2017 at 10:22 pm
Well, the documentation states that these new columns were added from SQL 2016. However, they are available in my SQL 2014 instance.
SELECT @@VERSION;
Microsoft SQL Server 2014 (SP2-GDR) (KB3194714) - 12.0.5203.0 (X64)
Sep 23 2016 18:13:56
Copyright (c) Microsoft Corporation
Developer Edition (64-bit) on Windows NT 6.1 <X64> (Build 7601: Service Pack 1)
select
total_dop
, total_reserved_threads
, total_grant_kb
from sys.dm_exec_query_stats;
total_dop total_reserved_threads total_grant_kb
3 0 3072
1 0 1872
1 0 1024
March 26, 2017 at 11:23 pm
Interesting question, Henrico, thanks...
____________________________________________
Space, the final frontier? not any more...
All limits henceforth are self-imposed.
โlibera tute vulgaris exโ
March 27, 2017 at 6:52 am
DesNorton - Sunday, March 26, 2017 10:22 PMWell, the documentation states that these new columns were added from SQL 2016. However, they are available in my SQL 2014 instance.
SELECT @@VERSION;
Microsoft SQL Server 2014 (SP2-GDR) (KB3194714) - 12.0.5203.0 (X64)
Sep 23 2016 18:13:56
Copyright (c) Microsoft Corporation
Developer Edition (64-bit) on Windows NT 6.1 <X64> (Build 7601: Service Pack 1)
select
total_dop
, total_reserved_threads
, total_grant_kb
from sys.dm_exec_query_stats;
total_dop total_reserved_threads total_grant_kb
3 0 3072
1 0 1872
1 0 1024
That is quite interesting. Thanks for sharing.
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
This thing is addressing problems that dont exist. Its solution-ism at its worst. We are dumbing down machines that are inherently superior. - Gilfoyle
March 27, 2017 at 8:01 am
Think they may have been added in a service pack for both 2012 and 2014 -
Improved memory grant diagnostics when you use DMV in SQL Server 2012 and 2014
Sue
March 27, 2017 at 3:11 pm
Henrico Bekker - Monday, March 27, 2017 6:52 AMDesNorton - Sunday, March 26, 2017 10:22 PMWell, the documentation states that these new columns were added from SQL 2016. However, they are available in my SQL 2014 instance.
SELECT @@VERSION;
Microsoft SQL Server 2014 (SP2-GDR) (KB3194714) - 12.0.5203.0 (X64)
Sep 23 2016 18:13:56
Copyright (c) Microsoft Corporation
Developer Edition (64-bit) on Windows NT 6.1 <X64> (Build 7601: Service Pack 1)
select
total_dop
, total_reserved_threads
, total_grant_kb
from sys.dm_exec_query_stats;
total_dop total_reserved_threads total_grant_kb
3 0 3072
1 0 1872
1 0 1024That is quite interesting. Thanks for sharing.
They're also present in SQL 2012 SP3.
March 27, 2017 at 4:12 pm
Seems MS documentation needs to be updated.
Apologies if anyone lost points! ๐
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
This thing is addressing problems that dont exist. Its solution-ism at its worst. We are dumbing down machines that are inherently superior. - Gilfoyle
March 27, 2017 at 6:06 pm
Henrico Bekker - Monday, March 27, 2017 4:12 PMSeems MS documentation needs to be updated.
Huge understatement
Jason...AKA CirqueDeSQLeil
_______________________________________________
I have given a name to my pain...MCM SQL Server, MVP
SQL RNNR
Posting Performance Based Questions - Gail Shaw[/url]
Learn Extended Events
March 28, 2017 at 5:23 am
SQLRNNR - Monday, March 27, 2017 6:06 PMHenrico Bekker - Monday, March 27, 2017 4:12 PMSeems MS documentation needs to be updated.Huge understatement
Heh - more than just that page needs to be updated. ๐
Viewing 9 posts - 1 through 8 (of 8 total)
You must be logged in to reply to this topic. Login to reply