{"id":4555,"date":"2018-08-01T15:14:35","date_gmt":"2018-08-01T21:14:35","guid":{"rendered":"https:\/\/kevinjustin.com\/blog\/?p=4555"},"modified":"2019-08-20T11:37:21","modified_gmt":"2019-08-20T15:37:21","slug":"possible-sql-issues-affecting-scom-performance","status":"publish","type":"post","link":"https:\/\/kevinjustin.com\/blog\/2018\/08\/01\/possible-sql-issues-affecting-scom-performance\/","title":{"rendered":"Possible SQL issues affecting SCOM performance"},"content":{"rendered":"<p><img loading=\"lazy\" decoding=\"async\" width=\"228\" height=\"160\" class=\"alignnone size-full wp-image-4635\" alt=\"\" src=\"https:\/\/kevinjustin.com\/blog\/wp-content\/uploads\/2018\/08\/GettingAudited.jpg\" \/><\/p>\n<p>&nbsp;<\/p>\n<p>Good reasons for a Risk Assessment<\/p>\n<p>&nbsp;<\/p>\n<p>SQL RAS runs 800+ queries to check on target SQL servers<\/p>\n<p>Check Best Practice Recommendations (BPR)<\/p>\n<p>&nbsp;<\/p>\n<p>May be good opportunity to audit the SQL build for BPR!<\/p>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n<p>Ran across some good examples where SQL settings brought SCOM to a standstill<\/p>\n<p>One was <a target=\"_blank\" href=\"https:\/\/docs.microsoft.com\/en-us\/sql\/relational-databases\/performance\/cardinality-estimation-sql-server?view=sql-server-2017\" rel=\"noopener noreferrer\">Cardinality Estimation <\/a>&#8211; basically, predicts how many rows a query will return<\/p>\n<p style=\"padding-left: 30px\">Part of SQL since\u00a01998 with SQL Server v7.0<\/p>\n<p>&nbsp;<\/p>\n<p>Let&#8217;s figure out what SQL2016 runs OoB (out of box)<\/p>\n<p>&nbsp;<\/p>\n<p><strong>SQL 2016<\/strong><\/p>\n<p><span style=\"color: #3366ff\"><span class=\"hljs-keyword\">SELECT<\/span> ServerProperty(<span class=\"hljs-string\">&#8216;ProductVersion&#8217;<\/span>);<br \/>\nGO\u00a0 <\/span><\/p>\n<p><span style=\"color: #3366ff\"><br \/>\n<span class=\"hljs-keyword\">SELECT<\/span><span> <\/span><span class=\"hljs-keyword\">name<\/span><span>, <\/span><span class=\"hljs-keyword\">value<\/span><span><br \/>\n<\/span><span class=\"hljs-keyword\">FROM<\/span><span> sys.database_scoped_configurations<br \/>\n<\/span><span class=\"hljs-keyword\">WHERE<\/span><span> <\/span><span class=\"hljs-keyword\">name<\/span><span> = <\/span><span class=\"hljs-string\">&#8216;LEGACY_CARDINALITY_ESTIMATION&#8217;<\/span><span>;<br \/>\nGO<\/span><br \/>\n<\/span><\/p>\n<p>&nbsp;<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" width=\"383\" height=\"592\" class=\"alignnone size-full wp-image-4645\" alt=\"\" src=\"https:\/\/kevinjustin.com\/blog\/wp-content\/uploads\/2018\/08\/CardinalEstimation-SQLQuery.PNG\" \/><\/p>\n<p>&nbsp;<\/p>\n<p>The other is CLR Strict Security<\/p>\n<p><span style=\"color: #0000ff;font-family: Consolas;font-size: small\">SELECT<\/span><span style=\"font-family: Consolas;font-size: small\"> <\/span><span style=\"color: #808080;font-family: Consolas;font-size: small\">*<\/span><span style=\"font-family: Consolas;font-size: small\"> <\/span><span style=\"color: #0000ff;font-family: Consolas;font-size: small\">FROM<\/span><span style=\"font-family: Consolas;font-size: small\"> <\/span><span style=\"color: #00ff00;font-family: Consolas;font-size: small\">sys<\/span><span style=\"color: #808080;font-family: Consolas;font-size: small\">.<\/span><span style=\"color: #00ff00;font-family: Consolas;font-size: small\">configurations<\/span><\/p>\n<p><span style=\"color: #0000ff;font-family: Consolas;font-size: small\">WHERE<\/span><span style=\"font-family: Consolas;font-size: small\"> <\/span><span style=\"color: #0000ff;font-family: Consolas;font-size: small\">name<\/span><span style=\"font-family: Consolas;font-size: small\"> <\/span><span style=\"color: #808080;font-family: Consolas;font-size: small\">=<\/span><span style=\"font-family: Consolas;font-size: small\"> <\/span><span style=\"color: #ff0000;font-family: Consolas;font-size: small\">&#8216;clr enabled&#8217;<\/span><\/p>\n<p>&nbsp;<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" width=\"832\" height=\"270\" class=\"alignnone size-full wp-image-4655\" alt=\"\" src=\"https:\/\/kevinjustin.com\/blog\/wp-content\/uploads\/2018\/08\/CLR-Enabled.PNG\" \/><\/p>\n<p>&nbsp;<\/p>\n<p>Talking with Shawn Nakhostin &#8211; SQL PFE, we discussed opportunities and questions around SQL optimization and best practices.<\/p>\n<p><strong>Shawn gave me the following feedback\u00a0on customer performance issues:<\/strong><\/p>\n<p>I&#8217;ve found some customers who have had performance issues with SQL based on organizational SQL settings:<\/p>\n<ol>\n<li>Trace flag 9481<\/li>\n<li>CLR Strict Security is by default enabled<\/li>\n<\/ol>\n<p>&nbsp;<\/p>\n<p><strong>Trace flag 9481<\/strong><\/p>\n<p>Enabling or disabling this TF is not a matter of best practice.<\/p>\n<p>The customer should see what works for them.<\/p>\n<p>Here is the explanation:<\/p>\n<p>Customer\u00a0started using a new cardinality estimator in SQL Server 2014.<\/p>\n<p>The product team knew that the new CE improved some of the query plans, but not all of them. In other words, they knew that this would improve overall query performance in \u201csome\u201d environments but might have a different impact in other environments.<\/p>\n<p>For this reason, they created TF 9481 so that environments that see query performance degradation after upgrading SQL Server from version 2012 and earlier, they can turn on this trace flag so that the query optimizer uses the old algorithm for CE.<\/p>\n<p><span style=\"color: #ff0000\">Note:-Trace flag 9481 forces the query optimizer to use version 70 (the SQL Server 2012 version) of the cardinality estimator when creating the query plan.<a target=\"_blank\" href=\"https:\/\/blogs.technet.microsoft.com\/dataplatform\/2017\/03\/22\/sql-server-2016-new-features-to-deal-with-the-new-ce\/\" rel=\"noopener noreferrer\"><\/a><\/span><\/p>\n<p><a target=\"_blank\" href=\"https:\/\/blogs.technet.microsoft.com\/dataplatform\/2017\/03\/22\/sql-server-2016-new-features-to-deal-with-the-new-ce\/\" rel=\"noopener noreferrer\">https:\/\/blogs.technet.microsoft.com\/dataplatform\/2017\/03\/22\/sql-server-2016-new-features-to-deal-with-the-new-ce\/<\/a><\/p>\n<p><a target=\"_blank\" href=\"https:\/\/support.microsoft.com\/en-in\/help\/2801413\/enable-plan-affecting-sql-server-query-optimizer-behavior-that-can-be\" rel=\"noopener noreferrer\">https:\/\/support.microsoft.com\/en-in\/help\/2801413\/enable-plan-affecting-sql-server-query-optimizer-behavior-that-can-be<\/a><\/p>\n<p>&nbsp;<\/p>\n<p><strong>CLR Strict Security is by default enabled<\/strong><\/p>\n<p>This\u00a0causes all assemblies to be treated as unsafe.<\/p>\n<p>As a result, assemblies will not load.<\/p>\n<p>To get the assemblies to load they can do one of the following:<\/p>\n<ul>\n<li>Sign the assembly. This may work if you have a few assemblies but becomes a huge task if there are many assemblies to sign.<\/li>\n<li>Set the TRUSTWORTHY database property to on.\n<ul>\n<li>This is not recommended because in some form defeats the purpose of using CLR Strict Security.<\/li>\n<\/ul>\n<\/li>\n<li>Add the assembly to the trusted assemblies list.\n<ul>\n<li>This is called whitelisting, which may be a better option than the previous two.<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<p style=\"padding-left: 60px\"><a target=\"_blank\" href=\"https:\/\/docs.microsoft.com\/en-us\/sql\/database-engine\/configure-windows\/clr-strict-security?view=sql-server-2017\" rel=\"noopener noreferrer\">https:\/\/docs.microsoft.com\/en-us\/sql\/database-engine\/configure-windows\/clr-strict-security?view=sql-server-2017<\/a><\/p>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>&nbsp; Good reasons for a Risk Assessment &nbsp; SQL RAS runs 800+ queries to check on target SQL servers Check Best Practice Recommendations (BPR) &nbsp; May be good opportunity to audit the SQL build for BPR! &nbsp; &nbsp; &nbsp; Ran across some good examples where SQL settings brought SCOM to a standstill One was Cardinality &hellip; <a href=\"https:\/\/kevinjustin.com\/blog\/2018\/08\/01\/possible-sql-issues-affecting-scom-performance\/\" class=\"more-link\">Continue reading<span class=\"screen-reader-text\"> &#8220;Possible SQL issues affecting SCOM performance&#8221;<\/span><\/a><\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[2,5,1],"tags":[74,78,83,85,93,342,359,410,418],"class_list":["post-4555","post","type-post","status-publish","format-standard","hentry","category-administration","category-best-practice","category-uncategorized","tag-best-practice-recommendation","tag-bpr","tag-cardinality-estimation","tag-ce","tag-clr","tag-scom","tag-scom-ras","tag-sql","tag-sql-ras"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.6 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Possible SQL issues affecting SCOM performance - Kevin Justin&#039;s Blog<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/kevinjustin.com\/blog\/2018\/08\/01\/possible-sql-issues-affecting-scom-performance\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Possible SQL issues affecting SCOM performance - Kevin Justin&#039;s Blog\" \/>\n<meta property=\"og:description\" content=\"&nbsp; Good reasons for a Risk Assessment &nbsp; SQL RAS runs 800+ queries to check on target SQL servers Check Best Practice Recommendations (BPR) &nbsp; May be good opportunity to audit the SQL build for BPR! &nbsp; &nbsp; &nbsp; Ran across some good examples where SQL settings brought SCOM to a standstill One was Cardinality &hellip; Continue reading &quot;Possible SQL issues affecting SCOM performance&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/kevinjustin.com\/blog\/2018\/08\/01\/possible-sql-issues-affecting-scom-performance\/\" \/>\n<meta property=\"og:site_name\" content=\"Kevin Justin&#039;s Blog\" \/>\n<meta property=\"article:published_time\" content=\"2018-08-01T21:14:35+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2019-08-20T15:37:21+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/kevinjustin.com\/blog\/wp-content\/uploads\/2018\/08\/GettingAudited.jpg\" \/>\n<meta name=\"author\" content=\"Kevin Justin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Kevin Justin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/kevinjustin.com\\\/blog\\\/2018\\\/08\\\/01\\\/possible-sql-issues-affecting-scom-performance\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/kevinjustin.com\\\/blog\\\/2018\\\/08\\\/01\\\/possible-sql-issues-affecting-scom-performance\\\/\"},\"author\":{\"name\":\"Kevin Justin\",\"@id\":\"https:\\\/\\\/kevinjustin.com\\\/blog\\\/#\\\/schema\\\/person\\\/213cdc5c6c3f2a1d9e8417c07440972d\"},\"headline\":\"Possible SQL issues affecting SCOM performance\",\"datePublished\":\"2018-08-01T21:14:35+00:00\",\"dateModified\":\"2019-08-20T15:37:21+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/kevinjustin.com\\\/blog\\\/2018\\\/08\\\/01\\\/possible-sql-issues-affecting-scom-performance\\\/\"},\"wordCount\":460,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/kevinjustin.com\\\/blog\\\/2018\\\/08\\\/01\\\/possible-sql-issues-affecting-scom-performance\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/kevinjustin.com\\\/blog\\\/wp-content\\\/uploads\\\/2018\\\/08\\\/GettingAudited.jpg\",\"keywords\":[\"best practice recommendation\",\"bpr\",\"cardinality Estimation\",\"CE\",\"clr\",\"SCOM\",\"scom ras\",\"sql\",\"sql ras\"],\"articleSection\":[\"Administration\",\"Best Practice\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/kevinjustin.com\\\/blog\\\/2018\\\/08\\\/01\\\/possible-sql-issues-affecting-scom-performance\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/kevinjustin.com\\\/blog\\\/2018\\\/08\\\/01\\\/possible-sql-issues-affecting-scom-performance\\\/\",\"url\":\"https:\\\/\\\/kevinjustin.com\\\/blog\\\/2018\\\/08\\\/01\\\/possible-sql-issues-affecting-scom-performance\\\/\",\"name\":\"Possible SQL issues affecting SCOM performance - Kevin Justin&#039;s Blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/kevinjustin.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/kevinjustin.com\\\/blog\\\/2018\\\/08\\\/01\\\/possible-sql-issues-affecting-scom-performance\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/kevinjustin.com\\\/blog\\\/2018\\\/08\\\/01\\\/possible-sql-issues-affecting-scom-performance\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/kevinjustin.com\\\/blog\\\/wp-content\\\/uploads\\\/2018\\\/08\\\/GettingAudited.jpg\",\"datePublished\":\"2018-08-01T21:14:35+00:00\",\"dateModified\":\"2019-08-20T15:37:21+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/kevinjustin.com\\\/blog\\\/#\\\/schema\\\/person\\\/213cdc5c6c3f2a1d9e8417c07440972d\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/kevinjustin.com\\\/blog\\\/2018\\\/08\\\/01\\\/possible-sql-issues-affecting-scom-performance\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/kevinjustin.com\\\/blog\\\/2018\\\/08\\\/01\\\/possible-sql-issues-affecting-scom-performance\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/kevinjustin.com\\\/blog\\\/2018\\\/08\\\/01\\\/possible-sql-issues-affecting-scom-performance\\\/#primaryimage\",\"url\":\"https:\\\/\\\/kevinjustin.com\\\/blog\\\/wp-content\\\/uploads\\\/2018\\\/08\\\/GettingAudited.jpg\",\"contentUrl\":\"https:\\\/\\\/kevinjustin.com\\\/blog\\\/wp-content\\\/uploads\\\/2018\\\/08\\\/GettingAudited.jpg\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/kevinjustin.com\\\/blog\\\/2018\\\/08\\\/01\\\/possible-sql-issues-affecting-scom-performance\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/kevinjustin.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Possible SQL issues affecting SCOM performance\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/kevinjustin.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/kevinjustin.com\\\/blog\\\/\",\"name\":\"Kevin Justin&#039;s Blog\",\"description\":\"Operational monitoring tools including System Center, Azure Monitor\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/kevinjustin.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/kevinjustin.com\\\/blog\\\/#\\\/schema\\\/person\\\/213cdc5c6c3f2a1d9e8417c07440972d\",\"name\":\"Kevin Justin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/4c2a0d1189dd1ad7f305cf08aa9c5e2d4cc8fc26fde7ca573d3fd7e75520334e?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/4c2a0d1189dd1ad7f305cf08aa9c5e2d4cc8fc26fde7ca573d3fd7e75520334e?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/4c2a0d1189dd1ad7f305cf08aa9c5e2d4cc8fc26fde7ca573d3fd7e75520334e?s=96&d=mm&r=g\",\"caption\":\"Kevin Justin\"},\"url\":\"https:\\\/\\\/kevinjustin.com\\\/blog\\\/author\\\/kejustin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Possible SQL issues affecting SCOM performance - Kevin Justin&#039;s Blog","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/kevinjustin.com\/blog\/2018\/08\/01\/possible-sql-issues-affecting-scom-performance\/","og_locale":"en_US","og_type":"article","og_title":"Possible SQL issues affecting SCOM performance - Kevin Justin&#039;s Blog","og_description":"&nbsp; Good reasons for a Risk Assessment &nbsp; SQL RAS runs 800+ queries to check on target SQL servers Check Best Practice Recommendations (BPR) &nbsp; May be good opportunity to audit the SQL build for BPR! &nbsp; &nbsp; &nbsp; Ran across some good examples where SQL settings brought SCOM to a standstill One was Cardinality &hellip; Continue reading \"Possible SQL issues affecting SCOM performance\"","og_url":"https:\/\/kevinjustin.com\/blog\/2018\/08\/01\/possible-sql-issues-affecting-scom-performance\/","og_site_name":"Kevin Justin&#039;s Blog","article_published_time":"2018-08-01T21:14:35+00:00","article_modified_time":"2019-08-20T15:37:21+00:00","og_image":[{"url":"https:\/\/kevinjustin.com\/blog\/wp-content\/uploads\/2018\/08\/GettingAudited.jpg","type":"","width":"","height":""}],"author":"Kevin Justin","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Kevin Justin","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/kevinjustin.com\/blog\/2018\/08\/01\/possible-sql-issues-affecting-scom-performance\/#article","isPartOf":{"@id":"https:\/\/kevinjustin.com\/blog\/2018\/08\/01\/possible-sql-issues-affecting-scom-performance\/"},"author":{"name":"Kevin Justin","@id":"https:\/\/kevinjustin.com\/blog\/#\/schema\/person\/213cdc5c6c3f2a1d9e8417c07440972d"},"headline":"Possible SQL issues affecting SCOM performance","datePublished":"2018-08-01T21:14:35+00:00","dateModified":"2019-08-20T15:37:21+00:00","mainEntityOfPage":{"@id":"https:\/\/kevinjustin.com\/blog\/2018\/08\/01\/possible-sql-issues-affecting-scom-performance\/"},"wordCount":460,"commentCount":0,"image":{"@id":"https:\/\/kevinjustin.com\/blog\/2018\/08\/01\/possible-sql-issues-affecting-scom-performance\/#primaryimage"},"thumbnailUrl":"https:\/\/kevinjustin.com\/blog\/wp-content\/uploads\/2018\/08\/GettingAudited.jpg","keywords":["best practice recommendation","bpr","cardinality Estimation","CE","clr","SCOM","scom ras","sql","sql ras"],"articleSection":["Administration","Best Practice"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/kevinjustin.com\/blog\/2018\/08\/01\/possible-sql-issues-affecting-scom-performance\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/kevinjustin.com\/blog\/2018\/08\/01\/possible-sql-issues-affecting-scom-performance\/","url":"https:\/\/kevinjustin.com\/blog\/2018\/08\/01\/possible-sql-issues-affecting-scom-performance\/","name":"Possible SQL issues affecting SCOM performance - Kevin Justin&#039;s Blog","isPartOf":{"@id":"https:\/\/kevinjustin.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/kevinjustin.com\/blog\/2018\/08\/01\/possible-sql-issues-affecting-scom-performance\/#primaryimage"},"image":{"@id":"https:\/\/kevinjustin.com\/blog\/2018\/08\/01\/possible-sql-issues-affecting-scom-performance\/#primaryimage"},"thumbnailUrl":"https:\/\/kevinjustin.com\/blog\/wp-content\/uploads\/2018\/08\/GettingAudited.jpg","datePublished":"2018-08-01T21:14:35+00:00","dateModified":"2019-08-20T15:37:21+00:00","author":{"@id":"https:\/\/kevinjustin.com\/blog\/#\/schema\/person\/213cdc5c6c3f2a1d9e8417c07440972d"},"breadcrumb":{"@id":"https:\/\/kevinjustin.com\/blog\/2018\/08\/01\/possible-sql-issues-affecting-scom-performance\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/kevinjustin.com\/blog\/2018\/08\/01\/possible-sql-issues-affecting-scom-performance\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/kevinjustin.com\/blog\/2018\/08\/01\/possible-sql-issues-affecting-scom-performance\/#primaryimage","url":"https:\/\/kevinjustin.com\/blog\/wp-content\/uploads\/2018\/08\/GettingAudited.jpg","contentUrl":"https:\/\/kevinjustin.com\/blog\/wp-content\/uploads\/2018\/08\/GettingAudited.jpg"},{"@type":"BreadcrumbList","@id":"https:\/\/kevinjustin.com\/blog\/2018\/08\/01\/possible-sql-issues-affecting-scom-performance\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/kevinjustin.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Possible SQL issues affecting SCOM performance"}]},{"@type":"WebSite","@id":"https:\/\/kevinjustin.com\/blog\/#website","url":"https:\/\/kevinjustin.com\/blog\/","name":"Kevin Justin&#039;s Blog","description":"Operational monitoring tools including System Center, Azure Monitor","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/kevinjustin.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/kevinjustin.com\/blog\/#\/schema\/person\/213cdc5c6c3f2a1d9e8417c07440972d","name":"Kevin Justin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/4c2a0d1189dd1ad7f305cf08aa9c5e2d4cc8fc26fde7ca573d3fd7e75520334e?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/4c2a0d1189dd1ad7f305cf08aa9c5e2d4cc8fc26fde7ca573d3fd7e75520334e?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/4c2a0d1189dd1ad7f305cf08aa9c5e2d4cc8fc26fde7ca573d3fd7e75520334e?s=96&d=mm&r=g","caption":"Kevin Justin"},"url":"https:\/\/kevinjustin.com\/blog\/author\/kejustin\/"}]}},"_links":{"self":[{"href":"https:\/\/kevinjustin.com\/blog\/wp-json\/wp\/v2\/posts\/4555","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/kevinjustin.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/kevinjustin.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/kevinjustin.com\/blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/kevinjustin.com\/blog\/wp-json\/wp\/v2\/comments?post=4555"}],"version-history":[{"count":2,"href":"https:\/\/kevinjustin.com\/blog\/wp-json\/wp\/v2\/posts\/4555\/revisions"}],"predecessor-version":[{"id":6499,"href":"https:\/\/kevinjustin.com\/blog\/wp-json\/wp\/v2\/posts\/4555\/revisions\/6499"}],"wp:attachment":[{"href":"https:\/\/kevinjustin.com\/blog\/wp-json\/wp\/v2\/media?parent=4555"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/kevinjustin.com\/blog\/wp-json\/wp\/v2\/categories?post=4555"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/kevinjustin.com\/blog\/wp-json\/wp\/v2\/tags?post=4555"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}