{"id":807,"date":"2017-02-09T13:41:32","date_gmt":"2017-02-09T13:41:32","guid":{"rendered":"http:\/\/www.dbafox.com\/?p=807"},"modified":"2024-07-13T08:56:13","modified_gmt":"2024-07-13T06:56:13","slug":"oracle-tkprof-extract-all-waits-from-output-file-using-powershell","status":"publish","type":"post","link":"https:\/\/dbafox.com\/?p=807","title":{"rendered":"Oracle &#8211; tkprof &#8211; Extract all waits from output file using Powershell"},"content":{"rendered":"<pre><pre class=\"brush: powershell; title: ; notranslate\" title=\"\">\n$astr=@(&amp;amp;quot;Event&amp;amp;quot;, &amp;amp;quot;\\*\\*\\*\\*&amp;amp;quot;, &amp;amp;quot;--------&amp;amp;quot;)\n#Gets them all\n#set up the regexp\n$regex = '(?ms) Event waited on(.+?)\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*'\n#get-content gets an array of strings, join them all into one string separated by newline\n$string=(Get-Content .\\CCI1_ora_15824_2.txt) -join &amp;amp;quot;`n&amp;amp;quot;\n# search for the regexp in the string and output the matches\nSelect-String -input $string -Pattern $regex -AllMatches | `\n% { $_.Matches } | `\n% { \n    $arr = $_.Value -split  &amp;amp;quot;`n&amp;amp;quot;\n    foreach ($line in $arr) {\n     # output only lines that do not contain the strings in the array, trim it and replace &amp;amp;quot;more than one space&amp;amp;quot; with a semi-colon\n     Select-String -input $line -pattern $astr -NotMatch | ForEach-Object {$_.Line.Trim() -replace '  +',&amp;amp;quot;;&amp;amp;quot;}\n    }\n}\n<\/pre>\n","protected":false},"excerpt":{"rendered":"<p>$astr=@(&amp;amp;quot;Event&amp;amp;quot;, &amp;amp;quot;\\*\\*\\*\\*&amp;amp;quot;, &amp;amp;quot;&#8212;&#8212;&#8211;&amp;amp;quot;) #Gets them all #set up the regexp $regex = &#8216;(?ms) Event waited on(.+?)\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*&#8217; #get-content gets an array of strings, join them all into one string separated by newline $string=(Get-Content .\\CCI1_ora_15824_2.txt) -join &amp;amp;quot;`n&amp;amp;quot; # search for the regexp &hellip; <a href=\"https:\/\/dbafox.com\/?p=807\">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":[28,29],"tags":[],"class_list":["post-807","post","type-post","status-publish","format-standard","hentry","category-oracle-technical","category-powershell"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.6 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Oracle - tkprof - Extract all waits from output file using Powershell - 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=807\" \/>\n<meta property=\"og:locale\" content=\"en_GB\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Oracle - tkprof - Extract all waits from output file using Powershell - dbafox\" \/>\n<meta property=\"og:description\" content=\"$astr=@(&amp;amp;quot;Event&amp;amp;quot;, &amp;amp;quot;****&amp;amp;quot;, &amp;amp;quot;--------&amp;amp;quot;) #Gets them all #set up the regexp $regex = &#039;(?ms) Event waited on(.+?)********************************************************************************&#039; #get-content gets an array of strings, join them all into one string separated by newline $string=(Get-Content .CCI1_ora_15824_2.txt) -join &amp;amp;quot;`n&amp;amp;quot; # search for the regexp &hellip; Continue reading &rarr;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/dbafox.com\/?p=807\" \/>\n<meta property=\"og:site_name\" content=\"dbafox\" \/>\n<meta property=\"article:published_time\" content=\"2017-02-09T13:41:32+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-07-13T06:56:13+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<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/dbafox.com\/?p=807\",\"url\":\"https:\/\/dbafox.com\/?p=807\",\"name\":\"Oracle - tkprof - Extract all waits from output file using Powershell - dbafox\",\"isPartOf\":{\"@id\":\"https:\/\/dbafox.com\/#website\"},\"datePublished\":\"2017-02-09T13:41:32+00:00\",\"dateModified\":\"2024-07-13T06:56:13+00:00\",\"author\":{\"@id\":\"https:\/\/dbafox.com\/#\/schema\/person\/287adc474c1aebd398752ac4dcfe27eb\"},\"breadcrumb\":{\"@id\":\"https:\/\/dbafox.com\/?p=807#breadcrumb\"},\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/dbafox.com\/?p=807\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/dbafox.com\/?p=807#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/dbafox.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Oracle &#8211; tkprof &#8211; Extract all waits from output file using Powershell\"}]},{\"@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":"Oracle - tkprof - Extract all waits from output file using Powershell - 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=807","og_locale":"en_GB","og_type":"article","og_title":"Oracle - tkprof - Extract all waits from output file using Powershell - dbafox","og_description":"$astr=@(&amp;amp;quot;Event&amp;amp;quot;, &amp;amp;quot;****&amp;amp;quot;, &amp;amp;quot;--------&amp;amp;quot;) #Gets them all #set up the regexp $regex = '(?ms) Event waited on(.+?)********************************************************************************' #get-content gets an array of strings, join them all into one string separated by newline $string=(Get-Content .CCI1_ora_15824_2.txt) -join &amp;amp;quot;`n&amp;amp;quot; # search for the regexp &hellip; Continue reading &rarr;","og_url":"https:\/\/dbafox.com\/?p=807","og_site_name":"dbafox","article_published_time":"2017-02-09T13:41:32+00:00","article_modified_time":"2024-07-13T06:56:13+00:00","author":"Ray Fox","twitter_misc":{"Written by":"Ray Fox"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/dbafox.com\/?p=807","url":"https:\/\/dbafox.com\/?p=807","name":"Oracle - tkprof - Extract all waits from output file using Powershell - dbafox","isPartOf":{"@id":"https:\/\/dbafox.com\/#website"},"datePublished":"2017-02-09T13:41:32+00:00","dateModified":"2024-07-13T06:56:13+00:00","author":{"@id":"https:\/\/dbafox.com\/#\/schema\/person\/287adc474c1aebd398752ac4dcfe27eb"},"breadcrumb":{"@id":"https:\/\/dbafox.com\/?p=807#breadcrumb"},"inLanguage":"en-GB","potentialAction":[{"@type":"ReadAction","target":["https:\/\/dbafox.com\/?p=807"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/dbafox.com\/?p=807#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/dbafox.com\/"},{"@type":"ListItem","position":2,"name":"Oracle &#8211; tkprof &#8211; Extract all waits from output file using Powershell"}]},{"@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-d1","_links":{"self":[{"href":"https:\/\/dbafox.com\/index.php?rest_route=\/wp\/v2\/posts\/807","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=807"}],"version-history":[{"count":5,"href":"https:\/\/dbafox.com\/index.php?rest_route=\/wp\/v2\/posts\/807\/revisions"}],"predecessor-version":[{"id":1527,"href":"https:\/\/dbafox.com\/index.php?rest_route=\/wp\/v2\/posts\/807\/revisions\/1527"}],"wp:attachment":[{"href":"https:\/\/dbafox.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=807"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/dbafox.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=807"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/dbafox.com\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=807"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}