Warning: Constant WP_TEMP_DIR already defined in /var/www/html/blogs/glenn/wp-config.php on line 94

Warning: Cannot modify header information - headers already sent by (output started at /var/www/html/blogs/glenn/wp-config.php:94) in /var/www/html/blogs/glenn/wp-includes/feed-rss2-comments.php on line 8
Comments on: SQL Server Diagnostic Information Queries for December 2017 https://www.sqlskills.com/blogs/glenn/sql-server-diagnostic-information-queries-for-december-2017/ Semi-random musings about SQL Server performance Mon, 01 Jan 2018 10:36:07 +0000 hourly 1 https://wordpress.org/?v=6.9.4 By: hmira https://www.sqlskills.com/blogs/glenn/sql-server-diagnostic-information-queries-for-december-2017/#comment-236010 Mon, 01 Jan 2018 10:36:07 +0000 http://3.209.169.194/blogs/glenn/?p=1296#comment-236010 “SQL Server Install Date” query does not work in some countries!
In France, I amended the query as follows:
SELECT @@SERVERNAME AS [Server_Name], create_date AS [SQL_Server_Install_Date], name AS [Principal_Name]
FROM sys.server_principals WITH (NOLOCK)
WHERE name IN ( /*English*/ N’NT AUTHORITY\SYSTEM’
, /*French*/ N’AUTORITE NT\Système’)
OR name IN ( /*English*/ N’NT AUTHORITY\NETWORK SERVICE’
, /*French*/ N’AUTORITE NT\SERVICE RÉSEAU’)
OPTION (RECOMPILE);

Thank you very much for your contributions

]]>
By: Praveen https://www.sqlskills.com/blogs/glenn/sql-server-diagnostic-information-queries-for-december-2017/#comment-235969 Thu, 28 Dec 2017 12:49:49 +0000 http://3.209.169.194/blogs/glenn/?p=1296#comment-235969 In reply to Glenn Berry.

Thanks for the reply.

]]>
By: Glenn Berry https://www.sqlskills.com/blogs/glenn/sql-server-diagnostic-information-queries-for-december-2017/#comment-235961 Wed, 27 Dec 2017 20:59:10 +0000 http://3.209.169.194/blogs/glenn/?p=1296#comment-235961 In reply to Praveen.

I have periodically received reports of this issue on relatively large machines (in terms of core counts). The sys.dm_os_ring_buffers DMV is not fully documented or supported by Microsoft, so I don’t know if this issue will ever be fixed.

]]>
By: Praveen https://www.sqlskills.com/blogs/glenn/sql-server-diagnostic-information-queries-for-december-2017/#comment-235959 Wed, 27 Dec 2017 10:30:19 +0000 http://3.209.169.194/blogs/glenn/?p=1296#comment-235959 Hi Glenn,

I am running this SQL on a machine with 4 NUMA nodes and 96 logical cores.

This seems to return incorrect results for SQLProcessUtilization with values > 100.

Is there any work-around for this to determine the SQLProcessUtilization accurately?

Thanks.

]]>