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 January 2019 https://www.sqlskills.com/blogs/glenn/sql-server-diagnostic-information-queries-for-january-2019/ Semi-random musings about SQL Server performance Sat, 23 Mar 2019 17:21:36 +0000 hourly 1 https://wordpress.org/?v=6.9.4 By: Glenn Berry https://www.sqlskills.com/blogs/glenn/sql-server-diagnostic-information-queries-for-january-2019/#comment-267834 Sat, 23 Mar 2019 17:21:36 +0000 http://3.209.169.194/blogs/glenn/?p=1482#comment-267834 In reply to Thomas Arehart.

Perhaps DropBox is blocked where you tried to access my scripts? I am not aware of any permissions issues, and nobody else has raised this as an issue.

]]>
By: Thomas Arehart https://www.sqlskills.com/blogs/glenn/sql-server-diagnostic-information-queries-for-january-2019/#comment-266897 Thu, 14 Mar 2019 15:12:43 +0000 http://3.209.169.194/blogs/glenn/?p=1482#comment-266897 I am unable to access the web pages from the links that you have provided. For me, they lead to a DropBox account where I do not have permission to open. Is this correct?

]]>
By: alzdba https://www.sqlskills.com/blogs/glenn/sql-server-diagnostic-information-queries-for-january-2019/#comment-259717 Thu, 17 Jan 2019 13:41:02 +0000 http://3.209.169.194/blogs/glenn/?p=1482#comment-259717 Could you please also add HADR quorum vote information in the versions > 2008 R2 ?

–====> Already in place
— Get information about any AlwaysOn AG cluster this instance is a part of (Query 16) (AlwaysOn AG Cluster)
SELECT cluster_name, quorum_type_desc, quorum_state_desc
FROM sys.dm_hadr_cluster WITH (NOLOCK) OPTION (RECOMPILE);

–====> please add
— Get information about any AlwaysOn AG cluster quorumvotes (AlwaysOn AG Cluster)
SELECT member_name, member_state_desc, number_of_quorum_votes
FROM sys.dm_hadr_cluster_members
–> thank you
——

]]>