{"id":1326,"date":"2018-09-05T07:09:11","date_gmt":"2018-09-05T06:09:11","guid":{"rendered":"https:\/\/dbafox.com\/?p=1326"},"modified":"2018-09-05T07:14:45","modified_gmt":"2018-09-05T06:14:45","slug":"sql-server-average-duration-of-a-query","status":"publish","type":"post","link":"https:\/\/dbafox.com\/?p=1326","title":{"rendered":"SQL Server &#8211; Query Plans, Plan handles,  DBCC FREEPROCCACHE"},"content":{"rendered":"<pre class=\"brush: sql; title: ; notranslate\" title=\"\">\r\nselect\r\n&#x5B;Average Duration (msec]=total_elapsed_time\/execution_count\/1000, \r\ncreation_time,last_execution_time, \r\nexecution_count from sys.dm_exec_query_stats\r\nwhere plan_handle in \r\n(\r\nSELECT plan_handle\r\nFROM sys.dm_exec_cached_plans \r\nCROSS APPLY sys.dm_exec_sql_text(plan_handle)\r\nCROSS APPLY sys.dm_exec_query_plan(plan_handle)\r\nwhere text like '%&lt;sql text&gt;%'\r\n)\r\n<\/pre>\n<pre class=\"brush: sql; title: ; notranslate\" title=\"\">\r\nSELECT UseCounts, Cacheobjtype, Objtype, TEXT, query_plan, plan_handle\r\nFROM sys.dm_exec_cached_plans \r\nCROSS APPLY sys.dm_exec_sql_text(plan_handle)\r\nCROSS APPLY sys.dm_exec_query_plan(plan_handle)\r\nwhere text like '%&lt;sql text&gt;%'\r\norder by text\r\n\r\nDBCC FREEPROCCACHE(&lt;plan_handle&gt;)\r\n<\/pre>\n","protected":false},"excerpt":{"rendered":"<p>select &#x5B;Average Duration (msec]=total_elapsed_time\/execution_count\/1000, creation_time,last_execution_time, execution_count from sys.dm_exec_query_stats where plan_handle in ( SELECT plan_handle FROM sys.dm_exec_cached_plans CROSS APPLY sys.dm_exec_sql_text(plan_handle) CROSS APPLY sys.dm_exec_query_plan(plan_handle) where text like &#8216;%&lt;sql text&gt;%&#8217; ) SELECT UseCounts, Cacheobjtype, Objtype, TEXT, query_plan, plan_handle FROM sys.dm_exec_cached_plans CROSS APPLY sys.dm_exec_sql_text(plan_handle) &hellip; <a href=\"https:\/\/dbafox.com\/?p=1326\">Continue reading <span class=\"meta-nav\">&rarr;<\/span><\/a><\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"pgc_sgb_lightbox_settings":"","_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[24],"tags":[],"class_list":["post-1326","post","type-post","status-publish","format-standard","hentry","category-ms-sql-server"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.6 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>SQL Server - Query Plans, Plan handles, DBCC FREEPROCCACHE - dbafox<\/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:\/\/dbafox.com\/?p=1326\" \/>\n<meta property=\"og:locale\" content=\"en_GB\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"SQL Server - Query Plans, Plan handles, DBCC FREEPROCCACHE - dbafox\" \/>\n<meta property=\"og:description\" content=\"select &#x5B;Average Duration (msec]=total_elapsed_time\/execution_count\/1000, creation_time,last_execution_time, execution_count from sys.dm_exec_query_stats where plan_handle in ( SELECT plan_handle FROM sys.dm_exec_cached_plans CROSS APPLY sys.dm_exec_sql_text(plan_handle) CROSS APPLY sys.dm_exec_query_plan(plan_handle) where text like &#039;%&lt;sql text&gt;%&#039; ) SELECT UseCounts, Cacheobjtype, Objtype, TEXT, query_plan, plan_handle FROM sys.dm_exec_cached_plans CROSS APPLY sys.dm_exec_sql_text(plan_handle) &hellip; Continue reading &rarr;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/dbafox.com\/?p=1326\" \/>\n<meta property=\"og:site_name\" content=\"dbafox\" \/>\n<meta property=\"article:published_time\" content=\"2018-09-05T06:09:11+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2018-09-05T06:14:45+00:00\" \/>\n<meta name=\"author\" content=\"Ray Fox\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Ray Fox\" \/>\n\t<meta name=\"twitter:label2\" content=\"Estimated reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/dbafox.com\/?p=1326\",\"url\":\"https:\/\/dbafox.com\/?p=1326\",\"name\":\"SQL Server - Query Plans, Plan handles, DBCC FREEPROCCACHE - dbafox\",\"isPartOf\":{\"@id\":\"https:\/\/dbafox.com\/#website\"},\"datePublished\":\"2018-09-05T06:09:11+00:00\",\"dateModified\":\"2018-09-05T06:14:45+00:00\",\"author\":{\"@id\":\"https:\/\/dbafox.com\/#\/schema\/person\/287adc474c1aebd398752ac4dcfe27eb\"},\"breadcrumb\":{\"@id\":\"https:\/\/dbafox.com\/?p=1326#breadcrumb\"},\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/dbafox.com\/?p=1326\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/dbafox.com\/?p=1326#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/dbafox.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"SQL Server &#8211; Query Plans, Plan handles, DBCC FREEPROCCACHE\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/dbafox.com\/#website\",\"url\":\"https:\/\/dbafox.com\/\",\"name\":\"dbafox\",\"description\":\"DBA Technical Information\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/dbafox.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-GB\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/dbafox.com\/#\/schema\/person\/287adc474c1aebd398752ac4dcfe27eb\",\"name\":\"Ray Fox\",\"sameAs\":[\"http:\/\/www.dbafox.com\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"SQL Server - Query Plans, Plan handles, DBCC FREEPROCCACHE - dbafox","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:\/\/dbafox.com\/?p=1326","og_locale":"en_GB","og_type":"article","og_title":"SQL Server - Query Plans, Plan handles, DBCC FREEPROCCACHE - dbafox","og_description":"select &#x5B;Average Duration (msec]=total_elapsed_time\/execution_count\/1000, creation_time,last_execution_time, execution_count from sys.dm_exec_query_stats where plan_handle in ( SELECT plan_handle FROM sys.dm_exec_cached_plans CROSS APPLY sys.dm_exec_sql_text(plan_handle) CROSS APPLY sys.dm_exec_query_plan(plan_handle) where text like '%&lt;sql text&gt;%' ) SELECT UseCounts, Cacheobjtype, Objtype, TEXT, query_plan, plan_handle FROM sys.dm_exec_cached_plans CROSS APPLY sys.dm_exec_sql_text(plan_handle) &hellip; Continue reading &rarr;","og_url":"https:\/\/dbafox.com\/?p=1326","og_site_name":"dbafox","article_published_time":"2018-09-05T06:09:11+00:00","article_modified_time":"2018-09-05T06:14:45+00:00","author":"Ray Fox","twitter_misc":{"Written by":"Ray Fox","Estimated reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/dbafox.com\/?p=1326","url":"https:\/\/dbafox.com\/?p=1326","name":"SQL Server - Query Plans, Plan handles, DBCC FREEPROCCACHE - dbafox","isPartOf":{"@id":"https:\/\/dbafox.com\/#website"},"datePublished":"2018-09-05T06:09:11+00:00","dateModified":"2018-09-05T06:14:45+00:00","author":{"@id":"https:\/\/dbafox.com\/#\/schema\/person\/287adc474c1aebd398752ac4dcfe27eb"},"breadcrumb":{"@id":"https:\/\/dbafox.com\/?p=1326#breadcrumb"},"inLanguage":"en-GB","potentialAction":[{"@type":"ReadAction","target":["https:\/\/dbafox.com\/?p=1326"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/dbafox.com\/?p=1326#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/dbafox.com\/"},{"@type":"ListItem","position":2,"name":"SQL Server &#8211; Query Plans, Plan handles, DBCC FREEPROCCACHE"}]},{"@type":"WebSite","@id":"https:\/\/dbafox.com\/#website","url":"https:\/\/dbafox.com\/","name":"dbafox","description":"DBA Technical Information","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/dbafox.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-GB"},{"@type":"Person","@id":"https:\/\/dbafox.com\/#\/schema\/person\/287adc474c1aebd398752ac4dcfe27eb","name":"Ray Fox","sameAs":["http:\/\/www.dbafox.com"]}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"jetpack_shortlink":"https:\/\/wp.me\/p3ecMb-lo","_links":{"self":[{"href":"https:\/\/dbafox.com\/index.php?rest_route=\/wp\/v2\/posts\/1326","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/dbafox.com\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/dbafox.com\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/dbafox.com\/index.php?rest_route=\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/dbafox.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=1326"}],"version-history":[{"count":3,"href":"https:\/\/dbafox.com\/index.php?rest_route=\/wp\/v2\/posts\/1326\/revisions"}],"predecessor-version":[{"id":1329,"href":"https:\/\/dbafox.com\/index.php?rest_route=\/wp\/v2\/posts\/1326\/revisions\/1329"}],"wp:attachment":[{"href":"https:\/\/dbafox.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=1326"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/dbafox.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=1326"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/dbafox.com\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=1326"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}