<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>eng | DBA von Nebenan</title>
	<atom:link href="https://dbavonnebenan.de/tag/eng/feed/" rel="self" type="application/rss+xml" />
	<link>https://dbavonnebenan.de</link>
	<description>Sql Server, Performance &#38; PowerShell Automation</description>
	<lastBuildDate>Sun, 14 Jun 2026 20:02:17 +0000</lastBuildDate>
	<language>de</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.0.2</generator>

<image>
	<url>https://dbavonnebenan.de/wp-content/uploads/2025/04/cropped-www_logo-32x32.png</url>
	<title>eng | DBA von Nebenan</title>
	<link>https://dbavonnebenan.de</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>psTerminalPerfCounter &#8211; Performance Counter in Terminal &#8211; HowTo</title>
		<link>https://dbavonnebenan.de/psterminalperfcounter-counter-in-terminal-handson_en/</link>
					<comments>https://dbavonnebenan.de/psterminalperfcounter-counter-in-terminal-handson_en/#respond</comments>
		
		<dc:creator><![CDATA[Gabriel]]></dc:creator>
		<pubDate>Sun, 14 Jun 2026 20:02:16 +0000</pubDate>
				<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[counter]]></category>
		<category><![CDATA[eng]]></category>
		<category><![CDATA[PERFORMANCE]]></category>
		<category><![CDATA[TERMINAL]]></category>
		<guid isPermaLink="false">https://dbavonnebenan.de/?p=741</guid>

					<description><![CDATA[<p>Hands-on with psTerminalPerfCounter: monitor Windows Performance Counters in the terminal, including a TUI, multi-server monitoring, and CSV/HTML export.</p>
<p>The post <a href="https://dbavonnebenan.de/psterminalperfcounter-counter-in-terminal-handson_en/">psTerminalPerfCounter – Performance Counter in Terminal – HowTo</a> first appeared on <a href="https://dbavonnebenan.de">DBA von Nebenan</a>.</p>]]></description>
										<content:encoded><![CDATA[<h1 class="wp-block-heading" style="margin-top:0;margin-bottom:var(--wp--preset--spacing--40)">Intro</h1>



<div class="wp-block-columns are-vertically-aligned-center is-layout-flex wp-container-core-columns-is-layout-461897f4 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:50px">
<figure class="wp-block-image size-full is-resized"><img fetchpriority="high" decoding="async" width="294" height="288" src="https://dbavonnebenan.de/wp-content/uploads/2026/06/GitHub_Invertocat_Black.png" alt="Solid black square placeholder with no visible content." class="wp-image-720" style="aspect-ratio:1.0208344636753297;width:51px;height:auto"/></figure>
</div>



<div class="wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow">
<p class="wp-block-paragraph" style="margin-top:var(--wp--preset--spacing--60);margin-bottom:var(--wp--preset--spacing--60)"><strong><a href="https://github.com/gabrielkoehl/psTerminalPerfCounter" target="_blank" rel="noopener" title="">psTerminalPerfCounter</a></strong></p>
</div>
</div>



<p class="wp-block-paragraph" style="margin-top:var(--wp--preset--spacing--40);margin-bottom:var(--wp--preset--spacing--40)">In the previous article I gave a quick rundown of the <a href="/windows-performance-counters-how-the-os-monitors-itself_en/" title="">history and inner workings</a> of Windows Performance Counters, now comes the hands-on part. The basis is release 0.4.1, which is all about visualization and data export. New additions: CSV export, a terminal GUI replacing the text-based view, and HTML export via PSWriteHTML. Sounds exciting&#8230; and it is 🙂 I figure you see it the same way, otherwise you wouldn&#8217;t still be reading. 🙂</p>



<h1 class="wp-block-heading" style="margin-top:var(--wp--preset--spacing--60);margin-bottom:var(--wp--preset--spacing--40)">Installation</h1>



<p class="wp-block-paragraph" style="margin-top:var(--wp--preset--spacing--40);margin-bottom:var(--wp--preset--spacing--40)">Installing a PowerShell module, nothing special</p>


<div class="wp-block-syntaxhighlighter-code "><pre class="brush: powershell; title: ; notranslate">
# Install psTerminalPerfcounter
Install-Module psTerminalPerfCounter

# List Cmdlets
Get-Command -Module psTerminalPerfCounter

# Install PSWriteHtml, required for HTML Export
Install-Module PSWriteHtml
</pre></div>


<h1 class="wp-block-heading" style="margin-top:var(--wp--preset--spacing--60);margin-bottom:var(--wp--preset--spacing--40)">Basic Structure, Counter Configs</h1>



<p class="wp-block-paragraph">psTerminalPerfCounter works with configuration files that describe the counter sets and their configuration: counter IDs, instances (whether, for example, all CPU cores or only core 3 and 4 should be monitored), value conversion, units, and the color coding of the graphs via the so-called ColorMap, which however is only supported by the legacy visualization.</p>



<p class="wp-block-paragraph" style="margin-bottom:var(--wp--preset--spacing--50)">Counter configs can be stored in any path and called from there. Alternatively, paths can be registered, which allows calling them simply by the config name. The default path is the config folder within the module itself, which already ships with a few predefined configs.</p>


<div class="wp-block-syntaxhighlighter-code "><pre class="brush: powershell; title: ; notranslate">
# List all registered paths
Get-tpcConfigPaths

# Add custom path
Add-tpcConfigPath -Path &#039;C:\tpcConfig&#039;
</pre></div>


<div style="height:30px" aria-hidden="true" class="wp-block-spacer"></div>



<figure class="wp-block-image size-full"><img decoding="async" width="998" height="271" src="https://dbavonnebenan.de/wp-content/uploads/2026/06/IMG-20260611184010109.png" alt="" class="wp-image-722" srcset="https://dbavonnebenan.de/wp-content/uploads/2026/06/IMG-20260611184010109.png 998w, https://dbavonnebenan.de/wp-content/uploads/2026/06/IMG-20260611184010109-300x81.png 300w, https://dbavonnebenan.de/wp-content/uploads/2026/06/IMG-20260611184010109-768x209.png 768w" sizes="(max-width: 998px) 100vw, 998px" /></figure>



<div style="height:30px" aria-hidden="true" class="wp-block-spacer"></div>


<div class="wp-block-syntaxhighlighter-code "><pre class="brush: powershell; title: ; notranslate">
# List all Counterconfigs and details in all paths
Test-tpcAvailableCounterConfig
</pre></div>


<div style="height:30px" aria-hidden="true" class="wp-block-spacer"></div>



<figure class="wp-block-image size-large"><img decoding="async" width="1024" height="420" src="https://dbavonnebenan.de/wp-content/uploads/2026/06/IMG-20260611184610947-1024x420.png" alt="" class="wp-image-723" srcset="https://dbavonnebenan.de/wp-content/uploads/2026/06/IMG-20260611184610947-1024x420.png 1024w, https://dbavonnebenan.de/wp-content/uploads/2026/06/IMG-20260611184610947-300x123.png 300w, https://dbavonnebenan.de/wp-content/uploads/2026/06/IMG-20260611184610947-768x315.png 768w, https://dbavonnebenan.de/wp-content/uploads/2026/06/IMG-20260611184610947.png 1273w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<h1 class="wp-block-heading" style="margin-top:var(--wp--preset--spacing--60);margin-bottom:var(--wp--preset--spacing--40)">Single Server Monitoring</h1>



<p class="wp-block-paragraph" style="margin-top:0;margin-bottom:var(--wp--preset--spacing--40)">The fastest method is a single server, local or remote.</p>



<div style="height:30px" aria-hidden="true" class="wp-block-spacer"></div>


<div class="wp-block-syntaxhighlighter-code "><pre class="brush: powershell; title: ; notranslate">
# Use CPU Config locally
Start-tpcMonitor -Configname CPU
Start-tpcMonitor -Confipath &#039;C:\Users\labadmin\Documents\PowerShell\Modules\psterminalperfcounter\0.4.0\Config\tpc_CPU.json&#039;

# Use CPU Config remote
Start-tpcMonitor -Computername &#039;dev-node1&#039; -Configname CPU
Start-tpcMonitor -Computername &#039;dev-node1&#039; -Confipath &#039;C:\Users\labadmin\Documents\PowerShell\Modules\psterminalperfcounter\0.4.0\Config\tpc_CPU.json&#039;

# Use CPU Config rmeote with different credentials
Start-tpcMonitor -Computername &#039;dev-node1&#039; -Credentials $(Get-Credential) -Configname CPU
</pre></div>


<div style="height:30px" aria-hidden="true" class="wp-block-spacer"></div>



<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="1022" height="773" src="https://dbavonnebenan.de/wp-content/uploads/2026/06/IMG-20260611185126524.png" alt="" class="wp-image-724" srcset="https://dbavonnebenan.de/wp-content/uploads/2026/06/IMG-20260611185126524.png 1022w, https://dbavonnebenan.de/wp-content/uploads/2026/06/IMG-20260611185126524-300x227.png 300w, https://dbavonnebenan.de/wp-content/uploads/2026/06/IMG-20260611185126524-768x581.png 768w" sizes="auto, (max-width: 1022px) 100vw, 1022px" /></figure>



<p class="wp-block-paragraph" style="margin-top:var(--wp--preset--spacing--40);margin-bottom:var(--wp--preset--spacing--40)">Since the legacy visualization reaches its limits at the latest with multi-server environments, I use the <code>-TUI</code> switch for this hands-on.</p>



<div style="height:30px" aria-hidden="true" class="wp-block-spacer"></div>


<div class="wp-block-syntaxhighlighter-code "><pre class="brush: powershell; title: ; notranslate">
# Use CPU Config locally with TUI
Start-tpcMonitor -Configname CPU -TUI
</pre></div>


<div style="height:30px" aria-hidden="true" class="wp-block-spacer"></div>



<figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="1024" height="562" src="https://dbavonnebenan.de/wp-content/uploads/2026/06/IMG-20260611190144159-1024x562.png" alt="" class="wp-image-725" srcset="https://dbavonnebenan.de/wp-content/uploads/2026/06/IMG-20260611190144159-1024x562.png 1024w, https://dbavonnebenan.de/wp-content/uploads/2026/06/IMG-20260611190144159-300x165.png 300w, https://dbavonnebenan.de/wp-content/uploads/2026/06/IMG-20260611190144159-768x422.png 768w, https://dbavonnebenan.de/wp-content/uploads/2026/06/IMG-20260611190144159.png 1483w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<h1 class="wp-block-heading" style="margin-top:var(--wp--preset--spacing--60);margin-bottom:var(--wp--preset--spacing--40)">Multi Server Monitoring</h1>



<p class="wp-block-paragraph">Multi-server monitoring also works via configuration files, although while writing these lines it occurs to me: why did I never think of simply running a counter config against a server list? Onto the backlog with that. Anyway, in the environment configuration you can define any number of servers with different configs. Since I recently still had trouble making the sparklines in the TUI scrollable, they are disabled in the multi-server view.</p>



<div style="height:30px" aria-hidden="true" class="wp-block-spacer"></div>


<div class="wp-block-syntaxhighlighter-code "><pre class="brush: powershell; title: ; notranslate">
# Start multi server monitoring
Start-tpcEnvironmentMonitor -EnvConfigPath &#039;C:\tpcConfig\ENV_SERVER_EXAMPLE.json&#039; -TUI
</pre></div>


<div style="height:30px" aria-hidden="true" class="wp-block-spacer"></div>



<figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="1024" height="389" src="https://dbavonnebenan.de/wp-content/uploads/2026/06/IMG-20260611191606127-1024x389.png" alt="" class="wp-image-726" srcset="https://dbavonnebenan.de/wp-content/uploads/2026/06/IMG-20260611191606127-1024x389.png 1024w, https://dbavonnebenan.de/wp-content/uploads/2026/06/IMG-20260611191606127-300x114.png 300w, https://dbavonnebenan.de/wp-content/uploads/2026/06/IMG-20260611191606127-768x292.png 768w, https://dbavonnebenan.de/wp-content/uploads/2026/06/IMG-20260611191606127.png 1472w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<p class="wp-block-paragraph"><em>LAB-NODE03 is a German installation in this case</em></p>



<p class="wp-block-paragraph" style="margin-top:var(--wp--preset--spacing--40);margin-bottom:0">The Duration column shows the time the function needed on each server to collect all values. The final timestamp of the entire data set is always defined by the slowest server, as only this way is a homogeneous time series possible. A variance of, in this case, 1.3 seconds cannot be avoided here.</p>



<p class="wp-block-paragraph">That&#8217;s all there is to running it, since this module only provides the framework. The actual life comes with the counter configs. Let&#8217;s now take a look at how these are created.</p>



<h1 class="wp-block-heading" style="margin-top:var(--wp--preset--spacing--60);margin-bottom:var(--wp--preset--spacing--40)">Creating Counter Configs</h1>



<p class="wp-block-paragraph">In the beginning there is the performance counter. Before we can write the configuration, we need the counter IDs instead of the localized names. For that there is <code>Get-tpcPerformanceCounterInfo</code>, which works in both directions: counter path to ID and vice versa.</p>



<div style="height:30px" aria-hidden="true" class="wp-block-spacer"></div>


<div class="wp-block-syntaxhighlighter-code "><pre class="brush: powershell; title: ; notranslate">
# List all counter and counter objects containing &#039;processor time&#039;
Get-tpcPerformanceCounterInfo -ComputerName &#039;dev-node1&#039; -SearchTerm &#039;processor time&#039;
</pre></div>


<div style="height:30px" aria-hidden="true" class="wp-block-spacer"></div>



<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="973" height="297" src="https://dbavonnebenan.de/wp-content/uploads/2026/06/IMG-20260612082832650.png" alt="" class="wp-image-727" srcset="https://dbavonnebenan.de/wp-content/uploads/2026/06/IMG-20260612082832650.png 973w, https://dbavonnebenan.de/wp-content/uploads/2026/06/IMG-20260612082832650-300x92.png 300w, https://dbavonnebenan.de/wp-content/uploads/2026/06/IMG-20260612082832650-768x234.png 768w" sizes="auto, (max-width: 973px) 100vw, 973px" /></figure>



<p class="wp-block-paragraph" style="margin-top:var(--wp--preset--spacing--40);margin-bottom:0">The last two columns are important. There are single-instance counters with only one value, but also multi-instance counters like the Processor counter set, where each instance corresponds to a core, or the total (<code>_Total</code>).</p>



<p class="wp-block-paragraph">In the same way you can use the cmdlet to find out which counter is hidden behind a composite ID.</p>



<div style="height:30px" aria-hidden="true" class="wp-block-spacer"></div>


<div class="wp-block-syntaxhighlighter-code "><pre class="brush: powershell; title: ; notranslate">
# Show counter name of composite ID
Get-tpcPerformanceCounterInfo -ComputerName &#039;dev-node1&#039; -SearchTerm &#039;238-6&#039;
</pre></div>


<div style="height:30px" aria-hidden="true" class="wp-block-spacer"></div>



<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="911" height="105" src="https://dbavonnebenan.de/wp-content/uploads/2026/06/IMG-20260612083119093.png" alt="" class="wp-image-728" srcset="https://dbavonnebenan.de/wp-content/uploads/2026/06/IMG-20260612083119093.png 911w, https://dbavonnebenan.de/wp-content/uploads/2026/06/IMG-20260612083119093-300x35.png 300w, https://dbavonnebenan.de/wp-content/uploads/2026/06/IMG-20260612083119093-768x89.png 768w" sizes="auto, (max-width: 911px) 100vw, 911px" /></figure>



<p class="wp-block-paragraph" style="margin-top:var(--wp--preset--spacing--40);margin-bottom:var(--wp--preset--spacing--40)">Or on a German system</p>



<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="904" height="115" src="https://dbavonnebenan.de/wp-content/uploads/2026/06/IMG-20260612083431840.png" alt="" class="wp-image-729" srcset="https://dbavonnebenan.de/wp-content/uploads/2026/06/IMG-20260612083431840.png 904w, https://dbavonnebenan.de/wp-content/uploads/2026/06/IMG-20260612083431840-300x38.png 300w, https://dbavonnebenan.de/wp-content/uploads/2026/06/IMG-20260612083431840-768x98.png 768w" sizes="auto, (max-width: 904px) 100vw, 904px" /></figure>



<p class="wp-block-paragraph" style="margin-top:var(--wp--preset--spacing--40);margin-bottom:0">Let&#8217;s also take counters that are not present by default on a Windows system: SQL Server. DEV22A in this case is the first instance on the system.</p>



<div style="height:30px" aria-hidden="true" class="wp-block-spacer"></div>


<div class="wp-block-syntaxhighlighter-code "><pre class="brush: powershell; title: ; notranslate">
# &quot;Out-String -Stream&quot; converts PowerShell&#039;s internal formatting objects into actual strings line by 
# line, enabling string operations like `Select-String` to work on them.

Get-tpcPerformanceCounterInfo -ComputerName &#039;dev-node1&#039; -SearchTerm &#039;dev22a&#039; | 
		Out-String -Stream | 
		Select-String &quot;lookup&quot;
</pre></div>


<div style="height:30px" aria-hidden="true" class="wp-block-spacer"></div>



<figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="1024" height="117" src="https://dbavonnebenan.de/wp-content/uploads/2026/06/IMG-20260612081940564-1024x117.png" alt="" class="wp-image-730" srcset="https://dbavonnebenan.de/wp-content/uploads/2026/06/IMG-20260612081940564-1024x117.png 1024w, https://dbavonnebenan.de/wp-content/uploads/2026/06/IMG-20260612081940564-300x34.png 300w, https://dbavonnebenan.de/wp-content/uploads/2026/06/IMG-20260612081940564-768x88.png 768w, https://dbavonnebenan.de/wp-content/uploads/2026/06/IMG-20260612081940564.png 1235w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<p class="wp-block-paragraph" style="margin-top:var(--wp--preset--spacing--40);margin-bottom:0">Let&#8217;s take <code>Page lookups/sec</code> for testing &#8211;&gt; 12222-12272</p>



<div style="height:30px" aria-hidden="true" class="wp-block-spacer"></div>


<div class="wp-block-syntaxhighlighter-code "><pre class="brush: powershell; title: ; notranslate">
Get-tpcPerformanceCounterInfo -ComputerName &#039;dev-node1&#039; -SearchTerm &#039;dev22a&#039; | 
		Out-String -Stream | 
		Select-String &quot;log flushes&quot;
</pre></div>


<div style="height:30px" aria-hidden="true" class="wp-block-spacer"></div>



<figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="1024" height="120" src="https://dbavonnebenan.de/wp-content/uploads/2026/06/IMG-20260612082340599-1024x120.png" alt="" class="wp-image-731" srcset="https://dbavonnebenan.de/wp-content/uploads/2026/06/IMG-20260612082340599-1024x120.png 1024w, https://dbavonnebenan.de/wp-content/uploads/2026/06/IMG-20260612082340599-300x35.png 300w, https://dbavonnebenan.de/wp-content/uploads/2026/06/IMG-20260612082340599-768x90.png 768w, https://dbavonnebenan.de/wp-content/uploads/2026/06/IMG-20260612082340599.png 1471w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<p class="wp-block-paragraph" style="margin-top:var(--wp--preset--spacing--40);margin-bottom:var(--wp--preset--spacing--40)">And <code>log flush/sec</code> on the TempDB instance &#8211;&gt; 12352-12446</p>



<p class="wp-block-paragraph">The minimal config then looks like this. Some values are missing for the SQL Server counters, but that is not SQL Server specific, it shows that most fields receive defaults. Details on this can be found in the docs in the repo. Also worth mentioning: for CPU I use <code>"counterInstance": "1|2"</code>, which automatically creates two counters, and for the page lookups the conversion by 1000 so that the numbers stay readable.\</p>



<div style="height:30px" aria-hidden="true" class="wp-block-spacer"></div>


<div class="wp-block-syntaxhighlighter-code "><pre class="brush: plain; title: ; notranslate">
{
	&quot;name&quot;: &quot;CPU and Sql Server Page Usage&quot;,
	&quot;description&quot;: &quot;CPU Usage&quot;,
	&quot;counters&quot;: &#x5B;
		{
			&quot;title&quot;: &quot;CPU Usage&quot;,
			&quot;unit&quot;: &quot;%&quot;,
			&quot;conversionFactor&quot;: 1,
			&quot;conversionExponent&quot;: 1,
			&quot;conversionType&quot;: &quot;D&quot;,
			&quot;format&quot;: &quot;table&quot;,
			&quot;counterID&quot;: &quot;238-6&quot;,
			&quot;counterSetType&quot;: &quot;MultiInstance&quot;,
			&quot;counterInstance&quot;: &quot;0|1&quot;,
			&quot;colorMap&quot;: {
				&quot;20&quot;: &quot;Green&quot;,
				&quot;50&quot;: &quot;Yellow&quot;,
				&quot;70&quot;: &quot;RED&quot;
			}
		},
		{
			&quot;title&quot;: &quot;Sql DEV22A Page Lookups/s&quot;,
			&quot;unit&quot;: &quot;#K&quot;,
			&quot;conversionFactor&quot;: 1000,
			&quot;conversionExponent&quot;: 1,
			&quot;conversionType&quot;: &quot;D&quot;,
			&quot;counterID&quot;: &quot;12222-12272&quot;,
			&quot;counterSetType&quot;: &quot;SingleInstance&quot;,
			&quot;counterInstance&quot;: &quot;&quot;
		},
		{
			&quot;title&quot;: &quot;Sql DEV22A TempDB Log Flushes/s&quot;,
			&quot;unit&quot;: &quot;#&quot;,
			&quot;counterID&quot;: &quot;12352-12446&quot;,
			&quot;counterSetType&quot;: &quot;MultiInstance&quot;,
			&quot;counterInstance&quot;: &quot;tempdb&quot;
		}

	]
}
</pre></div>


<div style="height:30px" aria-hidden="true" class="wp-block-spacer"></div>



<p class="wp-block-paragraph" style="margin-top:0;margin-bottom:var(--wp--preset--spacing--40)">Then save the whole thing in a registered path with the prefix <code>tpc_NAME.json</code> and off we go.</p>



<figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="1024" height="404" src="https://dbavonnebenan.de/wp-content/uploads/2026/06/IMG-20260612090849880-1024x404.png" alt="" class="wp-image-732" srcset="https://dbavonnebenan.de/wp-content/uploads/2026/06/IMG-20260612090849880-1024x404.png 1024w, https://dbavonnebenan.de/wp-content/uploads/2026/06/IMG-20260612090849880-300x118.png 300w, https://dbavonnebenan.de/wp-content/uploads/2026/06/IMG-20260612090849880-768x303.png 768w, https://dbavonnebenan.de/wp-content/uploads/2026/06/IMG-20260612090849880-1536x605.png 1536w, https://dbavonnebenan.de/wp-content/uploads/2026/06/IMG-20260612090849880.png 1713w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<h1 class="wp-block-heading" style="margin-top:var(--wp--preset--spacing--60);margin-bottom:var(--wp--preset--spacing--40)">Monitoring an Environment with an Environment File</h1>



<p class="wp-block-paragraph">No magic here either. Config names or paths can be specified. A function that is not yet fully documented is the use of SecretVaults: via the PowerShell connectors, credentials can be loaded from almost all common solutions, which also gives non-admins the ability to monitor systems.</p>



<div style="height:30px" aria-hidden="true" class="wp-block-spacer"></div>


<div class="wp-block-syntaxhighlighter-code "><pre class="brush: plain; title: ; notranslate">
&#x5B;
    {
        &quot;name&quot;: &quot;SQL_ENVIRONMENT_001&quot;,
        &quot;description&quot;: &quot;SQL Server Environment Production&quot;,
        &quot;interval&quot;: 2,
        &quot;secretvaultname&quot;: &quot;SecretStore&quot;,
        &quot;credentialname&quot;: &quot;integrated&quot;,
        &quot;servers&quot;: &#x5B;
            {
                &quot;computername&quot;: &quot;DEV-NODE1&quot;,
                &quot;comment&quot;: &quot;Sql Server Node A Production&quot;,
                &quot;counterConfig&quot;: &#x5B;
                    &quot;SQLDEMO&quot;
                ]
            },
            {
                &quot;computername&quot;: &quot;DEV-NODE2&quot;,
                &quot;comment&quot;: &quot;Sql Server Node B Production&quot;,
                &quot;counterConfig&quot;: &#x5B;
                    &quot;C:\Users\devadmin\Desktop\tpc_SQLDEMO.json&quot;
                ]
            }
        ]
    }
]
</pre></div>


<div style="height:30px" aria-hidden="true" class="wp-block-spacer"></div>


<div class="wp-block-syntaxhighlighter-code "><pre class="brush: powershell; title: ; notranslate">
# without TUI
Start-tpcEnvironmentMonitor -EnvConfigPath &quot;C:\Users\devadmin\Desktop\ENV_SERVER_EXAMPLE2.json&quot;
</pre></div>


<div style="height:30px" aria-hidden="true" class="wp-block-spacer"></div>



<figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="1024" height="277" src="https://dbavonnebenan.de/wp-content/uploads/2026/06/IMG-20260612092052078-1024x277.png" alt="" class="wp-image-733" srcset="https://dbavonnebenan.de/wp-content/uploads/2026/06/IMG-20260612092052078-1024x277.png 1024w, https://dbavonnebenan.de/wp-content/uploads/2026/06/IMG-20260612092052078-300x81.png 300w, https://dbavonnebenan.de/wp-content/uploads/2026/06/IMG-20260612092052078-768x208.png 768w, https://dbavonnebenan.de/wp-content/uploads/2026/06/IMG-20260612092052078.png 1442w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<h1 class="wp-block-heading" style="margin-top:var(--wp--preset--spacing--60);margin-bottom:var(--wp--preset--spacing--40)">Data Export</h1>



<h2 class="wp-block-heading" style="margin-top:var(--wp--preset--spacing--60);margin-bottom:var(--wp--preset--spacing--40)">CSV</h2>



<figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="1024" height="299" src="https://dbavonnebenan.de/wp-content/uploads/2026/06/IMG-20260612092726885-1024x299.png" alt="" class="wp-image-734" srcset="https://dbavonnebenan.de/wp-content/uploads/2026/06/IMG-20260612092726885-1024x299.png 1024w, https://dbavonnebenan.de/wp-content/uploads/2026/06/IMG-20260612092726885-300x88.png 300w, https://dbavonnebenan.de/wp-content/uploads/2026/06/IMG-20260612092726885-768x224.png 768w, https://dbavonnebenan.de/wp-content/uploads/2026/06/IMG-20260612092726885.png 1129w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<p class="wp-block-paragraph" style="margin-top:var(--wp--preset--spacing--40);margin-bottom:var(--wp--preset--spacing--40)">To reuse the time series, you can export to CSV. Caution, currently still a known bug: the export is comma-separated, so values containing a comma get split as well, fixed in 0.4.1.</p>



<div style="height:30px" aria-hidden="true" class="wp-block-spacer"></div>


<div class="wp-block-syntaxhighlighter-code "><pre class="brush: powershell; title: ; notranslate">
# -CsvPath is default desktop
	Start-tpcEnvironmentMonitor -EnvConfigPath &quot;C:\Users\devadmin\Desktop\ENV_SERVER_EXAMPLE2.json&quot; -ExportCsv
</pre></div>


<div style="height:30px" aria-hidden="true" class="wp-block-spacer"></div>



<h1 class="wp-block-heading" style="margin-top:var(--wp--preset--spacing--60);margin-bottom:var(--wp--preset--spacing--40)">HTML Report</h1>



<p class="wp-block-paragraph">An alternative visualization as HTML, useful when I want to pass on a time series without bothering with Excel or other tools. Grouping can be done by counter or by server, depending on whether, with multiple servers, I want to see all counters of one server in a single chart, or one specific counter across multiple servers. Details on this can be found in the docs in the repo.</p>



<p class="wp-block-paragraph">To note: the HTML contains a rolling data set bound to the maximum number of samples. The more samples, the more sluggish the HTML becomes. For large time series, better use CSV.</p>



<div style="height:30px" aria-hidden="true" class="wp-block-spacer"></div>


<div class="wp-block-syntaxhighlighter-code "><pre class="brush: powershell; title: ; notranslate">
# -HTMLPath is default desktop
	Start-tpcEnvironmentMonitor -EnvConfigPath &quot;C:\Users\devadmin\Desktop\ENV_SERVER_EXAMPLE2.json&quot; -ExportHTML
</pre></div>


<div style="height:30px" aria-hidden="true" class="wp-block-spacer"></div>



<figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="1024" height="339" src="https://dbavonnebenan.de/wp-content/uploads/2026/06/IMG-20260612093443448-1024x339.png" alt="" class="wp-image-735" srcset="https://dbavonnebenan.de/wp-content/uploads/2026/06/IMG-20260612093443448-1024x339.png 1024w, https://dbavonnebenan.de/wp-content/uploads/2026/06/IMG-20260612093443448-300x99.png 300w, https://dbavonnebenan.de/wp-content/uploads/2026/06/IMG-20260612093443448-768x254.png 768w, https://dbavonnebenan.de/wp-content/uploads/2026/06/IMG-20260612093443448-1536x508.png 1536w, https://dbavonnebenan.de/wp-content/uploads/2026/06/IMG-20260612093443448-2048x678.png 2048w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<div style="height:30px" aria-hidden="true" class="wp-block-spacer"></div>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-461897f4 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-vertically-aligned-center is-layout-flow wp-container-core-column-is-layout-cc415327 wp-block-column-is-layout-flow" style="flex-basis:20%">
<figure class="wp-block-image size-full is-resized"><img loading="lazy" decoding="async" width="295" height="294" src="https://dbavonnebenan.de/wp-content/uploads/2025/04/2025-04-21_16-19.png" alt="" class="wp-image-113" style="width:157px;height:auto" srcset="https://dbavonnebenan.de/wp-content/uploads/2025/04/2025-04-21_16-19.png 295w, https://dbavonnebenan.de/wp-content/uploads/2025/04/2025-04-21_16-19-150x150.png 150w" sizes="auto, (max-width: 295px) 100vw, 295px" /></figure>
</div>



<div class="wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:66.66%">
<p class="wp-block-paragraph">That&#8217;s it as a quick start, more details on the individual functions can be found, as always, in the docs and the <a href="https://github.com/gabrielkoehl/psTerminalPerfCounter/blob/main/README.md" title="">README </a>in the repository.</p>
</div>
</div><p>The post <a href="https://dbavonnebenan.de/psterminalperfcounter-counter-in-terminal-handson_en/">psTerminalPerfCounter – Performance Counter in Terminal – HowTo</a> first appeared on <a href="https://dbavonnebenan.de">DBA von Nebenan</a>.</p>]]></content:encoded>
					
					<wfw:commentRss>https://dbavonnebenan.de/psterminalperfcounter-counter-in-terminal-handson_en/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Windows Performance Counters: How the OS Monitors Itself</title>
		<link>https://dbavonnebenan.de/windows-performance-counters-how-the-os-monitors-itself_en/</link>
					<comments>https://dbavonnebenan.de/windows-performance-counters-how-the-os-monitors-itself_en/#respond</comments>
		
		<dc:creator><![CDATA[Gabriel]]></dc:creator>
		<pubDate>Sun, 14 Jun 2026 20:01:15 +0000</pubDate>
				<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[counter]]></category>
		<category><![CDATA[eng]]></category>
		<category><![CDATA[PERFORMANCE]]></category>
		<category><![CDATA[TERMINAL]]></category>
		<guid isPermaLink="false">https://dbavonnebenan.de/?p=711</guid>

					<description><![CDATA[<p>Performance counters have been an integral part of the operating system since Windows NT 3.1. In this article I briefly explain how the system works internally, why counter names are language-dependent and how my PowerShell module psTerminalPerfCounter solves exactly that problem.</p>
<p>The post <a href="https://dbavonnebenan.de/windows-performance-counters-how-the-os-monitors-itself_en/">Windows Performance Counters: How the OS Monitors Itself</a> first appeared on <a href="https://dbavonnebenan.de">DBA von Nebenan</a>.</p>]]></description>
										<content:encoded><![CDATA[<h1 class="wp-block-heading" style="margin-bottom:var(--wp--preset--spacing--40)">Intro</h1>



<div class="wp-block-columns are-vertically-aligned-center is-layout-flex wp-container-core-columns-is-layout-461897f4 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:50px">
<figure class="wp-block-image size-full is-resized"><img loading="lazy" decoding="async" width="294" height="288" src="https://dbavonnebenan.de/wp-content/uploads/2026/06/GitHub_Invertocat_Black.png" alt="Solid black square placeholder with no visible content." class="wp-image-720" style="aspect-ratio:1.0208344636753297;width:51px;height:auto"/></figure>
</div>



<div class="wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow">
<p class="wp-block-paragraph" style="margin-top:var(--wp--preset--spacing--60);margin-bottom:var(--wp--preset--spacing--60)"><strong><a href="https://github.com/gabrielkoehl/psTerminalPerfCounter" target="_blank" rel="noopener" title="">psTerminalPerfCounter</a></strong></p>
</div>
</div>



<p class="wp-block-paragraph" style="margin-bottom:var(--wp--preset--spacing--50)">It has been almost a year now since I started developing psTerminalPerfCounter. Proud of the &#8222;graphical&#8220; implementation, language independence via a 3rd-party lib and the holy grail of the time: classes in PowerShell.</p>



<p class="wp-block-paragraph" style="margin-top:var(--wp--preset--spacing--50);margin-bottom:var(--wp--preset--spacing--40)">None of it survived:</p>



<ul class="wp-block-list">
<li>Graphical implementation? Nice and colorful, but&#8230;
<ul class="wp-block-list">
<li>Sluggish as a rock in multi-server environments</li>



<li>Dynamic and scalable? Nope</li>



<li>Reimplemented as a TUI (BETA)<br></li>
</ul>
</li>



<li>Multi-language via 3rd-party lib
<ul class="wp-block-list">
<li>Turns out it all works directly through the Windows registry, stumbled across it by accident<br></li>
</ul>
</li>



<li>Classes in PowerShell? Very bad decision.
<ul class="wp-block-list">
<li>Not practical, instances aren&#8217;t easily serializable, methods get lost, parallel remoting with runspaces barely doable</li>



<li>Rebuild in C#</li>
</ul>
</li>
</ul>



<p class="wp-block-paragraph" style="margin-top:var(--wp--preset--spacing--40);margin-bottom:var(--wp--preset--spacing--50)">With the current release 0.4.1, all the features I had in my backlog are implemented for now. Since I will be lacking the time for this project over the next few months, this is a good moment to write a HowTo, because the README.md in the repo can be a bit challenging at times&#8230; as it seems 🙂 But before we get to the <a href="/psterminalperfcounter-counter-in-terminal-handson_en" title="">hands-on</a>, let&#8217;s first talk a little about the technology and history of performance counters.</p>



<h1 class="wp-block-heading" style="margin-top:var(--wp--preset--spacing--60);margin-bottom:var(--wp--preset--spacing--40)">History</h1>



<p class="wp-block-paragraph">Windows performance counters have been around since <strong>NT 3.1 (1993)</strong>, back then I didn&#8217;t even own a computer. At the time, Microsoft needed a standardized way to expose system states without every application having to implement its own monitoring mechanisms. But that also meant scraping measurement values out of the registry and calculating deltas yourself.</p>



<p class="wp-block-paragraph">Windows 2000 added the <em>Performance Data Helper</em> (PDH) as a convenient high-level API, which shaped access to performance counters the way we know it today. At the same time, WMI was introduced, making performance data accessible through an object-oriented interface. CIM just wasn&#8217;t proprietary enough and a bit too compatible 😛</p>



<p class="wp-block-paragraph"><strong>Windows Vista</strong> brought the revised <strong>Provider V2 model</strong>: instead of a DLL that was loaded by the system into a foreign process (error-prone, provider crash = crash of the querying process), providers now register as standalone executables or services. That is the model still in use today.</p>



<h1 class="wp-block-heading" style="margin-top:var(--wp--preset--spacing--60);margin-bottom:var(--wp--preset--spacing--40)">Structure and Function</h1>



<figure class="wp-block-image aligncenter size-full is-resized" style="margin-top:var(--wp--preset--spacing--60);margin-bottom:var(--wp--preset--spacing--60)"><img loading="lazy" decoding="async" width="1241" height="825" src="https://dbavonnebenan.de/wp-content/uploads/2026/06/Screenshot_20260611_102741.png" alt="Diagram of the Applications &amp; Tools stack: PDH and WMI/Perflib feed into Registry, then Performance Counter Provider, then Kernel &amp; Drivers and Usermode Processes." class="wp-image-694" style="width:676px;height:auto" srcset="https://dbavonnebenan.de/wp-content/uploads/2026/06/Screenshot_20260611_102741.png 1241w, https://dbavonnebenan.de/wp-content/uploads/2026/06/Screenshot_20260611_102741-300x199.png 300w, https://dbavonnebenan.de/wp-content/uploads/2026/06/Screenshot_20260611_102741-1024x681.png 1024w, https://dbavonnebenan.de/wp-content/uploads/2026/06/Screenshot_20260611_102741-768x511.png 768w" sizes="auto, (max-width: 1241px) 100vw, 1241px" /></figure>



<h2 class="wp-block-heading" style="margin-top:var(--wp--preset--spacing--60);margin-bottom:var(--wp--preset--spacing--40)">Metadata in the registry</h2>



<p class="wp-block-paragraph" style="margin-bottom:var(--wp--preset--spacing--40)">All known counters are registered under <code>HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Perflib</code>. That&#8217;s where the name, description and a numeric index number per counter live, separated by language (subkey <code>009</code> for English, <code>007</code> for German, etc.). </p>



<div style="height:30px" aria-hidden="true" class="wp-block-spacer"></div>


<div class="wp-block-syntaxhighlighter-code "><pre class="brush: powershell; title: ; notranslate">
# List available language packs (counter IDs)
Get-ChildItem &quot;HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Perflib&quot;
</pre></div>


<div style="height:30px" aria-hidden="true" class="wp-block-spacer"></div>



<figure class="wp-block-image size-full" style="margin-top:var(--wp--preset--spacing--40);margin-bottom:0"><img loading="lazy" decoding="async" width="1012" height="441" src="https://dbavonnebenan.de/wp-content/uploads/2026/06/IMG-20260611100323632.png" alt="Registry view of Perflib under HKEY_LOCAL_MACHINE showing entries like 009 and _V2Providers with Counter/Help text for Windows performance counters in a dark UI." class="wp-image-690" srcset="https://dbavonnebenan.de/wp-content/uploads/2026/06/IMG-20260611100323632.png 1012w, https://dbavonnebenan.de/wp-content/uploads/2026/06/IMG-20260611100323632-300x131.png 300w, https://dbavonnebenan.de/wp-content/uploads/2026/06/IMG-20260611100323632-768x335.png 768w" sizes="auto, (max-width: 1012px) 100vw, 1012px" /></figure>



<h2 class="wp-block-heading" style="margin-top:var(--wp--preset--spacing--60);margin-bottom:var(--wp--preset--spacing--40)">Providers deliver the raw data</h2>



<p class="wp-block-paragraph" style="margin-bottom:var(--wp--preset--spacing--40)">Every component (kernel, drivers, services like IIS or SQL Server, the .NET runtime) can register its own counters. The provider waits passively and only delivers data once someone queries it. There is no permanent collection service running in the background.</p>



<div style="height:30px" aria-hidden="true" class="wp-block-spacer"></div>


<div class="wp-block-syntaxhighlighter-code "><pre class="brush: powershell; title: ; notranslate">
# List all services that have a Performance subkey

Get-ChildItem &quot;HKLM:\SYSTEM\CurrentControlSet\Services&quot; |
    Where-Object { Test-Path &quot;$($_.PSPath)\Performance&quot; } |
    ForEach-Object {
        $perf = Get-ItemProperty &quot;$($_.PSPath)\Performance&quot;
        &#x5B;PSCustomObject]@{
            Service      = $_.PSChildName
            FirstCounter = $perf.&#039;First Counter&#039;
            LastCounter  = $perf.&#039;Last Counter&#039;
            Library      = $perf.Library
        }
    } | Format-Table -AutoSize
</pre></div>


<div style="height:30px" aria-hidden="true" class="wp-block-spacer"></div>



<figure class="wp-block-image aligncenter size-full" style="margin-top:var(--wp--preset--spacing--40);margin-bottom:var(--wp--preset--spacing--40)"><img loading="lazy" decoding="async" width="1229" height="650" src="https://dbavonnebenan.de/wp-content/uploads/2026/06/IMG-20260611100323687.png" alt="Console output listing Windows services with counters and DLL paths (names like .NET CLR Data, IIS, SQL Server) and their FirstCounter/LastCounter values." class="wp-image-691" srcset="https://dbavonnebenan.de/wp-content/uploads/2026/06/IMG-20260611100323687.png 1229w, https://dbavonnebenan.de/wp-content/uploads/2026/06/IMG-20260611100323687-300x159.png 300w, https://dbavonnebenan.de/wp-content/uploads/2026/06/IMG-20260611100323687-1024x542.png 1024w, https://dbavonnebenan.de/wp-content/uploads/2026/06/IMG-20260611100323687-768x406.png 768w" sizes="auto, (max-width: 1229px) 100vw, 1229px" /></figure>



<h2 class="wp-block-heading" style="margin-top:var(--wp--preset--spacing--60);margin-bottom:var(--wp--preset--spacing--40)">APIs for applications (CONSUMER)</h2>



<ul class="wp-block-list">
<li><strong>PDH</strong> (Performance Data Helper): The convenient API that returns values already formatted (e.g. percentages calculated, intervals taken into account). <code>Get-Counter</code> in PowerShell uses PDH.</li>



<li style="margin-top:0;margin-bottom:0"><strong>PerfLib / registry directly</strong>: Faster, but raw. WMI uses this path internally.</li>
</ul>



<p class="wp-block-paragraph" style="margin-top:var(--wp--preset--spacing--40)"><strong>Structure</strong></p>



<p class="wp-block-paragraph">   \Processor(_Total)\% Processor Time<br>   └─ Object: &#8222;Processor&#8220;<br>   └─ Instance: &#8222;_Total&#8220; (sum of all cores)<br>   └─ Counter: &#8222;% Processor Time&#8220;</p>



<h1 class="wp-block-heading" style="margin-top:var(--wp--preset--spacing--60);margin-bottom:var(--wp--preset--spacing--40)">Microsoft&#8217;s Tools</h1>



<h2 class="wp-block-heading" style="margin-top:var(--wp--preset--spacing--60);margin-bottom:var(--wp--preset--spacing--40)">The grandfather: PerfMon</h2>



<p class="wp-block-paragraph">The Performance Monitor has been Microsoft&#8217;s official tool since the NT days and, for what it was built for, it is still excellent: interactive, graphical deep-dive analysis of individual systems, with recording via Data Collector Sets, CSV export via <code>relog</code> and basic remoting. The limits show up the moment you want to scale, automate or simply work in the terminal. Portable configuration files, keeping an eye on multiple servers at once or a structured console workflow are not its strengths.</p>



<h2 class="wp-block-heading" style="margin-top:var(--wp--preset--spacing--60);margin-bottom:var(--wp--preset--spacing--40)">The newcomer: Windows Admin Center</h2>



<p class="wp-block-paragraph">Microsoft&#8217;s browser-based management interface also comes with a performance view, cleaner than Perfmon and without a local installation on the managed system. For a quick look at CPU, memory and network that&#8217;s perfectly fine. Two things limit its practical value though: first, WAC requires a central installation, just quickly firing it up on a client or at a customer&#8217;s site isn&#8217;t an option. Second, the counter selection is based, as everywhere, on the localized PDH API, which makes workspaces not really portable.</p>



<h2 class="wp-block-heading" style="margin-top:var(--wp--preset--spacing--60);margin-bottom:var(--wp--preset--spacing--40)">The evergreen: Get-Counter</h2>



<p class="wp-block-paragraph" style="margin-top:var(--wp--preset--spacing--40);margin-bottom:var(--wp--preset--spacing--40)"><code>Get-Counter</code> is the PowerShell equivalent for console use and therefore the most flexible of the three tools, as long as you&#8217;re <del>up for some fiddling</del> willing to get your hands dirty. Counters can be queried directly, repeated in a loop and sent down the pipeline. Remoting works via the <code>-ComputerName</code> parameter. The problem is the same as everywhere: the counter paths are language-dependent, a script written on a German system fails on an English one. On top of that, <code>Get-Counter</code> returns raw data. Formatting, thresholds, history visualization and structured output are entirely manual work. For one-off queries and quick checks it&#8217;s ideal, for reproducible, multi-language environments it quickly hits its limits.</p>



<div style="height:30px" aria-hidden="true" class="wp-block-spacer"></div>


<div class="wp-block-syntaxhighlighter-code "><pre class="brush: powershell; title: ; notranslate">
# Query CPU, memory and disk counters every 5 seconds, format output as table
$counters = @(
    &#039;\Processor(_Total)\% Processor Time&#039;,
    &#039;\Memory\Available MBytes&#039;,
    &#039;\PhysicalDisk(_Total)\Disk Bytes/sec&#039;
)

# German Counternames
# $counters = @( 
#	&#039;\Processor(_Total)\% Processor Time&#039;, 
#	&#039;\Memory\Available MBytes&#039;, 
#	&#039;\PhysicalDisk(_Total)\Disk Bytes/sec&#039; 
# )

Get-Counter -Counter $counters -SampleInterval 5 -Continuous | ForEach-Object {
    $sample = $_.CounterSamples

    &#x5B;PSCustomObject]@{
        Timestamp       = $_.Timestamp
        &#039;CPU %&#039;         = &#x5B;math]::Round(($sample | Where-Object Path -like &#039;*processor*&#039;).CookedValue, 1)
        &#039;RAM frei (MB)&#039; = &#x5B;math]::Round(($sample | Where-Object Path -like &#039;*available*&#039;).CookedValue, 0)
        &#039;Disk B/s&#039;      = &#x5B;math]::Round(($sample | Where-Object Path -like &#039;*disk bytes*&#039;).CookedValue, 0)
    } | Format-Table -AutoSize
}
</pre></div>


<div style="height:30px" aria-hidden="true" class="wp-block-spacer"></div>



<figure class="wp-block-image aligncenter size-full" style="margin-top:var(--wp--preset--spacing--40);margin-bottom:var(--wp--preset--spacing--40)"><img loading="lazy" decoding="async" width="604" height="546" src="https://dbavonnebenan.de/wp-content/uploads/2026/06/IMG-20260611100323778.png" alt="Series of monitor entries showing time stamps, CPU usage percentages, free RAM (MB), and disk throughput (B/s) across samples." class="wp-image-692" srcset="https://dbavonnebenan.de/wp-content/uploads/2026/06/IMG-20260611100323778.png 604w, https://dbavonnebenan.de/wp-content/uploads/2026/06/IMG-20260611100323778-300x271.png 300w" sizes="auto, (max-width: 604px) 100vw, 604px" /></figure>



<h1 class="wp-block-heading" style="margin-top:var(--wp--preset--spacing--60);margin-bottom:var(--wp--preset--spacing--40)">The path to language independence</h1>



<p class="wp-block-paragraph" style="margin-top:var(--wp--preset--spacing--40);margin-bottom:var(--wp--preset--spacing--40)">As you can see, language dependence is a big problem across all implementations. And it&#8217;s not even necessary. Under the hood, every counter object and every counter has a unique ID. Take a look at the screenshots above, there&#8217;s always a First and Last Counter. So <code>\Processor(_Total)\Processor Time (%)</code> &#8211;&gt; <code>\238(_Total)\6</code> .</p>



<div style="height:30px" aria-hidden="true" class="wp-block-spacer"></div>


<div class="wp-block-syntaxhighlighter-code "><pre class="brush: powershell; title: ; notranslate">
# Read counter ID/name mapping from registry (English - key 009, German - key 007)
Get-ItemProperty -Path &#039;HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Perflib\009&#039; -Name Counter |
		Select-Object -ExpandProperty Counter | Select-Object -First 20
</pre></div>


<div style="height:30px" aria-hidden="true" class="wp-block-spacer"></div>



<figure class="wp-block-image aligncenter size-full" style="margin-top:var(--wp--preset--spacing--40);margin-bottom:var(--wp--preset--spacing--40)"><img loading="lazy" decoding="async" width="658" height="498" src="https://dbavonnebenan.de/wp-content/uploads/2026/06/IMG-20260611100323832.png" alt="Side-by-side terminal screenshots showing performance metrics in English (left) and German (right). Left window lists System, Memory, % Processor Time, File Read/Write Operations/sec, File Control Operations/sec, File Read Bytes/sec, File Write Bytes/sec, and a path; right window shows equivalent German terms like Arbeitsspeicher, Prozessorzeit, Lesevorgänge/s, Schreibvorgänge/s, Dateisteuerungen/s, Bytes gelesen/s, Bytes geschrieben/s, etc." class="wp-image-693" srcset="https://dbavonnebenan.de/wp-content/uploads/2026/06/IMG-20260611100323832.png 658w, https://dbavonnebenan.de/wp-content/uploads/2026/06/IMG-20260611100323832-300x227.png 300w" sizes="auto, (max-width: 658px) 100vw, 658px" /></figure>



<p class="wp-block-paragraph" style="margin-top:var(--wp--preset--spacing--40);margin-bottom:var(--wp--preset--spacing--70)">That&#8217;s it. The counter object and the path just need to be translated once and I&#8217;ve got my language-independent counter path. Before execution it gets translated on the target system and then <code>Get-Counter -Counter &lt;TRANSLATION&gt;</code> is run. In psTerminalPerfCounter this is handled by the cmdlet <a href="https://github.com/gabrielkoehl/psTerminalPerfCounter/blob/main/src/psTerminalPerfCounter/psTerminalPerfCounter/Public/Get-tpcPerformanceCounterInfo.ps1" target="_blank" rel="noreferrer noopener"><strong>get-tpcPerformanceCounterInfo</strong></a></p>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-461897f4 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-vertically-aligned-center is-layout-flow wp-container-core-column-is-layout-cc415327 wp-block-column-is-layout-flow" style="flex-basis:20%">
<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="284" height="334" src="https://dbavonnebenan.de/wp-content/uploads/2025/05/emotes_3.png" alt="" class="wp-image-355" srcset="https://dbavonnebenan.de/wp-content/uploads/2025/05/emotes_3.png 284w, https://dbavonnebenan.de/wp-content/uploads/2025/05/emotes_3-255x300.png 255w" sizes="auto, (max-width: 284px) 100vw, 284px" /></figure>
</div>



<div class="wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:66.66%">https://dbavonnebenan.de/psterminalperfcounter-counter-in-terminal-handson_en/</div>
</div><p>The post <a href="https://dbavonnebenan.de/windows-performance-counters-how-the-os-monitors-itself_en/">Windows Performance Counters: How the OS Monitors Itself</a> first appeared on <a href="https://dbavonnebenan.de">DBA von Nebenan</a>.</p>]]></content:encoded>
					
					<wfw:commentRss>https://dbavonnebenan.de/windows-performance-counters-how-the-os-monitors-itself_en/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Automate SQL Server HA: AD, SPN, and Cluster Setup</title>
		<link>https://dbavonnebenan.de/automate-sql-server-ha-ad-spn-and-cluster-setup_en/</link>
					<comments>https://dbavonnebenan.de/automate-sql-server-ha-ad-spn-and-cluster-setup_en/#respond</comments>
		
		<dc:creator><![CDATA[Gabriel]]></dc:creator>
		<pubDate>Fri, 06 Feb 2026 11:47:28 +0000</pubDate>
				<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[Sql Server]]></category>
		<category><![CDATA[AD]]></category>
		<category><![CDATA[AlwaysOn]]></category>
		<category><![CDATA[Deployment]]></category>
		<category><![CDATA[eng]]></category>
		<category><![CDATA[GMSA]]></category>
		<category><![CDATA[SPN]]></category>
		<category><![CDATA[WSFC]]></category>
		<guid isPermaLink="false">https://dbavonnebenan.de/?p=669</guid>

					<description><![CDATA[<p>Production-Ready Windows Cluster Deployment: Automation of Failover Cluster, gMSA, Kerberos and local rights via PowerShell.</p>
<p>The post <a href="https://dbavonnebenan.de/automate-sql-server-ha-ad-spn-and-cluster-setup_en/">Automate SQL Server HA: AD, SPN, and Cluster Setup</a> first appeared on <a href="https://dbavonnebenan.de">DBA von Nebenan</a>.</p>]]></description>
										<content:encoded><![CDATA[<div style="border: 1px dotted #eb2b14;border-radius: 6px;background-color: #eeeeee;padding-top: var(--wp--preset--spacing--30);padding-left: var(--wp--preset--spacing--30);padding-right: var(--wp--preset--spacing--30);padding-bottom: var(--wp--preset--spacing--30)" class="ub-styled-box ub-bordered-box wp-block-ub-styled-box" id="ub-styled-box-11670a24-effc-43d1-9b6f-f1421b3d4c12">
<p class="has-open-sauce-sans-font-family wp-block-paragraph" style="margin-top:0;margin-right:0;margin-bottom:0;margin-left:0" id="ub-styled-box-bordered-content-">What awaits you here?</p>



<ul style="margin-top:0;margin-right:0;margin-bottom:0;margin-left:0" class="wp-block-list has-open-sauce-sans-font-family">
<li><a href="#WSFC" title="">Windows Server Failover Cluster Deployment with Extended AD and DNS Permissions</a></li>



<li><a href="#GMSA" title="">Identity Management: Group Managed Service Accounts (gMSA)</a></li>



<li><a href="#KERBEROS" title="">Kerberos and Service Principal Names (SPN)</a></li>



<li><a href="#LSP" title="">Local Security Policies</a></li>



<li>Background knowledge on why configurations are done the way they are</li>
</ul>


</div>


<div style="height:20px" aria-hidden="true" class="wp-block-spacer"></div>


https://github.com/gabrielkoehl/DBAScriptBox


<div style="height:20px" aria-hidden="true" class="wp-block-spacer"></div>



<h2 class="wp-block-heading" id="0-intro" style="margin-top:var(--wp--preset--spacing--50);margin-bottom:var(--wp--preset--spacing--50)">Intro</h2>



<p class="wp-block-paragraph">Who hasn&#8217;t been there? Before you can even start installing SQL Server, you&#8217;ve either repetitively clicked through pages of bad GUIs or, if available, juggled a loose collection of scripts to semi-automatically set up all dependencies and best practices.</p>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-461897f4 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:90%">
<p class="wp-block-paragraph">Even worse is the case when, as a consultant, you don&#8217;t have Domain Admin access (which is how it should be) and you have to guide the customer — who may have never done this before — via Teams &amp; Co. If this isn&#8217;t already a planned installation with knowledge transfer, something like this creates pain. <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f92d.png" alt="🤭" class="wp-smiley" style="height: 1em; max-height: 1em;" /></p>
</div>



<div class="wp-block-column is-vertically-aligned-top is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:10%">
<figure class="wp-block-image aligncenter size-full is-resized"><img loading="lazy" decoding="async" width="264" height="329" src="https://dbavonnebenan.de/wp-content/uploads/2025/06/emote-4.png" alt="PAIN Emote" class="wp-image-516" style="aspect-ratio:0.8024665981500514;width:65px;height:auto" srcset="https://dbavonnebenan.de/wp-content/uploads/2025/06/emote-4.png 264w, https://dbavonnebenan.de/wp-content/uploads/2025/06/emote-4-241x300.png 241w" sizes="auto, (max-width: 264px) 100vw, 264px" /></figure>
</div>
</div>



<p class="wp-block-paragraph">Accordingly, I&#8217;ve now gathered all my loose scripts and developed a function for each topic area that automates all these tasks and logs them for archival purposes. Thanks also to Claude for the support. Nobody reviews and documents code better than Claude. <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f60b.png" alt="😋" class="wp-smiley" style="height: 1em; max-height: 1em;" /></p>



<p class="wp-block-paragraph">Now you might ask: Aren&#8217;t there dbatools and DSC? Sure, I like using those too. But transparent, traceable scripts without framework overhead convey knowledge better — especially when aspiring DBAs lack the big-picture perspective. Operating SQL Server starts at the bare metal, goes through storage, Windows Server, Active Directory, and ends at a Certificate Authority. And for critical infrastructure companies or small mid-sized businesses with 3 clusters, I don&#8217;t want to start a fundamental discussion about dbatools or DSC right from the beginning.</p>



<p class="wp-block-paragraph">Let&#8217;s start with a production-ready Windows Server Failover Cluster — including CNO/VCO permissions, DNS registration, and quorum configuration. Everything repeatable, everything logged, everything traceable.</p>



<div style="height:20px" aria-hidden="true" class="wp-block-spacer"></div>



<h2 class="wp-block-heading" id="1-das-lab-szenario" style="margin-top:var(--wp--preset--spacing--50);margin-bottom:var(--wp--preset--spacing--50)">The Lab Scenario</h2>



<p class="wp-block-paragraph" style="margin-bottom:var(--wp--preset--spacing--40)">To make the steps tangible, the following environment and naming conventions are used</p>



<ul class="wp-block-list">
<li><strong>Nodes</strong>
<ul class="wp-block-list">
<li><code>LAB-NODE01</code> (192.168.100.12)</li>



<li><code>LAB-NODE02</code> (192.168.100.13)</li>
</ul>
</li>



<li><strong>Cluster Name</strong>
<ul class="wp-block-list">
<li><code>MSSQL-CL-01</code> (192.168.100.14)</li>
</ul>
</li>



<li><strong>SQL Instance</strong>
<ul class="wp-block-list">
<li><code>LAB22A</code></li>
</ul>
</li>



<li><strong>Domain</strong>
<ul class="wp-block-list">
<li><code>lab.local</code></li>
</ul>
</li>



<li><strong>Service Accounts</strong> Group Managed Service Accounts (gMSA)
<ul class="wp-block-list">
<li><code>g-LAB22A-oltp</code></li>



<li><code>g-LAB22A-agnt</code></li>
</ul>
</li>
</ul>



<hr class="wp-block-separator has-alpha-channel-opacity" style="margin-top:var(--wp--preset--spacing--60);margin-bottom:var(--wp--preset--spacing--60)"/>



<h2 class="wp-block-heading" id="WSFC" style="margin-top:var(--wp--preset--spacing--50);margin-bottom:var(--wp--preset--spacing--50)">Windows Server Failover Cluster Deployment </h2>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-85e3fc83 wp-block-columns-is-layout-flex" style="border-width:1px;border-top-left-radius:2px;border-top-right-radius:2px;border-bottom-left-radius:2px;border-bottom-right-radius:2px;margin-top:var(--wp--preset--spacing--20);margin-bottom:var(--wp--preset--spacing--20);padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--80);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--80)">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:100%">
<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-461897f4 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<p class="has-text-align-center wp-block-paragraph"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/2692.png" alt="⚒" class="wp-smiley" style="height: 1em; max-height: 1em;" /><br><a href="https://github.com/gabrielkoehl/DBAScriptBox/blob/main/windows/system/cluster_manageSQLCluster.ps1" target="_blank" rel="noopener" title="cluster_manageSQLCluster.ps1"><code>cluster_manageSQLCluster.ps1</code></a></p>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<p class="has-text-align-center wp-block-paragraph"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f4d3.png" alt="📓" class="wp-smiley" style="height: 1em; max-height: 1em;" /><br><code><a href="https://github.com/gabrielkoehl/DBAScriptBox/blob/main/windows/system/cluster_manageSQLCluster.md" target="_blank" rel="noopener" title="cluster_manageSQLCluster.md">cluster_manageSQLCluster.md</a></code></p>
</div>
</div>
</div>
</div>



<div style="height:14px" aria-hidden="true" class="wp-block-spacer"></div>



<p class="has-text-align-left wp-block-paragraph">The WSFC forms the foundation for AlwaysOn Availability Groups. The script manages the entire lifecycle from feature installation to witness configuration.</p>



<h3 class="wp-block-heading has-text-align-left" id="3-feature-installation-amp-cluster-erstellung" style="margin-top:var(--wp--preset--spacing--70);margin-bottom:var(--wp--preset--spacing--50)">Feature Installation &amp; Cluster Creation</h3>



<p class="wp-block-paragraph" style="margin-top:var(--wp--preset--spacing--50);margin-bottom:var(--wp--preset--spacing--50)">First, the <code>Failover-Clustering</code> feature is installed on the individual nodes and the cluster is created. An important aspect of automation is the Cluster Name Object (CNO): It needs write permissions in DNS and Active Directory to be able to automatically create listener records later. </p>


<div class="wp-block-syntaxhighlighter-code "><pre class="brush: powershell; auto-links: false; title: ; notranslate">
.\cluster_manageSQLCluster.ps1 `
    -Operation InstallFeature `
    -Nodes &quot;LAB-NODE01&quot;,&quot;LAB-NODE02&quot; `
    -LogPath &quot;C:\Temp\Cluster_Feature_$(Get-Date -Format &#039;yyyyMMdd_HHmmss&#039;).log&quot;
</pre></div>


<p class="has-text-align-left wp-block-paragraph" style="margin-top:var(--wp--preset--spacing--50);margin-bottom:var(--wp--preset--spacing--50)">Afterwards, the cluster is created. The script additionally sets the corresponding permissions in AD and DNS.</p>


<div class="wp-block-syntaxhighlighter-code "><pre class="brush: powershell; title: ; notranslate">
.\cluster_manageSQLCluster.ps1 `
    -Operation CreateCluster `
    -ClusterName &quot;MSSQL-CL-01&quot; `
    -Nodes &quot;LAB-NODE01&quot;,&quot;LAB-NODE02&quot; `
    -StaticIP &quot;192.168.100.14&quot; `
    -DnsDomain &quot;lab.local&quot; `
    -TargetOU &quot;OU=lab_computer,DC=lab,DC=local&quot; `
    -LogPath &quot;C:\Temp\Cluster_Create_$(Get-Date -Format &#039;yyyyMMdd_HHmmss&#039;).log&quot;
</pre></div>


<h3 class="wp-block-heading" id="4-file-share-witness-quorum" style="margin-top:var(--wp--preset--spacing--70);margin-bottom:var(--wp--preset--spacing--50)">File Share Witness (Quorum)</h3>



<p class="wp-block-paragraph" style="margin-top:var(--wp--preset--spacing--50);margin-bottom:var(--wp--preset--spacing--50)">For a 2-node cluster, a witness is mandatory to avoid split-brain scenarios. Here, a file share on the domain controller (<code>\\LAB-DC\quorum$</code>) is used. </p>



<p class="wp-block-paragraph" style="margin-top:var(--wp--preset--spacing--50);margin-bottom:var(--wp--preset--spacing--50)"><strong>Manual Intermediate Step</strong><br>The Cluster Computer Object (<code>MSSQL-CL-01$</code>) requires <strong>Full Control</strong> at both the share and NTFS permission level of the witness path (<code>\\LAB-DC\quorum$</code>). This must be ensured before running the following command.</p>


<div class="wp-block-syntaxhighlighter-code "><pre class="brush: powershell; title: ; notranslate">
.\cluster_manageSQLCluster.ps1 `
    -Operation SetWitness `
    -ClusterName &quot;MSSQL-CL-01&quot; `
    -WitnessShare &quot;\\LAB-DC\quorum$&quot; `
    -LogPath &quot;C:\Temp\Cluster_Witness_$(Get-Date -Format &#039;yyyyMMdd_HHmmss&#039;).log&quot;
</pre></div>


<h3 class="wp-block-heading" id="5-verwendete-microsoft-cmdlets" style="margin-top:var(--wp--preset--spacing--70);margin-bottom:var(--wp--preset--spacing--50)">Microsoft Cmdlets Used</h3>



<p class="wp-block-paragraph" style="margin-top:var(--wp--preset--spacing--50);margin-bottom:var(--wp--preset--spacing--50)">The script primarily uses the <a href="https://learn.microsoft.com/en-us/powershell/module/failoverclusters/" target="_blank" rel="noopener" title="FailoverClusters"><code>FailoverClusters</code></a> module</p>



<ul style="margin-top:var(--wp--preset--spacing--50);margin-bottom:var(--wp--preset--spacing--50)" class="wp-block-list">
<li><code>New-Cluster</code>
<ul class="wp-block-list">
<li>Creates the cluster, adds the nodes, and sets the management IP</li>
</ul>
</li>



<li><code>Set-ClusterQuorum</code>
<ul class="wp-block-list">
<li>Configures the witness mode (here: File Share Witness)</li>
</ul>
</li>



<li><code>Install-WindowsFeature</code>
<ul class="wp-block-list">
<li>Installs the RSAT tools and the cluster service</li>
</ul>
</li>
</ul>



<hr class="wp-block-separator has-alpha-channel-opacity" style="margin-top:var(--wp--preset--spacing--70);margin-bottom:var(--wp--preset--spacing--70)"/>



<h2 class="wp-block-heading" id="GMSA" style="margin-top:var(--wp--preset--spacing--50);margin-bottom:var(--wp--preset--spacing--50)">Identity Management: gMSA</h2>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-85e3fc83 wp-block-columns-is-layout-flex" style="border-width:1px;border-top-left-radius:2px;border-top-right-radius:2px;border-bottom-left-radius:2px;border-bottom-right-radius:2px;margin-top:var(--wp--preset--spacing--20);margin-bottom:var(--wp--preset--spacing--20);padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--80);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--80)">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:100%">
<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-461897f4 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<p class="has-text-align-center wp-block-paragraph"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/2692.png" alt="⚒" class="wp-smiley" style="height: 1em; max-height: 1em;" /><br><a href="https://github.com/gabrielkoehl/DBAScriptBox/blob/main/windows/security/security_createGMSA.ps1" target="_blank" rel="noopener" title="security_createGMSA.ps1"><code>security_createGMSA.ps1</code></a></p>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<p class="has-text-align-center wp-block-paragraph"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f4d3.png" alt="📓" class="wp-smiley" style="height: 1em; max-height: 1em;" /><br><a href="https://github.com/gabrielkoehl/DBAScriptBox/blob/main/windows/security/security_createGMSA.md" target="_blank" rel="noopener" title="security_createGMSA.md"><code>security_createGMSA.md</code></a></p>
</div>
</div>
</div>
</div>



<p class="wp-block-paragraph" style="margin-top:var(--wp--preset--spacing--50);margin-bottom:var(--wp--preset--spacing--50)">Using standard users as service accounts can lead to expired passwords and downtime. The recommended method for SQL Server is <a href="https://learn.microsoft.com/en-us/windows-server/identity/ad-ds/manage/group-managed-service-accounts/group-managed-service-accounts/group-managed-service-accounts-overview" target="_blank" rel="noopener" title="gMSA"><code>Group Managed Service Accounts (gMSA)</code></a>. Here, the Key Distribution Service (KDS) of Active Directory handles password rotation; nobody needs to know the password.</p>



<h3 class="wp-block-heading" style="margin-top:var(--wp--preset--spacing--70);margin-right:0;margin-bottom:var(--wp--preset--spacing--50);margin-left:0">KDS Root Key</h3>



<p class="wp-block-paragraph" style="margin-top:var(--wp--preset--spacing--50);margin-bottom:var(--wp--preset--spacing--50)">Before the first gMSA can be created, a KDS Root Key must exist once per forest. If a key already exists, the creation will be skipped.</p>


<div class="wp-block-syntaxhighlighter-code "><pre class="brush: powershell; title: ; notranslate">
.\security_createGMSA.ps1 `
    -InitializeKDS `
    -LogPath &quot;C:\Temp\KDS_Init.log&quot;
</pre></div>


<h3 class="wp-block-heading" style="margin-top:var(--wp--preset--spacing--70);margin-right:0;margin-bottom:var(--wp--preset--spacing--50);margin-left:0">gMSA Creation</h3>



<p class="wp-block-paragraph" style="margin-top:var(--wp--preset--spacing--50);margin-bottom:var(--wp--preset--spacing--50)">Instead of assigning servers directly to a gMSA, it is best practice to create a security group (<code>SQL_LAB_CL01</code>) that contains the computer accounts of the cluster nodes. In addition to setting up the actual gMSA, this script can also create the security groups and handle the assignments. And always keep the descriptions of AD objects well-maintained. </p>


<div class="wp-block-syntaxhighlighter-code "><pre class="brush: powershell; title: ; notranslate">
.\security_createGMSA.ps1 `
    -AccountName @( `
        @(&quot;g-LAB22A-oltp&quot;, &quot;SQL Server Engine Account for LAB22A&quot;), `
        @(&quot;g-LAB22A-agnt&quot;, &quot;SQL Server Agent Account for LAB22A&quot;) ) `
    -SecurityGroupName &quot;SQL_LAB_CL01&quot; `
    -SecurityGroupDescription &quot;SQL Server Cluster CL01 gMSA Group&quot; `
    -ServerNames &quot;LAB-NODE01&quot;,&quot;LAB-NODE02&quot; `
    -CreateSecurityGroup `
    -SecurityGroupOU &quot;OU=lab_secgrp,DC=lab,DC=local&quot; `
    -PasswordIntervalDays 90 `
    -LogPath &quot;C:\Temp\gMSA_Creation_$(Get-Date -Format &#039;yyyyMMdd_HHmmss&#039;).log&quot;
</pre></div>


<p class="wp-block-paragraph" style="margin-top:var(--wp--preset--spacing--50);margin-bottom:0">After this step, a restart of the nodes is required for the new group membership to take effect.</p>



<h3 class="wp-block-heading" style="margin-top:var(--wp--preset--spacing--70);margin-right:0;margin-bottom:var(--wp--preset--spacing--50);margin-left:0">Local Registration</h3>



<p class="wp-block-paragraph" style="margin-top:var(--wp--preset--spacing--50);margin-bottom:var(--wp--preset--spacing--50)">After creation, the gMSAs must be registered locally on the nodes. The following script can be used for this purpose.</p>


<div class="wp-block-syntaxhighlighter-code "><pre class="brush: powershell; title: ; notranslate">
# Required for local setup (Local Admin)
Add-WindowsFeature -Name RSAT-AD-PowerShell

$gMSAs = @(
    &#039;g-LAB22A-oltp&#039;,
    &#039;g-LAB22A-agnt&#039;
)

foreach ($gMSA in $gMSAs) {

    if (Test-ADServiceAccount -Identity $gMSA -ErrorAction SilentlyContinue) {
        try {
            Install-ADServiceAccount -Identity $gMSA -ErrorAction Stop
            Write-Host &quot;$gMSA installed&quot; -ForegroundColor Green
        } catch {
            Write-Host &quot;$gMSA - Installation error: $($_.Exception.Message)&quot; -ForegroundColor Red
        }
    } else {
        Write-Host &quot;$gMSA does not exist&quot; -ForegroundColor Yellow
    }
}
</pre></div>


<p class="wp-block-paragraph" style="margin-top:var(--wp--preset--spacing--50);margin-bottom:0">After this step, a restart of the nodes is required for the new group membership to take effect.</p>



<h3 class="wp-block-heading" id="5-verwendete-microsoft-cmdlets" style="margin-top:var(--wp--preset--spacing--70);margin-bottom:var(--wp--preset--spacing--50)">Microsoft Cmdlets Used</h3>



<p class="wp-block-paragraph" style="margin-top:var(--wp--preset--spacing--50);margin-bottom:var(--wp--preset--spacing--50)">The script primarily uses the <a href="https://learn.microsoft.com/en-us/powershell/module/activedirectory/?view=windowsserver2025-ps" target="_blank" rel="noopener" title="ActiveDirectory"><code>ActiveDirectory</code></a> module</p>



<ul style="margin-top:var(--wp--preset--spacing--50);margin-bottom:var(--wp--preset--spacing--50)" class="wp-block-list">
<li><code>Add-KdsRootKey</code>
<ul class="wp-block-list">
<li>Creates the root key for the Group Key Distribution Service</li>
</ul>
</li>



<li><code>New-ADServiceAccount</code>
<ul class="wp-block-list">
<li>Creates the gMSA object in AD</li>
</ul>
</li>



<li><code>Set-ADServiceAccount</code>
<ul class="wp-block-list">
<li>Configures which computers (PrincipalsAllowedToRetrieveManagedPassword) are allowed to read the password</li>
</ul>
</li>
</ul>



<hr class="wp-block-separator has-alpha-channel-opacity" style="margin-top:var(--wp--preset--spacing--70);margin-bottom:var(--wp--preset--spacing--70)"/>



<h2 class="wp-block-heading" id="KERBEROS" style="margin-top:var(--wp--preset--spacing--50);margin-bottom:var(--wp--preset--spacing--50)">Kerberos and Service Principal Names (SPN)</h2>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-85e3fc83 wp-block-columns-is-layout-flex" style="border-width:1px;border-top-left-radius:2px;border-top-right-radius:2px;border-bottom-left-radius:2px;border-bottom-right-radius:2px;margin-top:var(--wp--preset--spacing--20);margin-bottom:var(--wp--preset--spacing--20);padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--80);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--80)">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:100%">
<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-461897f4 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<p class="has-text-align-center wp-block-paragraph"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/2692.png" alt="⚒" class="wp-smiley" style="height: 1em; max-height: 1em;" /><br><code><a href="https://github.com/gabrielkoehl/DBAScriptBox/blob/main/windows/security/security_setSqlSpn.ps1" target="_blank" rel="noopener" title="cluster_manageSQLCluster.ps1">security_setSqlSpn.ps1</a></code></p>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<p class="has-text-align-center wp-block-paragraph"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f4d3.png" alt="📓" class="wp-smiley" style="height: 1em; max-height: 1em;" /><br><code><a href="https://github.com/gabrielkoehl/DBAScriptBox/blob/main/windows/security/security_setSqlSpn.md" target="_blank" rel="noopener" title="">security_setSqlSpn</a></code><a href="https://github.com/gabrielkoehl/DBAScriptBox/blob/main/windows/security/security_setSqlSpn.md" title=""><code>.</code>md</a></p>
</div>
</div>
</div>
</div>



<p class="wp-block-paragraph" style="margin-top:var(--wp--preset--spacing--50);margin-bottom:var(--wp--preset--spacing--50)">A gMSA does not have the right to write its own SPNs in AD by default. When the SQL service starts, the registration often fails, leading to NTLM fallbacks. Even though I prefer to set SPNs in a controlled and manual manner, the automatic registration must be technically possible to avoid fallbacks.</p>



<p class="wp-block-paragraph" style="margin-bottom:var(--wp--preset--spacing--50)">The script solves this problem by granting the gMSA the rights in AD to manage its own SPNs, in addition to creating the SPNs. It sets ACLs on the nodes for <code>Read</code>, <code>Write</code>, and <code>Validated write</code> on the <code>servicePrincipalName</code> attribute.</p>


<div class="wp-block-syntaxhighlighter-code "><pre class="brush: powershell; title: ; notranslate">
.\security_setSqlSpn.ps1 `
    -ServiceAccount &quot;LAB\g-LAB22A-oltp&quot; `
    -InstanceName &quot;LAB22A&quot; `
    -Port 51101 `
    -Hostnames &quot;LAB-NODE01&quot;,&quot;LAB-NODE02&quot; `
    -Domain &quot;lab.local&quot; `
    -IsGMSA `
    -SetADPermissions `
    -LogPath &quot;C:\Temp\SPN_AlwaysOn_$(Get-Date -Format &#039;yyyyMMdd_HHmmss&#039;).log&quot;
</pre></div>


<h3 class="wp-block-heading" id="5-verwendete-microsoft-cmdlets" style="margin-top:var(--wp--preset--spacing--70);margin-bottom:var(--wp--preset--spacing--50)">Microsoft Cmdlets Used</h3>



<p class="wp-block-paragraph" style="margin-top:var(--wp--preset--spacing--50);margin-bottom:var(--wp--preset--spacing--50)">On one hand, <a href="https://learn.microsoft.com/en-us/windows-server/administration/windows-commands/setspn" target="_blank" rel="noopener" title="setspn.exe"><code>setspn.exe</code></a> is used for SPN management, and on the other hand, the <a href="https://learn.microsoft.com/en-us/powershell/module/activedirectory/?view=windowsserver2025-ps" target="_blank" rel="noopener" title=""><code>ActiveDirectory</code></a> module is used again to verify accounts and extract SIDs.</p>



<p class="wp-block-paragraph" style="margin-top:var(--wp--preset--spacing--50);margin-bottom:var(--wp--preset--spacing--50)">Since none of the modules can manipulate Active Directory permissions, the .NET Framework <a href="https://learn.microsoft.com/en-us/dotnet/api/system.directoryservices?view=windowsdesktop-10.0" target="_blank" rel="noopener" title="System.DirectoryServices"><code>System.DirectoryServices</code></a> is used directly for this purpose, which provides various classes to completely turn AD inside out. </p>



<hr class="wp-block-separator has-alpha-channel-opacity" style="margin-top:var(--wp--preset--spacing--70);margin-bottom:var(--wp--preset--spacing--70)"/>



<h2 class="wp-block-heading" id="LSP" style="margin-top:var(--wp--preset--spacing--50);margin-bottom:var(--wp--preset--spacing--50)">Local Security Policies</h2>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-85e3fc83 wp-block-columns-is-layout-flex" style="border-width:1px;border-top-left-radius:2px;border-top-right-radius:2px;border-bottom-left-radius:2px;border-bottom-right-radius:2px;margin-top:var(--wp--preset--spacing--20);margin-bottom:var(--wp--preset--spacing--20);padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--80);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--80)">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:100%">
<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-461897f4 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<p class="has-text-align-center wp-block-paragraph"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/2692.png" alt="⚒" class="wp-smiley" style="height: 1em; max-height: 1em;" /><br><code><a href="https://github.com/gabrielkoehl/DBAScriptBox/blob/main/windows/security/security_setSqlLocalSec.ps1" target="_blank" rel="noopener" title="security_setSqlLocalSec.ps1">security_setSqlLocalSec.ps1</a></code></p>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<p class="has-text-align-center wp-block-paragraph"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f4d3.png" alt="📓" class="wp-smiley" style="height: 1em; max-height: 1em;" /><br><a href="https://github.com/gabrielkoehl/DBAScriptBox/blob/main/windows/security/security_setSqlLocalSec.md" target="_blank" rel="noopener" title=""><code>security_setSqlLocalSec.md</code></a></p>
</div>
</div>
</div>
</div>



<p class="wp-block-paragraph" style="margin-top:var(--wp--preset--spacing--50);margin-bottom:var(--wp--preset--spacing--50)">As everywhere in IT, SQL Server should also follow the <a href="https://en.wikipedia.org/wiki/Principle_of_least_privilege" target="_blank" rel="noopener" title="PoLP"><code>PoLP</code></a>, which is why no service account gets local administrator privileges. For SQL Server to still run flawlessly and performantly, the service account needs specific rights in the operating system (&#8222;User Rights Assignment&#8220;). Anyone who has done this manually a few times will be very happy about this solution. This must be executed locally on the respective node.</p>


<div class="wp-block-syntaxhighlighter-code "><pre class="brush: powershell; title: ; notranslate">
# ===== Set Engine Permissions for gMSA =====

    .\security_setSqlLocalSec.ps1 `
        -ServiceAccount &quot;g-LAB22A-oltp$&quot; `
        -ServiceType &quot;engine&quot; `
        -IsGMSA `
        -LogPath &quot;C:\Temp\LAB22A_Engine_$(Get-Date -Format &#039;yyyyMMdd_HHmmss&#039;).log&quot;

# ===== Set Agent Permissions for gMSA =====

    .\security_setSqlLocalSec.ps1 `
        -ServiceAccount &quot;g-LAB22A-agnt$&quot; `
        -ServiceType &quot;agent&quot; `
        -IsGMSA `
        -LogPath &quot;C:\Temp\LAB22A_Agent_$(Get-Date -Format &#039;yyyyMMdd_HHmmss&#039;).log&quot;
</pre></div>


<h3 class="wp-block-heading" style="margin-top:var(--wp--preset--spacing--70);margin-bottom:var(--wp--preset--spacing--50)">Microsoft Cmdlets Used</h3>



<p class="wp-block-paragraph" style="margin-top:var(--wp--preset--spacing--50);margin-bottom:var(--wp--preset--spacing--50)">Since PowerShell has no native cmdlets for editing local security policies, the Windows tool <a href="https://learn.microsoft.com/en-us/windows-server/administration/windows-commands/secedit" target="_blank" rel="noopener" title="secedit.exe"><code>secedit.exe</code></a> is used and its export is manipulated.</p>



<hr class="wp-block-separator has-alpha-channel-opacity" style="margin-top:var(--wp--preset--spacing--70);margin-bottom:var(--wp--preset--spacing--70)"/>



<h2 class="wp-block-heading" style="margin-top:var(--wp--preset--spacing--50);margin-bottom:var(--wp--preset--spacing--50)">Summary</h2>



<p class="wp-block-paragraph" style="margin-top:var(--wp--preset--spacing--50);margin-bottom:var(--wp--preset--spacing--50)">With these four building blocks, the foundation for a SQL Server installation has been laid. It wasn&#8217;t just an installation that was performed, but a valid, documented configuration that considers identity (gMSA), network (DNS/SPN), and OS performance. In the next step, the actual SQL Server instance can be installed.</p>



<p class="wp-block-paragraph">Also check out the linked MD files — they contain background information on best practices and further articles from Microsoft</p>



<figure class="wp-block-image aligncenter size-full" style="margin-top:var(--wp--preset--spacing--60);margin-bottom:var(--wp--preset--spacing--60)"><img loading="lazy" decoding="async" width="307" height="328" src="https://dbavonnebenan.de/wp-content/uploads/2025/05/emotes_2.png" alt="good to know emote" class="wp-image-345" srcset="https://dbavonnebenan.de/wp-content/uploads/2025/05/emotes_2.png 307w, https://dbavonnebenan.de/wp-content/uploads/2025/05/emotes_2-281x300.png 281w" sizes="auto, (max-width: 307px) 100vw, 307px" /></figure><p>The post <a href="https://dbavonnebenan.de/automate-sql-server-ha-ad-spn-and-cluster-setup_en/">Automate SQL Server HA: AD, SPN, and Cluster Setup</a> first appeared on <a href="https://dbavonnebenan.de">DBA von Nebenan</a>.</p>]]></content:encoded>
					
					<wfw:commentRss>https://dbavonnebenan.de/automate-sql-server-ha-ad-spn-and-cluster-setup_en/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>psTerminalPerfCounter – SpeedUp your Performance Counters in Terminal</title>
		<link>https://dbavonnebenan.de/psterminalperfcounter-speedup-your-performance-counters_en/</link>
					<comments>https://dbavonnebenan.de/psterminalperfcounter-speedup-your-performance-counters_en/#respond</comments>
		
		<dc:creator><![CDATA[Gabriel]]></dc:creator>
		<pubDate>Sat, 26 Jul 2025 16:07:18 +0000</pubDate>
				<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[counter]]></category>
		<category><![CDATA[eng]]></category>
		<category><![CDATA[PERFORMANCE]]></category>
		<category><![CDATA[TERMINAL]]></category>
		<guid isPermaLink="false">https://dbavonnebenan.de/?p=618</guid>

					<description><![CDATA[<p>Visualize Windows Performance Counters directly in terminal with psTerminalPerfCounter. Language-independent templates, maximum customization. Perfect for quick AdHoc monitoring.</p>
<p>The post <a href="https://dbavonnebenan.de/psterminalperfcounter-speedup-your-performance-counters_en/">psTerminalPerfCounter – SpeedUp your Performance Counters in Terminal</a> first appeared on <a href="https://dbavonnebenan.de">DBA von Nebenan</a>.</p>]]></description>
										<content:encoded><![CDATA[<h2 class="wp-block-heading">Current Release ( 2026-06-08 )</h2>



<div style="height:13px" aria-hidden="true" class="wp-block-spacer"></div>


https://www.powershellgallery.com/packages/psTerminalPerfCounter


<ul class="wp-block-list">
<li><a href="https://github.com/gabrielkoehl/psTerminalPerfCounter/blob/main/CHANGELOG.md" target="_blank" rel="noopener" title="Changelog ">Changelog</a></li>



<li><a href="https://github.com/gabrielkoehl/psTerminalPerfCounter/tree/main?tab=readme-ov-file#documentation" target="_blank" rel="noopener" title="Documentation">Documentation</a></li>
</ul>



<div style="height:27px" aria-hidden="true" class="wp-block-spacer"></div>



<h2 class="wp-block-heading" style="margin-bottom:var(--wp--preset--spacing--50)">Intro</h2>



<p class="wp-block-paragraph">Windows Performance Counters are absolutely powerful, but when I need something quick or monitoring tailored to a specific problem, I get frustrated fast. Usually I fall back on other options &#8211; PowerShell native Get-Counter, CIM, or existing monitoring solutions at my clients. But that&#8217;s never truly ad-hoc either, and I&#8217;ve accepted it.</p>



<p class="wp-block-paragraph">Recently I had the chance to join Uwe Ricken&#8217;s Performance Tuning Workshop at DataSaturday, and he clearly named Performance Counters as a must-have in every DBA&#8217;s toolkit. What I didn&#8217;t know until then: SQL Server creates individual counters like <strong>Compile/sec</strong>, <strong>AdHoc Queries/sec</strong>, etc.</p>



<figure class="wp-block-image aligncenter size-full is-resized is-style-default" style="margin-top:var(--wp--preset--spacing--60);margin-bottom:var(--wp--preset--spacing--60)"><img loading="lazy" decoding="async" width="500" height="54" src="https://dbavonnebenan.de/wp-content/uploads/2025/07/mindblowing.png" alt="MINDBLOWING" class="wp-image-608" style="width:500px;height:auto" srcset="https://dbavonnebenan.de/wp-content/uploads/2025/07/mindblowing.png 500w, https://dbavonnebenan.de/wp-content/uploads/2025/07/mindblowing-300x32.png 300w" sizes="auto, (max-width: 500px) 100vw, 500px" /></figure>



<p class="wp-block-paragraph">The possibilities to visualize dependencies directly &#8211; endless. But how long should I sit there configuring that in Windows Performance Monitor, especially ad-hoc at a client site?</p>



<p class="wp-block-paragraph">Uwe showed the capabilities in Windows Admin Center, which enables templates you can use flexibly across servers. For systems or environments where Admin Center is used strategically, definitely a great choice.<br>But two problems remain: As a consultant, I can&#8217;t install software at every client, and if Admin Center happens to be running, my English templates fail on German systems.</p>



<p class="wp-block-paragraph">Still, I was so incredibly hooked by the template idea and the SQL Server possibilities that 4 weeks of after-work crunchtime were spinning in my head. So let me introduce my first module in the PowerShell Gallery:</p>



<p class="wp-block-paragraph" style="margin-bottom:var(--wp--preset--spacing--50)"><strong>psTerminalPerfCounter 0.1.0-preview</strong> A PowerShell module for displaying real-time graphs of Windows Performance Counters directly in the terminal console. This module provides an easy way to visualize system performance metrics without requiring external graphing tools or GUI applications by using templates and multilanguage support.</p>


https://www.powershellgallery.com/packages/psTerminalPerfCounter/0.1.0-preview


<p class="wp-block-paragraph" style="margin-top:var(--wp--preset--spacing--50);margin-bottom:var(--wp--preset--spacing--50)">You&#8217;ll find all technical details and development status in the repository &#8211; I just want to show the different possibilities here.</p>



<div style="height:30px" aria-hidden="true" class="wp-block-spacer"></div>



<h2 class="wp-block-heading" style="margin-top:var(--wp--preset--spacing--50);margin-bottom:var(--wp--preset--spacing--50)">Main Features</h2>



<h3 class="wp-block-heading" style="margin-top:var(--wp--preset--spacing--50);margin-bottom:var(--wp--preset--spacing--50)">100% PowerShell</h3>



<ul class="wp-block-list">
<li>no external dependencies</li>
</ul>



<h3 class="wp-block-heading" style="margin-top:var(--wp--preset--spacing--50);margin-bottom:var(--wp--preset--spacing--50)">Terminal Graphics</h3>



<ul class="wp-block-list">
<li>obviously it&#8217;s not a real engine, the more counters the choppier it gets, but it&#8217;s sufficient</li>



<li>The foundation comes from <a href="https://github.com/PrateekKumarSingh/Graphical" target="_blank" rel="noopener" title="">Prateek Singh</a> solution. Without finding this, I would have had to solve this problem first, for which I probably wouldn&#8217;t have had time. THANKS!!!</li>
</ul>



<figure class="wp-block-image aligncenter size-full is-resized" style="margin-top:var(--wp--preset--spacing--40);margin-bottom:var(--wp--preset--spacing--40)"><img loading="lazy" decoding="async" width="632" height="757" src="https://dbavonnebenan.de/wp-content/uploads/2025/07/perfcounter_example_cpu.png" alt="" class="wp-image-609" style="width:383px;height:auto" srcset="https://dbavonnebenan.de/wp-content/uploads/2025/07/perfcounter_example_cpu.png 632w, https://dbavonnebenan.de/wp-content/uploads/2025/07/perfcounter_example_cpu-250x300.png 250w" sizes="auto, (max-width: 632px) 100vw, 632px" /></figure>



<h3 class="wp-block-heading" style="margin-top:var(--wp--preset--spacing--50);margin-bottom:var(--wp--preset--spacing--50)">Configuration Templates</h3>



<ul class="wp-block-list">
<li>every output element is controlled via configuration files</li>



<li>flexible, portable</li>
</ul>



<h3 class="wp-block-heading" style="margin-top:var(--wp--preset--spacing--50);margin-bottom:var(--wp--preset--spacing--50)">Data Output Customization</h3>



<ul class="wp-block-list">
<li>each counter in the configuration file can use its own output
<ul class="wp-block-list">
<li>Table, Graph, or Both</li>
</ul>
</li>



<li>arbitrary axis scaling in steps and max values</li>



<li>arbitrary value coloring based on user-defined ColorMap per counter</li>



<li>value conversion via configuration file (Byte -&gt; KB -&gt; MB -&gt; GB)</li>
</ul>



<h3 class="wp-block-heading" style="margin-top:var(--wp--preset--spacing--50);margin-bottom:var(--wp--preset--spacing--50)">Language Independent</h3>



<ul class="wp-block-list">
<li>configuration files are based on counter IDs, not paths 
<ul class="wp-block-list">
<li>portable, regardless of system language translation from ID to counter path happens at runtime </li>



<li>no external dependencies</li>
</ul>
</li>



<li>I had no idea this was possible with Windows built-in tools. Here too I stumbled across a blog at <a href="https://powershell.one/tricks/performance/performance-counters" target="_blank" rel="noopener" title="">PowerShell.ONE</a> by chance. Again, a big THANKS!!! My original solution had multiple language variants (DE, EN, FR, ES) which would be set by reading system locale.</li>
</ul>



<div style="height:30px" aria-hidden="true" class="wp-block-spacer"></div>



<h2 class="wp-block-heading" style="margin-top:var(--wp--preset--spacing--50);margin-bottom:var(--wp--preset--spacing--50)">Demo with CPU Configuration</h2>


<div class="wp-block-syntaxhighlighter-code "><pre class="brush: powershell; title: ; notranslate">
# Install module with required dependency (GripDevJsonSchemaValidator)
Install-Module -Name psTerminalPerfCounter -AllowPrerelease

# Import the module
Import-Module psTerminalPerfCounter

# Start Default Cpu Configuration
Start-tpcMonitor -ConfigName CPU
</pre></div>


<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-464c60d7 wp-block-columns-is-layout-flex" style="padding-top:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--50)">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:66.66%">
<figure class="wp-block-image aligncenter size-full is-resized"><img loading="lazy" decoding="async" width="552" height="110" src="https://dbavonnebenan.de/wp-content/uploads/2025/07/perfcounter_load.png" alt="" class="wp-image-610" style="width:622px;height:auto" srcset="https://dbavonnebenan.de/wp-content/uploads/2025/07/perfcounter_load.png 552w, https://dbavonnebenan.de/wp-content/uploads/2025/07/perfcounter_load-300x60.png 300w" sizes="auto, (max-width: 552px) 100vw, 552px" /></figure>
</div>



<div class="wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:33.33%">
<p class="wp-block-paragraph">When loading the configuration, counter IDs are translated to counter paths and tested</p>
</div>
</div>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-b2e80fc7 wp-block-columns-is-layout-flex" style="margin-top:var(--wp--preset--spacing--50);margin-bottom:var(--wp--preset--spacing--50)">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:66.66%">
<figure class="wp-block-image aligncenter size-full is-resized"><img loading="lazy" decoding="async" width="613" height="155" src="https://dbavonnebenan.de/wp-content/uploads/2025/07/perfcounter_sample.png" alt="" class="wp-image-611" style="width:629px;height:auto" srcset="https://dbavonnebenan.de/wp-content/uploads/2025/07/perfcounter_sample.png 613w, https://dbavonnebenan.de/wp-content/uploads/2025/07/perfcounter_sample-300x76.png 300w" sizes="auto, (max-width: 613px) 100vw, 613px" /></figure>
</div>



<div class="wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:33.33%">
<p class="wp-block-paragraph">If successful, the first samples are collected so a graph can be displayed</p>
</div>
</div>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9c5688cc wp-block-columns-is-layout-flex" style="padding-top:var(--wp--preset--spacing--50);padding-right:0;padding-bottom:var(--wp--preset--spacing--50);padding-left:0">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:66.66%">
<figure class="wp-block-image aligncenter size-full"><img loading="lazy" decoding="async" width="767" height="774" src="https://dbavonnebenan.de/wp-content/uploads/2025/07/perfcounter_run.png" alt="" class="wp-image-612" srcset="https://dbavonnebenan.de/wp-content/uploads/2025/07/perfcounter_run.png 767w, https://dbavonnebenan.de/wp-content/uploads/2025/07/perfcounter_run-297x300.png 297w, https://dbavonnebenan.de/wp-content/uploads/2025/07/perfcounter_run-150x150.png 150w" sizes="auto, (max-width: 767px) 100vw, 767px" /></figure>
</div>



<div class="wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:33.33%">
<p class="wp-block-paragraph">Thats IT! </p>



<p class="wp-block-paragraph">Within 10 seconds, 2 Performance Counters running, no installation, no language issues.</p>
</div>
</div>



<div style="height:30px" aria-hidden="true" class="wp-block-spacer"></div>



<h2 class="wp-block-heading" style="margin-top:var(--wp--preset--spacing--50);margin-bottom:var(--wp--preset--spacing--50)">Demo Counter Translation</h2>


<div class="wp-block-syntaxhighlighter-code "><pre class="brush: powershell; title: ; notranslate">
# Translate ID -&gt; Path
Get-tpcPerformanceCounterInfo 238-6
</pre></div>


<figure class="wp-block-image aligncenter size-full" style="margin-top:var(--wp--preset--spacing--50);margin-bottom:var(--wp--preset--spacing--50)"><img loading="lazy" decoding="async" width="711" height="148" src="https://dbavonnebenan.de/wp-content/uploads/2025/07/perfmon_translate_id.png" alt="" class="wp-image-613" srcset="https://dbavonnebenan.de/wp-content/uploads/2025/07/perfmon_translate_id.png 711w, https://dbavonnebenan.de/wp-content/uploads/2025/07/perfmon_translate_id-300x62.png 300w" sizes="auto, (max-width: 711px) 100vw, 711px" /></figure>


<div class="wp-block-syntaxhighlighter-code "><pre class="brush: powershell; title: ; notranslate">
# Search Counter -&gt; Including ID
Get-tpcPerformanceCounterInfo &quot;Queue&quot;
</pre></div>


<figure class="wp-block-image aligncenter size-full" style="margin-top:var(--wp--preset--spacing--50);margin-bottom:0"><img loading="lazy" decoding="async" width="1013" height="600" src="https://dbavonnebenan.de/wp-content/uploads/2025/07/perfmon_translate_search1.png" alt="" class="wp-image-614" srcset="https://dbavonnebenan.de/wp-content/uploads/2025/07/perfmon_translate_search1.png 1013w, https://dbavonnebenan.de/wp-content/uploads/2025/07/perfmon_translate_search1-300x178.png 300w, https://dbavonnebenan.de/wp-content/uploads/2025/07/perfmon_translate_search1-768x455.png 768w" sizes="auto, (max-width: 1013px) 100vw, 1013px" /></figure>



<p class="has-contrast-color has-text-color has-link-color wp-elements-dedb5f3a2a3a9c6525f87d44e77731d7 wp-block-paragraph" style="margin-bottom:var(--wp--preset--spacing--50)"><em>Output is heavily truncated since the ResultSet is enormous</em></p>


<div class="wp-block-syntaxhighlighter-code "><pre class="brush: powershell; title: ; notranslate">
# Search Counter -&gt; Including ID
Get-tpcPerformanceCounterInfo &quot;Processor Queue&quot;
</pre></div>


<figure class="wp-block-image aligncenter size-full" style="margin-top:var(--wp--preset--spacing--50);margin-bottom:var(--wp--preset--spacing--50)"><img loading="lazy" decoding="async" width="675" height="79" src="https://dbavonnebenan.de/wp-content/uploads/2025/07/perfmon_translate_search2.png" alt="" class="wp-image-615" srcset="https://dbavonnebenan.de/wp-content/uploads/2025/07/perfmon_translate_search2.png 675w, https://dbavonnebenan.de/wp-content/uploads/2025/07/perfmon_translate_search2-300x35.png 300w" sizes="auto, (max-width: 675px) 100vw, 675px" /></figure>



<div style="height:30px" aria-hidden="true" class="wp-block-spacer"></div>



<h2 class="wp-block-heading" style="margin-top:var(--wp--preset--spacing--50);margin-bottom:var(--wp--preset--spacing--50)"><strong>What&#8217;s next?</strong></h2>



<p class="wp-block-paragraph">The foundation works, the planned feature list is long, and what I really need for SQL Server is still far off. I hope I haven&#8217;t solved a problem that doesn&#8217;t exist, but this module simply addresses all the issues I&#8217;ve always had with Performance Counters, as mentioned above.</p>



<p class="wp-block-paragraph">Furthermore, this is my first larger project that I&#8217;m developing publicly, so GitHub might not always meet expected standards. I&#8217;m always happy about feedback and suggestions.</p>



<figure class="wp-block-image aligncenter size-full is-resized" style="margin-top:var(--wp--preset--spacing--50);margin-bottom:var(--wp--preset--spacing--50)"><img loading="lazy" decoding="async" width="246" height="470" src="https://dbavonnebenan.de/wp-content/uploads/2025/05/emotes_standing_1.png" alt="happy" class="wp-image-330" style="width:125px;height:auto" srcset="https://dbavonnebenan.de/wp-content/uploads/2025/05/emotes_standing_1.png 246w, https://dbavonnebenan.de/wp-content/uploads/2025/05/emotes_standing_1-157x300.png 157w" sizes="auto, (max-width: 246px) 100vw, 246px" /></figure>


https://github.com/gabrielkoehl/psTerminalPerfCounter<p>The post <a href="https://dbavonnebenan.de/psterminalperfcounter-speedup-your-performance-counters_en/">psTerminalPerfCounter – SpeedUp your Performance Counters in Terminal</a> first appeared on <a href="https://dbavonnebenan.de">DBA von Nebenan</a>.</p>]]></content:encoded>
					
					<wfw:commentRss>https://dbavonnebenan.de/psterminalperfcounter-speedup-your-performance-counters_en/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Measuring SQL Server Disk Latency Correctly – snapDiskLatency</title>
		<link>https://dbavonnebenan.de/sql-server-disk-latency-en/</link>
					<comments>https://dbavonnebenan.de/sql-server-disk-latency-en/#respond</comments>
		
		<dc:creator><![CDATA[Gabriel]]></dc:creator>
		<pubDate>Thu, 17 Jul 2025 14:21:36 +0000</pubDate>
				<category><![CDATA[Sql Server]]></category>
		<category><![CDATA[TSql]]></category>
		<category><![CDATA[diskio]]></category>
		<category><![CDATA[DISKSPD]]></category>
		<category><![CDATA[eng]]></category>
		<category><![CDATA[latency]]></category>
		<category><![CDATA[PERFORMANCE]]></category>
		<guid isPermaLink="false">https://dbavonnebenan.de/?p=579</guid>

					<description><![CDATA[<p>How to get correct SQL Server Disk Latency values instead of falsified DMV data. Open Source snapDiskLatency solution for long-term analysis.</p>
<p>The post <a href="https://dbavonnebenan.de/sql-server-disk-latency-en/">Measuring SQL Server Disk Latency Correctly – snapDiskLatency</a> first appeared on <a href="https://dbavonnebenan.de">DBA von Nebenan</a>.</p>]]></description>
										<content:encoded><![CDATA[<div style="border: 1px dotted #eb2b14;border-radius: 0%;background-color: #eeeeee;padding-top: var(--wp--preset--spacing--30);padding-left: var(--wp--preset--spacing--30);padding-right: var(--wp--preset--spacing--30);padding-bottom: var(--wp--preset--spacing--30)" class="ub-styled-box ub-bordered-box wp-block-ub-styled-box" id="ub-styled-box-ed9a98aa-0cd4-41e3-8f7e-56d29b672df9">
<p class="has-open-sauce-sans-font-family wp-block-paragraph" style="margin-top:0;margin-right:0;margin-bottom:0;margin-left:0" id="ub-styled-box-bordered-content-">What&#8217;s available here?</p>



<ul style="margin-top:0;margin-right:0;margin-bottom:0;margin-left:0" class="wp-block-list has-open-sauce-sans-font-family">
<li><a href="#DISKSPD" title="">DISKSPD Templates and Wrapper</a></li>



<li><a href="#sqlfilestats" title="">How can I display the latencies of individual database files?</a></li>



<li><a href="#snapdisk" title="">Long-term analysis of latencies with snapDiskLatency</a></li>
</ul>


</div>


<div style="height:20px" aria-hidden="true" class="wp-block-spacer"></div>


https://github.com/gabrielkoehl/DBAScriptBox


<div style="height:20px" aria-hidden="true" class="wp-block-spacer"></div>



<h2 class="wp-block-heading" style="margin-top:var(--wp--preset--spacing--50);margin-bottom:var(--wp--preset--spacing--50)">Intro</h2>



<p class="wp-block-paragraph">Currently, I&#8217;m involved in a code review at a client. We&#8217;re examining not only the application but also all interfaces. This naturally includes the SQL Server landscape, which I set up at the beginning of the year.</p>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-461897f4 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:85%">
<p class="has-open-sauce-sans-font-family wp-block-paragraph">The result was more findings in my direction than expected, and I immediately felt challenged. I was able to refute most of it, some topics were the client&#8217;s responsibility, and one topic caught my interest purely out of curiosity.</p>



<p class="has-text-align-center wp-block-paragraph" style="margin-top:var(--wp--preset--spacing--50);margin-bottom:var(--wp--preset--spacing--50)"><strong>Read- and Write Latencies of TempDB</strong> ( and every other DB )</p>
</div>



<div class="wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:15%">
<figure class="wp-block-image aligncenter size-full is-resized"><img loading="lazy" decoding="async" width="264" height="329" src="https://dbavonnebenan.de/wp-content/uploads/2025/06/emote-4.png" alt="" class="wp-image-516" style="width:131px;height:auto" srcset="https://dbavonnebenan.de/wp-content/uploads/2025/06/emote-4.png 264w, https://dbavonnebenan.de/wp-content/uploads/2025/06/emote-4-241x300.png 241w" sizes="auto, (max-width: 264px) 100vw, 264px" /></figure>
</div>
</div>



<div style="height:20px" aria-hidden="true" class="wp-block-spacer"></div>



<h2 class="wp-block-heading" style="margin-top:var(--wp--preset--spacing--50);margin-bottom:var(--wp--preset--spacing--50)">Background</h2>



<p class="wp-block-paragraph">The client doesn&#8217;t operate their own data center, so they&#8217;re dependent on the hoster, who unfortunately isn&#8217;t very communicative. Therefore, I had to get a picture of the totally overcommitted hardware through various other means and challenge the hoster. This was also the reason why I was quite precisely informed about what the hoster&#8217;s hosts and storage systems were capable of delivering.</p>



<p class="wp-block-paragraph">That&#8217;s why I was very surprised that 32ms Write Latency was listed as a finding. No question, that&#8217;s a bad value for AllFlash NVMe, but it just stood there in the report without differentiation or deeper analysis. Just the statement &#8222;bad storage.&#8220; So I unpacked my tools, took another look at it, and also developed a new solution that I want to share with you.</p>



<div style="height:20px" aria-hidden="true" class="wp-block-spacer"></div>



<h2 class="wp-block-heading" id="DISKSPD" style="margin-top:var(--wp--preset--spacing--50);margin-bottom:0">DISKSPD</h2>



<p class="wp-block-paragraph" style="margin-bottom:var(--wp--preset--spacing--50)"><em><strong>Repo</strong>: perf_diskspeed/DISKSPD</em><br><strong><em>Microsoft</em>:</strong> <a href="https://github.com/microsoft/diskspd" target="_blank" rel="noopener" title="">https://github.com/microsoft/diskspd</a></p>



<p class="wp-block-paragraph">With DISKSPD, you should always start on unknown systems; often a large portion of problems is hidden here. At this client, for example, a DB with high workload was running on spindles, with latencies in the .2 percentile of 15 seconds latency, plus 14MB throughput. I don&#8217;t need to worry about indexes etc. anymore.</p>



<p class="wp-block-paragraph">To quickly get results, I built a wrapper for DISKSPD that always executes 3 standard tests:</p>



<ul class="wp-block-list">
<li>SQL Server Workload</li>



<li>Random 64KB Workload</li>



<li>Sequential 64KB Workload</li>
</ul>



<p class="wp-block-paragraph">The files are stored separately in the _Output subfolder and thus provide quite good hints about storage problems. Now these were, as expected, great values that correspond to NVMe storage. So let&#8217;s continue to SQL Server and see what it tells us. welche NVMe Storage entsprechen. Also weiter zu Sql Server und wir schauen mal was uns dieser so sagt.</p>



<div style="height:20px" aria-hidden="true" class="wp-block-spacer"></div>



<h2 class="wp-block-heading" id="sqlfilestats" style="margin-top:var(--wp--preset--spacing--50);margin-bottom:var(--wp--preset--spacing--50)">sys.dm_io_virtual_file_stats</h2>



<p class="wp-block-paragraph">SQL Server provides a view where all file metrics are cleanly listed.</p>


<div class="wp-block-syntaxhighlighter-code "><pre class="brush: sql; title: ; notranslate">
select * from sys.dm_io_virtual_file_stats(null,null)
</pre></div>


<ul class="wp-block-list">
<li><a href="https://learn.microsoft.com/en-us/sql/relational-databases/system-dynamic-management-views/sys-dm-io-virtual-file-stats-transact-sql?view=sql-server-ver17">Microsoft Learn</a></li>
</ul>



<figure class="wp-block-image size-full" style="margin-top:var(--wp--preset--spacing--50);margin-bottom:var(--wp--preset--spacing--50)"><img loading="lazy" decoding="async" width="1117" height="458" src="https://dbavonnebenan.de/wp-content/uploads/2025/07/disklat_dmv.png" alt="sys.dm_io_virtual_file_stats" class="wp-image-569" srcset="https://dbavonnebenan.de/wp-content/uploads/2025/07/disklat_dmv.png 1117w, https://dbavonnebenan.de/wp-content/uploads/2025/07/disklat_dmv-300x123.png 300w, https://dbavonnebenan.de/wp-content/uploads/2025/07/disklat_dmv-1024x420.png 1024w, https://dbavonnebenan.de/wp-content/uploads/2025/07/disklat_dmv-768x315.png 768w" sizes="auto, (max-width: 1117px) 100vw, 1117px" /></figure>



<p class="wp-block-paragraph">Based on this, I built an analysis script that gives me more info and I can also draw further conclusions like ReadWrite Ratio, probable IOPS based on the number of operations, and also quantities. This allows you to build storage systems quite well for specific workloads.</p>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-461897f4 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:80%">
<p class="wp-block-paragraph">And this value also showed me 32ms Write Latency of the TempDB. Then I started wondering, how does this value even arise?</p>
</div>



<div class="wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:20%">
<figure class="wp-block-image aligncenter size-full is-resized"><img loading="lazy" decoding="async" width="261" height="323" src="https://dbavonnebenan.de/wp-content/uploads/2025/07/emotes_question.png" alt="Question" class="wp-image-575" style="width:125px;height:auto" srcset="https://dbavonnebenan.de/wp-content/uploads/2025/07/emotes_question.png 261w, https://dbavonnebenan.de/wp-content/uploads/2025/07/emotes_question-242x300.png 242w" sizes="auto, (max-width: 261px) 100vw, 261px" /></figure>
</div>
</div>



<div style="height:20px" aria-hidden="true" class="wp-block-spacer"></div>



<h3 class="wp-block-heading" style="margin-top:var(--wp--preset--spacing--50);margin-bottom:var(--wp--preset--spacing--50)">Basic Calculation</h3>



<p class="wp-block-paragraph">SQL Server measures I/O latency through simple division of cumulative wait times by the number of operations:</p>


<div class="wp-block-syntaxhighlighter-code "><pre class="brush: sql; title: ; notranslate">
-- Read Latency in ms
io_stall_read_ms / num_of_reads = durchschnittliche Read-Latenz

-- Write Latency in ms  
io_stall_write_ms / num_of_writes = durchschnittliche Write-Latenz
</pre></div>


<div style="height:20px" aria-hidden="true" class="wp-block-spacer"></div>



<p class="wp-block-paragraph">That&#8217;s it!!! And now it should be clear that the point-in-time use of this DMV is not really meaningful, on the contrary. The values can, as with the review company that specializes in such processes, lead to false conclusions and action recommendations. Scary.</p>



<p class="wp-block-paragraph">If the storage system had a hard hiccup since the start of SQL Server, the metrics are contaminated. According to my research, you can&#8217;t flush these, only by taking the DB offline, which I usually avoid in productive environments.</p>



<p class="wp-block-paragraph">After a few more rounds in my head, the solution came quite quickly. These are all snapshot values, I just need the delta between two values and I have real values. And I can also put the whole thing in a time series and have a long-term analysis. Mindblowing <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f61d.png" alt="😝" class="wp-smiley" style="height: 1em; max-height: 1em;" /></p>



<p class="wp-block-paragraph">Google also quickly showed corresponding solutions that I used as a base idea. Thanks to Paul Randal ( <a href="https://www.sqlskills.com/blogs/paul/capturing-io-latencies-period-time/" target="_blank" rel="noopener" title="">sqlskills.com</a> )</p>



<p class="wp-block-paragraph">For analyzing a complete week, this is also not suitable. So I extended the whole thing to a long-term analysis with persistent table.</p>



<div style="height:20px" aria-hidden="true" class="wp-block-spacer"></div>



<h2 class="wp-block-heading" id="snapdisk" style="margin-top:var(--wp--preset--spacing--50);margin-bottom:0">The Solution &#8211;&gt; snapDiskLatency</h2>



<p class="wp-block-paragraph"><em><strong>Repo</strong>: </em>perf_diskspeed/snapDiskLatency</p>



<div style="height:20px" aria-hidden="true" class="wp-block-spacer"></div>



<h3 class="wp-block-heading" style="margin-top:var(--wp--preset--spacing--50);margin-bottom:var(--wp--preset--spacing--50)">What does snapDiskLatency do?</h3>



<p class="wp-block-paragraph">The problem is well-known &#8211; the standard DMV <code>sys.dm_io_virtual_file_stats</code> shows cumulative values since SQL Server startup. One single storage hiccup weeks ago and the latency values are no longer representative.</p>



<p class="wp-block-paragraph">This solves the problem with two simple stored procedures:</p>



<p class="wp-block-paragraph">The first collects the raw data from the DMV hourly and writes it to a permanent table. Why hourly? Shorter intervals lead to unreliable delta calculations &#8211; too little I/O between snapshots makes the values inaccurate. However, this can be individually adjusted since the agent triggers the procedure.</p>



<figure class="wp-block-image size-full" style="margin-top:var(--wp--preset--spacing--50);margin-bottom:var(--wp--preset--spacing--50)"><img loading="lazy" decoding="async" width="1360" height="382" src="https://dbavonnebenan.de/wp-content/uploads/2025/07/disklat_raw.png" alt="snapDiskLatency collect" class="wp-image-567" srcset="https://dbavonnebenan.de/wp-content/uploads/2025/07/disklat_raw.png 1360w, https://dbavonnebenan.de/wp-content/uploads/2025/07/disklat_raw-300x84.png 300w, https://dbavonnebenan.de/wp-content/uploads/2025/07/disklat_raw-1024x288.png 1024w, https://dbavonnebenan.de/wp-content/uploads/2025/07/disklat_raw-768x216.png 768w" sizes="auto, (max-width: 1360px) 100vw, 1360px" /></figure>



<p class="wp-block-paragraph">The second does the delta calculations between snapshots and creates the result. Thus, real latency values are generated for defined time periods, without historical hiccups, which can then be compared with other metrics.</p>



<figure class="wp-block-image size-full" style="margin-top:var(--wp--preset--spacing--50);margin-bottom:var(--wp--preset--spacing--50)"><img loading="lazy" decoding="async" width="1298" height="326" src="https://dbavonnebenan.de/wp-content/uploads/2025/07/disklat_report-2.png" alt="snapDiskLatency report" class="wp-image-571" srcset="https://dbavonnebenan.de/wp-content/uploads/2025/07/disklat_report-2.png 1298w, https://dbavonnebenan.de/wp-content/uploads/2025/07/disklat_report-2-300x75.png 300w, https://dbavonnebenan.de/wp-content/uploads/2025/07/disklat_report-2-1024x257.png 1024w, https://dbavonnebenan.de/wp-content/uploads/2025/07/disklat_report-2-768x193.png 768w" sizes="auto, (max-width: 1298px) 100vw, 1298px" /></figure>



<p class="wp-block-paragraph">Here we see, for example, in the <a href="https://dbavonnebenan.de/sql-server-truncate-vs-delete-dml-or-ddl-en/" title="TRUNCATE TABLE – DDL vs DML – deep dive in operations and practical tips">TRUNCATE TABLE</a> an outlier (NVMe is also underlying here). On the LAB system there&#8217;s no load, DOXIS is just a table with 2 columns and was artificially worked with workload.<br></p>



<div style="height:20px" aria-hidden="true" class="wp-block-spacer"></div>



<h3 class="wp-block-heading" style="margin-top:var(--wp--preset--spacing--50);margin-bottom:var(--wp--preset--spacing--50)"><strong>The Result</strong></h3>



<p class="wp-block-paragraph">Instead of possibly contaminated values:</p>



<ul class="wp-block-list">
<li>Average latencies per interval</li>



<li>Read/Write ratios</li>



<li>Breakdown by database and file type</li>
</ul>



<div style="height:20px" aria-hidden="true" class="wp-block-spacer"></div>



<h3 class="wp-block-heading" style="margin-top:var(--wp--preset--spacing--50);margin-bottom:var(--wp--preset--spacing--50)"><strong>Setup</strong></h3>



<p class="wp-block-paragraph">Create Agent Job, run hourly, done. The complete instructions are in the README, copy &amp; paste &amp; enjoy</p>



<figure class="wp-block-image aligncenter size-full is-resized"><img loading="lazy" decoding="async" width="246" height="470" src="https://dbavonnebenan.de/wp-content/uploads/2025/05/emotes_standing_1.png" alt="happy" class="wp-image-330" style="width:125px;height:auto" srcset="https://dbavonnebenan.de/wp-content/uploads/2025/05/emotes_standing_1.png 246w, https://dbavonnebenan.de/wp-content/uploads/2025/05/emotes_standing_1-157x300.png 157w" sizes="auto, (max-width: 246px) 100vw, 246px" /></figure>



<div style="height:20px" aria-hidden="true" class="wp-block-spacer"></div>



<h2 class="wp-block-heading" style="margin-top:var(--wp--preset--spacing--50);margin-bottom:var(--wp--preset--spacing--50)">Diagrams</h2>



<p class="wp-block-paragraph">Since every good proprietary database monitoring tool does this and presents it graphically, I want to at least show one possibility in Excel in the result. For this, the result of the DataSource or Copy must be pivoted and you can easily recognize your daily peaks.</p>



<figure class="wp-block-image size-full" style="margin-top:var(--wp--preset--spacing--50);margin-bottom:var(--wp--preset--spacing--50)"><img loading="lazy" decoding="async" width="1617" height="604" src="https://dbavonnebenan.de/wp-content/uploads/2025/07/disklat_graph.png" alt="" class="wp-image-572" srcset="https://dbavonnebenan.de/wp-content/uploads/2025/07/disklat_graph.png 1617w, https://dbavonnebenan.de/wp-content/uploads/2025/07/disklat_graph-300x112.png 300w, https://dbavonnebenan.de/wp-content/uploads/2025/07/disklat_graph-1024x382.png 1024w, https://dbavonnebenan.de/wp-content/uploads/2025/07/disklat_graph-768x287.png 768w, https://dbavonnebenan.de/wp-content/uploads/2025/07/disklat_graph-1536x574.png 1536w" sizes="auto, (max-width: 1617px) 100vw, 1617px" /></figure><p>The post <a href="https://dbavonnebenan.de/sql-server-disk-latency-en/">Measuring SQL Server Disk Latency Correctly – snapDiskLatency</a> first appeared on <a href="https://dbavonnebenan.de">DBA von Nebenan</a>.</p>]]></content:encoded>
					
					<wfw:commentRss>https://dbavonnebenan.de/sql-server-disk-latency-en/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>PowerShell Classes for Beginners &#8211; Structured Code Instead of Function Chaos</title>
		<link>https://dbavonnebenan.de/powershell-classes-for-beginner-en/</link>
					<comments>https://dbavonnebenan.de/powershell-classes-for-beginner-en/#respond</comments>
		
		<dc:creator><![CDATA[Gabriel]]></dc:creator>
		<pubDate>Sat, 14 Jun 2025 18:36:58 +0000</pubDate>
				<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[Classes]]></category>
		<category><![CDATA[eng]]></category>
		<category><![CDATA[oop]]></category>
		<category><![CDATA[TUTORIAL]]></category>
		<guid isPermaLink="false">https://dbavonnebenan.de/?p=528</guid>

					<description><![CDATA[<p>Intro I&#8217;ve always used PowerShell following the same pattern, that&#8217;s roughly how my learning path followed the PowerShell Best Practices. I&#8217;ve been operating on these last two levels for quite a long time now, of course getting more efficient and generally my PowerShell knowledge became broader. During this development, however, I noticed a problem: I&#8217;m [&#8230;]</p>
<p>The post <a href="https://dbavonnebenan.de/powershell-classes-for-beginner-en/">PowerShell Classes for Beginners – Structured Code Instead of Function Chaos</a> first appeared on <a href="https://dbavonnebenan.de">DBA von Nebenan</a>.</p>]]></description>
										<content:encoded><![CDATA[<h2 class="wp-block-heading" style="margin-bottom:var(--wp--preset--spacing--50)">Intro</h2>



<p class="wp-block-paragraph">I&#8217;ve always used PowerShell following the same pattern, that&#8217;s roughly how my learning path followed the PowerShell Best Practices.</p>



<ul class="wp-block-list">
<li>Quick and Dirty one-liners in the console, nowadays Terminal</li>



<li>Gradually, those one-liners evolved into PowerShell scripts with better organized one-liners</li>



<li>Variables came along, then functions, reusability increased</li>



<li>Functions became modules, persistent data storage in JSON and technologically that was the end for a while</li>



<li>The last highlight was threading and runspaces</li>
</ul>



<p class="wp-block-paragraph">I&#8217;ve been operating on these last two levels for quite a long time now, of course getting more efficient and generally my PowerShell knowledge became broader.</p>



<p class="wp-block-paragraph">During this development, however, I noticed a problem: I&#8217;m a very organized person, at least in my professional environment 😉, and so should my code be, structured. I don&#8217;t think much of Clean Code, comments are just important at certain points, for me, for others, for my customers. Besides comments, structure is also important &#8211; what good do comments do me in a &#8218;bucket of chars&#8216;? I also love symmetrical code, yeah go ahead and laugh, but it immediately makes clear what&#8217;s a variable, what&#8217;s an assignment and what&#8217;s the value. When I see something like this&#8230;</p>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-461897f4 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:66.66%"><div class="wp-block-syntaxhighlighter-code "><pre class="brush: powershell; title: ; notranslate">
$userInfo = @{
   Name = $varSurename
   Address = $varStreet
   Data = $varRandomLongVar
}

$configSettings = @{
   ServerName = &#039;localhost&#039;
   Port = 5432
   Database = &#039;mydb&#039;
   Timeout = 30
}

$employee = @{
   Personal = @{
       FirstName = $varSurename
       LastName = &#039;Doe&#039;
       Street = $varStreet
   }
   Work = @{
       Department = &#039;IT&#039;
       Position = &#039;Developer&#039;
   }
}
</pre></div></div>



<div class="wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:33.33%">
<figure class="wp-block-image aligncenter size-full is-resized"><img loading="lazy" decoding="async" width="264" height="329" src="https://dbavonnebenan.de/wp-content/uploads/2025/06/emote-4.png" alt="" class="wp-image-516" style="width:229px;height:auto" srcset="https://dbavonnebenan.de/wp-content/uploads/2025/06/emote-4.png 264w, https://dbavonnebenan.de/wp-content/uploads/2025/06/emote-4-241x300.png 241w" sizes="auto, (max-width: 264px) 100vw, 264px" /></figure>
</div>
</div>



<p class="wp-block-paragraph" style="margin-top:var(--wp--preset--spacing--50);margin-bottom:var(--wp--preset--spacing--50)">… my insides turn outward 🤣 Maybe it&#8217;s also a disease. This is a normal writing style that&#8217;s considered clean, I know, but it should look like this …</p>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-461897f4 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:66.66%"><div class="wp-block-syntaxhighlighter-code "><pre class="brush: powershell; title: ; notranslate">
$userInfo = @{
   Name 	= $varSurename
   Address 	= $varStreet
   Data 	= $varRandomLongVar
}

$configSettings = @{
   ServerName 	= &#039;localhost&#039;
   Port 		= 5432
   Database 	= &#039;mydb&#039;
   Timeout 		= 30
}

$employee = @{
   Personal = @{
       FirstName 	= $varSurename
       LastName 	= &#039;Doe&#039;
       Street 		= $varStreet
   }
   Work 	= @{
       Department 	= &#039;IT&#039;
       Position 	= &#039;Developer&#039;
   }
}

$users = @(
   @{ Name = &#039;Alice&#039;; 		Role = &#039;Admin&#039; }
   @{ Name = $varSurename; 	Role = &#039;User&#039; }
)
</pre></div></div>



<div class="wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:33.33%">
<figure class="wp-block-image aligncenter size-full"><img loading="lazy" decoding="async" width="251" height="330" src="https://dbavonnebenan.de/wp-content/uploads/2025/06/emote-5.png" alt="" class="wp-image-515" srcset="https://dbavonnebenan.de/wp-content/uploads/2025/06/emote-5.png 251w, https://dbavonnebenan.de/wp-content/uploads/2025/06/emote-5-228x300.png 228w" sizes="auto, (max-width: 251px) 100vw, 251px" /></figure>
</div>
</div>



<p class="wp-block-paragraph" style="margin-top:var(--wp--preset--spacing--50);margin-bottom:0">Anyway, that&#8217;s not what this is about. It&#8217;s basically the case that structure and order gradually decrease in larger projects and classes play exactly into this topic. But why only now? Classes have existed since PowerShell 5.0.</p>



<h2 class="wp-block-heading" style="margin-top:var(--wp--preset--spacing--70);margin-bottom:var(--wp--preset--spacing--50)">AI Assisted Coding</h2>



<p class="wp-block-paragraph">Of course I was an early adopter of all the AI chatbots and was amazed at what ChatGPT could already do 2 years ago. Of course the code, regardless of language, was unusable, but definitely useful for knowledge generation. As the quality progressed, the code got better and the solution approaches became more and more interesting.</p>



<p class="wp-block-paragraph">At some point, classes started appearing in the suggestions and I consistently ignored them 😝. Through my C# journeys, I knew that classes are simply the standard, but you should fundamentally know what you want to do with them in the project to design them cleanly. And I didn&#8217;t want to make that effort.</p>



<h2 class="wp-block-heading" style="margin-top:var(--wp--preset--spacing--70);margin-bottom:var(--wp--preset--spacing--50)">The New Project</h2>



<p class="wp-block-paragraph">It was time to adapt a 4-year-old solution to new requirements, as is sometimes the case. Since my knowledge doesn&#8217;t stand still either, after briefly skimming through the code, I decided:</p>



<p class="has-text-align-center wp-block-paragraph" style="margin-top:var(--wp--preset--spacing--50);margin-bottom:var(--wp--preset--spacing--50)"><strong>I&#8217;M NOT TOUCHING THIS ANYMORE</strong>, <strong>THIS ALL HAS TO BE NEW!!</strong></p>



<p class="wp-block-paragraph">Now I was in the relaxed position that everything was available for the solution:</p>



<ul class="wp-block-list">
<li>Program flow chart</li>



<li>Function descriptions</li>



<li>Programmatic solution of the required functions at the lowest level</li>



<li>4 years of lessons learned</li>
</ul>



<p class="wp-block-paragraph">So I only had to worry about orchestrating all the steps and decided to give classes a chance. In theory, this is namely the cleanest and most structured way to code.</p>



<p class="wp-block-paragraph">The result hasn&#8217;t completely changed my way of coding, but it has sustainably changed it &#8211; but more on that later.</p>



<h2 class="wp-block-heading" id="powershell-classes-conclusion" style="margin-top:var(--wp--preset--spacing--70);margin-bottom:var(--wp--preset--spacing--50)">Conclusion After 5 Weeks in the Project</h2>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-461897f4 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:50%">
<figure class="wp-block-image size-full has-custom-border"><img loading="lazy" decoding="async" width="532" height="500" src="https://dbavonnebenan.de/wp-content/uploads/2025/06/class-perfection.jpg" alt="I SAID PERFECTION" class="has-border-color has-contrast-border-color wp-image-518" style="border-width:1px" srcset="https://dbavonnebenan.de/wp-content/uploads/2025/06/class-perfection.jpg 532w, https://dbavonnebenan.de/wp-content/uploads/2025/06/class-perfection-300x282.jpg 300w" sizes="auto, (max-width: 532px) 100vw, 532px" /></figure>
</div>



<div class="wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:50%">
<p class="wp-block-paragraph">Classes in PowerShell are so incredibly simple, so structured, so beautiful❤️. Of course the use case has to fit, since the implementation initially requires more structure, but when that&#8217;s given, there will be no way around classes for me anymore.</p>
</div>
</div>



<h2 class="wp-block-heading" style="margin-top:var(--wp--preset--spacing--70);margin-bottom:var(--wp--preset--spacing--50)">Why This Article, Aren&#8217;t There Enough Already?</h2>



<p class="wp-block-paragraph">There are some articles about classes in PowerShell and object orientation, but still this topic is hardly covered in a classic tutorial. It&#8217;s always the functions and you have to know about this topic to find it. So I&#8217;m simply writing another article, also in german this time, to maybe reach one or the other additionally, because&#8230;</p>



<figure class="wp-block-image aligncenter size-large is-resized" style="margin-top:var(--wp--preset--spacing--80);margin-bottom:var(--wp--preset--spacing--80)"><img loading="lazy" decoding="async" width="1024" height="191" src="https://dbavonnebenan.de/wp-content/uploads/2025/06/powershell-classes-ftw-1024x191.png" alt="" class="wp-image-517" style="width:493px;height:auto" srcset="https://dbavonnebenan.de/wp-content/uploads/2025/06/powershell-classes-ftw-1024x191.png 1024w, https://dbavonnebenan.de/wp-content/uploads/2025/06/powershell-classes-ftw-300x56.png 300w, https://dbavonnebenan.de/wp-content/uploads/2025/06/powershell-classes-ftw-768x143.png 768w, https://dbavonnebenan.de/wp-content/uploads/2025/06/powershell-classes-ftw.png 1153w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<hr class="wp-block-separator has-alpha-channel-opacity" style="margin-top:var(--wp--preset--spacing--80);margin-bottom:var(--wp--preset--spacing--80)"/>



<h2 class="wp-block-heading" style="margin-top:var(--wp--preset--spacing--70);margin-right:var(--wp--preset--spacing--30);margin-bottom:var(--wp--preset--spacing--50)">Background Info on PowerShell Classes &#8211; OOP Since Version 5.0</h2>



<p class="wp-block-paragraph">Classes have existed in PowerShell since PowerShell 5.0, so 2016&#8230; and I only learned about them a year ago 🤦‍♂️. PowerShell classes bring object-oriented programming concepts to PowerShell and thus also have all the basic features of a class.</p>



<ul class="wp-block-list">
<li><strong>Properties</strong>: Properties are strongly typed and support most validation attributes like [ValidateNotNull()], [ValidateRange()], etc.</li>



<li><strong>Methods</strong>: Methods are functions bound to an object and must explicitly define the return type</li>



<li><strong>Constructors</strong>: Enable initialization of objects with specific values</li>



<li><strong>Inheritance</strong>: Allows creating new classes from existing classes and extending their functionality</li>
</ul>



<p class="wp-block-paragraph">A class, after loading, is its own data type &#8211; more on that later.</p>



<hr class="wp-block-separator has-alpha-channel-opacity" style="margin-top:var(--wp--preset--spacing--80);margin-bottom:var(--wp--preset--spacing--80)"/>



<h2 class="wp-block-heading" style="margin-top:var(--wp--preset--spacing--70);margin-right:var(--wp--preset--spacing--30);margin-bottom:var(--wp--preset--spacing--50)">And How Does This Work Now?</h2>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-461897f4 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-vertically-aligned-top is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:20%">
<figure class="wp-block-image aligncenter size-full is-resized"><img loading="lazy" decoding="async" width="307" height="328" src="https://dbavonnebenan.de/wp-content/uploads/2025/05/emotes_2.png" alt="Explanation incoming" class="wp-image-345" style="width:143px;height:auto" srcset="https://dbavonnebenan.de/wp-content/uploads/2025/05/emotes_2.png 307w, https://dbavonnebenan.de/wp-content/uploads/2025/05/emotes_2-281x300.png 281w" sizes="auto, (max-width: 307px) 100vw, 307px" /></figure>
</div>



<div class="wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:80%">
<p class="wp-block-paragraph">I still remember how I struggled with OOP many years ago and it&#8217;s generally assumed that rather admins than full-blood software developers initially deal with PowerShell. So I&#8217;ll try to keep it totally simple.</p>
</div>
</div>



<div style="height:26px" aria-hidden="true" class="wp-block-spacer"></div>



<p class="wp-block-paragraph">I&#8217;ll take a fictional module that queries server properties via remoting and evaluates them locally, a classic admin task.</p>



<p class="wp-block-paragraph"><strong>ATTENTION:</strong> Of course this example is very constructed and not necessarily practical, but in my opinion it shows the relationships quite well.</p>



<p class="wp-block-paragraph">This PowerShell classes tutorial shows you the most important concepts for object-oriented programming with PowerShell.</p>



<div style="height:26px" aria-hidden="true" class="wp-block-spacer"></div>



<h3 class="wp-block-heading" style="margin-top:var(--wp--preset--spacing--40);margin-right:var(--wp--preset--spacing--20);margin-bottom:var(--wp--preset--spacing--40);margin-left:var(--wp--preset--spacing--20)">Properties</h3>



<p class="wp-block-paragraph" style="margin-top:0">A class has a firmly defined set of properties at all times. This cannot be changed at runtime, but must be described in the definition of the class.</p>



<div style="height:26px" aria-hidden="true" class="wp-block-spacer"></div>



<h3 class="wp-block-heading" style="margin-top:var(--wp--preset--spacing--40);margin-right:var(--wp--preset--spacing--20);margin-bottom:var(--wp--preset--spacing--40);margin-left:var(--wp--preset--spacing--20)">The Class</h3>


<div class="wp-block-syntaxhighlighter-code "><pre class="brush: powershell; title: ; notranslate">
class Server {
# All Possible properties for the Server class
    &#x5B;string]        $ServerName
    &#x5B;string]        $Status
    &#x5B;ipaddress]     $IP 
    &#x5B;string]        $Location
    &#x5B;datetime]      $LastBootTime
    &#x5B;string]        $OperatingSystem
# -------------------------------------------
}
</pre></div>


<div style="height:26px" aria-hidden="true" class="wp-block-spacer"></div>



<h3 class="wp-block-heading" style="margin-top:var(--wp--preset--spacing--40);margin-right:var(--wp--preset--spacing--20);margin-bottom:var(--wp--preset--spacing--40);margin-left:var(--wp--preset--spacing--20)">Constructors</h3>



<p class="wp-block-paragraph" style="margin-bottom:var(--wp--preset--spacing--50)">A constructor creates the instance of a class. The class can receive default values, or the constructor expects parameters. In our case, a server name makes sense. So I give the property <strong>ServerName</strong> a value directly when loading.</p>


<div class="wp-block-syntaxhighlighter-code "><pre class="brush: powershell; title: ; notranslate">
class Server {
# All Possible properties for the Server class
    &#x5B;string]        $ServerName
    &#x5B;string]        $Status
    &#x5B;ipaddress]     $IP 
    &#x5B;string]        $Location
    &#x5B;datetime]      $LastBootTime
    &#x5B;string]        $OperatingSystem
# -------------------------------------------

    # Constructor
    Server(&#x5B;string]$name) {
        $this.ServerName = $name
    }
}
</pre></div>


<div style="height:26px" aria-hidden="true" class="wp-block-spacer"></div>



<p class="wp-block-paragraph">Now we have a class, but how do we get a server in there? By loading the class into a variable and preferably also dynamically for all servers.</p>



<div style="height:26px" aria-hidden="true" class="wp-block-spacer"></div>


<div class="wp-block-syntaxhighlighter-code "><pre class="brush: powershell; title: ; notranslate">
class Server {
# All Possible properties for the Server class
    &#x5B;string]        $ServerName
    &#x5B;string]        $Status
    &#x5B;ipaddress]     $IP 
    &#x5B;string]        $Location
    &#x5B;datetime]      $LastBootTime
    &#x5B;string]        $OperatingSystem
# -------------------------------------------

    # Constructor
    Server(&#x5B;string]$name) {
        $this.ServerName = $name
    }
}

$serverlist = @(&#039;Server1&#039;,&#039;Server2&#039;,&#039;Server3&#039;)

foreach ( $server in $serverlist ) {
    
    # Create a new Server object for each server name
    New-Variable -Name &quot;obj_$server&quot; -Value (&#x5B;Server]::new($server)) -Force

}
</pre></div>


<div style="height:26px" aria-hidden="true" class="wp-block-spacer"></div>



<h3 class="wp-block-heading" style="margin-top:var(--wp--preset--spacing--40);margin-right:var(--wp--preset--spacing--20);margin-bottom:var(--wp--preset--spacing--40);margin-left:var(--wp--preset--spacing--20)">Methods</h3>



<p class="wp-block-paragraph">Methods make classes really interesting in my opinion. Methods are the functions with which I can manipulate properties of classes or generate RETURNS based on arguments that I add to the call. Here I already specify the type of return in the method definition. <strong>VOID</strong> thus logically creates no return.</p>



<div style="height:26px" aria-hidden="true" class="wp-block-spacer"></div>


<div class="wp-block-syntaxhighlighter-code "><pre class="brush: powershell; title: ; notranslate">
class Server {
    &#x5B;string]        $ServerName
    &#x5B;string]        $Status
    &#x5B;ipaddress]     $IP 
    &#x5B;string]        $Location
    &#x5B;datetime]      $LastBootTime
    &#x5B;string]        $OperatingSystem

    Server(&#x5B;string]$name) {
        $this.ServerName = $name
    }

    &#x5B;void] GetServerInfo() {

        try {

            $osInfo = Invoke-Command -ComputerName $this.ServerName -ScriptBlock {
                Get-CimInstance Win32_OperatingSystem | Select-Object Caption, LastBootUpTime
            } -ErrorAction Stop

            $this.IP = Invoke-Command -ComputerName $this.ServerName -ScriptBlock {
                (Get-NetIPAddress -AddressFamily IPv4 | Where-Object {$_.IPAddress -notlike &#039;169.*&#039;} | Select-Object -First 1).IPAddress
            } -ErrorAction Stop

            $this.OperatingSystem = $osInfo.Caption
            $this.LastBootTime    = $osInfo.LastBootUpTime
            $this.Status          = &quot;Online&quot;

        } catch {

            $this.Status = &quot;Offline&quot;

        }
    }
}

$serverlist = @(&#039;Server1&#039;,&#039;Server2&#039;,&#039;Server3&#039;)

foreach ($server in $serverlist) {
    New-Variable -Name &quot;obj_$server&quot; -Value (&#x5B;Server]::new($server)) -Force
}

$obj_Server1.GetServerInfo()
$obj_Server2.GetServerInfo()
$obj_Server3.GetServerInfo()
</pre></div>


<div style="height:26px" aria-hidden="true" class="wp-block-spacer"></div>



<p class="wp-block-paragraph">Here I&#8217;ve inserted the method <strong>GetServerInfo()</strong>, which now collects the information about the server. I don&#8217;t need to pass an argument or start a cmdlet, since the instance (server name) of the class (Server) has inherited everything. I don&#8217;t need external functions, variables or anything else, everything is available in the class. ❤️ Following an example from the LAB:</p>



<div style="height:26px" aria-hidden="true" class="wp-block-spacer"></div>



<figure class="wp-block-image aligncenter size-full" style="margin-top:var(--wp--preset--spacing--30);margin-bottom:var(--wp--preset--spacing--30)"><img loading="lazy" decoding="async" width="542" height="283" src="https://dbavonnebenan.de/wp-content/uploads/2025/06/powershell_classes_lab.png" alt="LAB Result of simple powershell class" class="wp-image-532" srcset="https://dbavonnebenan.de/wp-content/uploads/2025/06/powershell_classes_lab.png 542w, https://dbavonnebenan.de/wp-content/uploads/2025/06/powershell_classes_lab-300x157.png 300w" sizes="auto, (max-width: 542px) 100vw, 542px" /><figcaption class="wp-element-caption">LAB Results</figcaption></figure>



<div style="height:26px" aria-hidden="true" class="wp-block-spacer"></div>



<h2 class="wp-block-heading" style="margin-top:var(--wp--preset--spacing--70);margin-right:0;margin-bottom:var(--wp--preset--spacing--50);margin-left:0">And Now, Where&#8217;s the Benefit?</h2>



<p class="wp-block-paragraph">Of course this isn&#8217;t the most optimal use case, but it&#8217;s understandable. One possibility would be to create a logging class. Here from my project:</p>



<div style="height:26px" aria-hidden="true" class="wp-block-spacer"></div>


<div class="wp-block-syntaxhighlighter-code "><pre class="brush: powershell; title: ; notranslate">
class PatchLogger {
     &#x5B;string]        $ServerName
     &#x5B;string]        $LogPathServer
     &#x5B;string]        $LogLevel = &#039;INFO&#039;
     &#x5B;hashtable]     $LogTargets
     &#x5B;bool]          $ConsoleOutput
     &#x5B;bool]          $StreamOutput
     &#x5B;string]        $VerbosePreference
     &#x5B;string]        $DebugPreference

     # Constructor
     PatchLogger(	&#x5B;string]$LogPathServer,
					&#x5B;string]$ServerName,
					&#x5B;string]$MessageFile,
					&#x5B;string]$ErrorFile,
					&#x5B;string]$VerboseFile,
					&#x5B;string]$DebugFile,
					&#x5B;string]$SqlServerFile,
					&#x5B;bool]$ConsoleOutput 	= $true,
					&#x5B;bool]$StreamOutput 	= $false) {
					
          $this.LogPathServer   = $LogPathServer
          $this.ServerName      = $ServerName
          $this.ConsoleOutput   = $ConsoleOutput
          $this.StreamOutput    = $StreamOutput
          $this.LogTargets      = @{
               Main           = $MessageFile
               Error          = $ErrorFile
               Verbose        = $VerboseFile
               Debug          = $DebugFile
               SqlServer      = $SqlServerFile
          }

          $this.VerbosePreference = $Global:VerbosePreference
          $this.DebugPreference   = $Global:DebugPreference

          if ( -not (Test-Path $this.LogPathServer) ) {
               New-Item -Path $this.LogPathServer -ItemType Directory -Force | Out-Null
          }
    }
	
}
</pre></div>


<div style="height:26px" aria-hidden="true" class="wp-block-spacer"></div>



<p class="wp-block-paragraph">An instance of the class is loaded directly into the variable <strong>$PatchLogger</strong> when the module loads, and from now on I can start right away with <strong>$PatchLogger.Info($message)</strong>. How? Such a short command with such a complex class? Let&#8217;s get to the last thing, which in my opinion is the advantage par excellence: <strong>Overloading</strong>.</p>



<div style="height:26px" aria-hidden="true" class="wp-block-spacer"></div>



<h2 class="wp-block-heading" style="margin-top:var(--wp--preset--spacing--70);margin-bottom:var(--wp--preset--spacing--50)">Overloading</h2>



<p class="wp-block-paragraph">Overloading means nothing other than the number of arguments I pass to a method. Based on the number, the engine can distinguish which method is used, since I can have several with the same name. The technical term would be Method Overloading.</p>



<p class="wp-block-paragraph">The added value lies in the fact that I don&#8217;t have to work with BoundParams, Switch or IF loops like with functions. When a helper method is called with only one argument, the missing arguments are filled in internally and the main method is called.</p>



<p class="wp-block-paragraph">Let&#8217;s take the example <strong>$PatchLogger.Info($message)</strong></p>



<div style="height:26px" aria-hidden="true" class="wp-block-spacer"></div>


<div class="wp-block-syntaxhighlighter-code "><pre class="brush: powershell; title: ; notranslate">
# Hauptmethode
&#x5B;hashtable] WriteLog(&#x5B;string]$Level, &#x5B;string]$Message, &#x5B;string]$MessageCode, &#x5B;int]$Severity, &#x5B;string]$Target, &#x5B;bool]$ReturnObject) {...}

# Helfermethode
&#x5B;hashtable] Info(&#x5B;string]$Message) {
      return $this.WriteLog(&#039;INFO&#039;, $Message, $null, 0, &#039;Main&#039;, $true)
}

# Helfermethode 2
&#x5B;hashtable] Info(&#x5B;string]$Message, &#x5B;string]$MessageCode) {
      return $this.WriteLog(&#039;INFO&#039;, $Message, $MessageCode, 0, &#039;Main&#039;, $true)
}
</pre></div>


<div style="height:26px" aria-hidden="true" class="wp-block-spacer"></div>



<p class="wp-block-paragraph">What will be most needed in a large module? A simple message to the main log, without message code and frills. So the helper method calls the main method with the default values that do exactly that.</p>



<p class="wp-block-paragraph">Let&#8217;s look at helper method 2. This expects 2 arguments, namely a MessageCode. Now I can write a registered message with <strong>$PatchLogger.Info(&#8222;Process XY completed&#8220;,&#8220;I0002&#8243;)</strong>.</p>



<p class="wp-block-paragraph">Of course I can also implement all this with functions, but I don&#8217;t think it&#8217;s as structured and pretty.</p>



<div style="height:26px" aria-hidden="true" class="wp-block-spacer"></div>



<details class="wp-block-details is-layout-flow wp-block-details-is-layout-flow"><summary>Complete PatchLogger Class</summary><div class="wp-block-syntaxhighlighter-code "><pre class="brush: powershell; title: ; notranslate">
class PatchLogger {
     &#x5B;string]        $ServerName
     &#x5B;string]        $LogPathServer
     &#x5B;string]        $LogLevel = &#039;INFO&#039;
     &#x5B;hashtable]     $LogTargets
     &#x5B;bool]          $ConsoleOutput
     &#x5B;bool]          $StreamOutput
     &#x5B;string]        $VerbosePreference
     &#x5B;string]        $DebugPreference

     # Constructor
     PatchLogger(&#x5B;string]$LogPathServer, &#x5B;string]$ServerName, &#x5B;string]$MessageFile, &#x5B;string]$ErrorFile, &#x5B;string]$VerboseFile, &#x5B;string]$DebugFile, &#x5B;string]$SqlServerFile, &#x5B;bool]$ConsoleOutput = $true, &#x5B;bool]$StreamOutput = $false) {
          $this.LogPathServer   = $LogPathServer
          $this.ServerName      = $ServerName
          $this.ConsoleOutput   = $ConsoleOutput
          $this.StreamOutput    = $StreamOutput
          $this.LogTargets      = @{
               Main           = $MessageFile
               Error          = $ErrorFile
               Verbose        = $VerboseFile
               Debug          = $DebugFile
               SqlServer      = $SqlServerFile
          }

          $this.VerbosePreference = $Global:VerbosePreference
          $this.DebugPreference   = $Global:DebugPreference

          if ( -not (Test-Path $this.LogPathServer) ) {
               New-Item -Path $this.LogPathServer -ItemType Directory -Force | Out-Null
          }
     }

     &#x5B;void] UpdatePreferences(&#x5B;string]$VerbosePreference, &#x5B;string]$DebugPreference) {
          $this.VerbosePreference = $VerbosePreference
          $this.DebugPreference   = $DebugPreference
     }

     # Central WriteLog method - all other methods call this one
     &#x5B;object] WriteLog(&#x5B;string]$Level, &#x5B;string]$Message, &#x5B;string]$MessageCode, &#x5B;int]$Severity, &#x5B;string]$Target, &#x5B;bool]$ReturnObject) {

          $timestamp          = Get-Date -Format &quot;yyyy-MM-dd HH:mm:ss&quot;
          $severityText       = if ($Severity -ne 9999) { &quot;S$Severity&quot; } else { &quot;&quot; }
          $messageCodeText    = if ($MessageCode) { &quot; $MessageCode&quot; } else { &quot;&quot; }

          $paddedLevel        = &quot;{0,-9}&quot; -f &quot;&#x5B;$Level]&quot;

          $additionalInfo     = &quot;$severityText$messageCodeText&quot;
          $logEntry           = if ( $level -eq &#039;BLANK&#039; ) {
                                   &quot;&quot;
                                } elseif ( $Level -notin @(&#039;VERBOSE&#039;,&#039;DEBUG&#039;) -and -not &#x5B;string]::IsNullOrEmpty($additionalInfo) ) {
                                   &quot;&#x5B;$timestamp] $paddedLevel &#x5B;$($this.ServerName)] $Message ($additionalInfo)&quot;
                                } else {
                                   &quot;&#x5B;$timestamp] $paddedLevel &#x5B;$($this.ServerName)] $Message&quot;
                              }

          $targetFile = $this.LogTargets&#x5B;$Target]
          if ( $targetFile ) {
               try {
                    Add-Content -Path $targetFile -Value $logEntry -Encoding UTF8

                    $verboseFile = $this.LogTargets&#x5B;&#039;Verbose&#039;]
                    if ( $verboseFile -and $Level -ne &#039;VERBOSE&#039; ) {
                         Add-Content -Path $verboseFile -Value $logEntry -Encoding UTF8 # for unbroken verbose stream
                    }

               } catch {
                    Invoke-ScriptError $_
               }
          }

          if ( $this.ConsoleOutput ) {
               switch ( $Level ) {
                    &#039;ERROR&#039;        { Write-Host $logEntry -ForegroundColor Red }
                    &#039;WARNING&#039;      { Write-Host $logEntry -ForegroundColor Yellow }
                    &#039;INFO&#039;         { Write-Host $logEntry -ForegroundColor Green }
                    &#039;BLANK&#039;        { Write-Host $logEntry}
                    &#039;VERBOSE&#039;      {
                         if ( $this.VerbosePreference -ne &#039;SilentlyContinue&#039; ) {
                              Write-Host $logEntry -ForegroundColor Cyan
                         }
                    }
                    &#039;DEBUG&#039;        {
                         if ( $this.DebugPreference -ne &#039;SilentlyContinue&#039; ) {
                              Write-Host $logEntry -ForegroundColor Magenta
                         }
                    }
               }
          }

          # PowerShell streams for integration - only if explicitly enabled
          if ( $this.StreamOutput ) {
               switch ($Level) {
                    &#039;ERROR&#039;   { Write-Error       $Message -ErrorAction Continue }
                    &#039;WARNING&#039; { Write-Warning     $Message }
                    &#039;VERBOSE&#039; { Write-Verbose     $Message }
                    &#039;DEBUG&#039;   { Write-Debug       $Message }
               }
          }

          # Return object only when requested
          if ( $ReturnObject ) {
               return @{
                    HasError    = $Level -eq &#039;ERROR&#039;
                    HasWarning  = $Level -eq &#039;WARNING&#039;
                    MessageCode = if ( $MessageCode ) { $MessageCode } else { $null }
                    Message     = $Message
                    Severity    = $Severity
                    Level       = $Level
                    Target      = $Target
               }
          }

          return $null
     }

     # BLANK Line
     &#x5B;void] BlankLine() {
          $this.WriteLog(&#039;BLANK&#039;, &#039;&#039;, $null, 0, &#039;Main&#039;, $false)
     }

     # INFO Methods - standard return hashtable
     &#x5B;hashtable] Info(&#x5B;string]$Message) {
          return $this.WriteLog(&#039;INFO&#039;, $Message, $null, 0, &#039;Main&#039;, $true)
     }

     &#x5B;hashtable] Info(&#x5B;string]$Message, &#x5B;string]$MessageCode) {
          return $this.WriteLog(&#039;INFO&#039;, $Message, $MessageCode, 0, &#039;Main&#039;, $true)
     }

     # INFO NoReturn
     &#x5B;void] InfoNoReturn(&#x5B;string]$Message) {
          $this.WriteLog(&#039;INFO&#039;, $Message, $null, 0, &#039;Main&#039;, $false)
     }

     &#x5B;void] InfoNoReturn(&#x5B;string]$Message, &#x5B;string]$MessageCode) {
          $this.WriteLog(&#039;INFO&#039;, $Message, $MessageCode, 0, &#039;Main&#039;, $false)
     }

     # WARNING Methods - standard return hashtable
     &#x5B;hashtable] Warning(&#x5B;string]$Message) {
          return $this.WriteLog(&#039;WARNING&#039;, $Message, $null, 1, &#039;Main&#039;, $true)
     }

     &#x5B;hashtable] Warning(&#x5B;string]$Message, &#x5B;string]$MessageCode) {
          return $this.WriteLog(&#039;WARNING&#039;, $Message, $MessageCode, 1, &#039;Main&#039;, $true)
     }

     # WARNING NoReturn
     &#x5B;void] WarningNoReturn(&#x5B;string]$Message) {
          $this.WriteLog(&#039;WARNING&#039;, $Message, $null, 1, &#039;Main&#039;, $false)
     }

     &#x5B;void] WarningNoReturn(&#x5B;string]$Message, &#x5B;string]$MessageCode) {
          $this.WriteLog(&#039;WARNING&#039;, $Message, $MessageCode, 1, &#039;Main&#039;, $false)
     }

     # ERROR Methods - standard return hashtable
     &#x5B;hashtable] Error(&#x5B;string]$Message) {
          return $this.WriteLog(&#039;ERROR&#039;, $Message, $null, 2, &#039;Error&#039;, $true)
     }

     &#x5B;hashtable] Error(&#x5B;string]$Message, &#x5B;string]$MessageCode) {
          return $this.WriteLog(&#039;ERROR&#039;, $Message, $MessageCode, 2, &#039;Error&#039;, $true)
     }

     # ERROR NoReturn
     &#x5B;void] ErrorNoReturn(&#x5B;string]$Message) {
          $this.WriteLog(&#039;ERROR&#039;, $Message, $null, 2, &#039;Error&#039;, $false)
     }

     &#x5B;void] ErrorNoReturn(&#x5B;string]$Message, &#x5B;string]$MessageCode) {
          $this.WriteLog(&#039;ERROR&#039;, $Message, $MessageCode, 2, &#039;Error&#039;, $false)
     }

     # VERBOSE &amp; DEBUG - NoReturn
     &#x5B;void] Verbose(&#x5B;string]$Message) {
          $this.WriteLog(&#039;VERBOSE&#039;, $Message, $null, 0, &#039;Verbose&#039;, $false)
     }

     &#x5B;void] Debug(&#x5B;string]$Message) {
          $this.WriteLog(&#039;DEBUG&#039;, $Message, $null, 0, &#039;Debug&#039;, $false)
     }

     # Step/SQL/AG Methods - NoReturn
     &#x5B;void] StepStart(&#x5B;int]$Step, &#x5B;string]$StepName) {
          $this.BlankLine()
          $message = &quot;========================= STEP $Step START: $StepName =========================&quot;
          $this.WriteLog(&#039;INFO&#039;, $message, $null, 9999, &#039;Main&#039;, $false)
     }

     &#x5B;void] StepEnd(&#x5B;int]$Step, &#x5B;string]$StepName, &#x5B;bool]$Success) {
          $status   = if ( $Success ) { &quot;SUCCESS&quot; } else { &quot;FAILED&quot; }
          $message  = &quot;========================= STEP $Step END: $StepName - $status =========================&quot;
          $this.WriteLog(&#039;INFO&#039;, $message, $null, 9999, &#039;Main&#039;, $false)
          $this.BlankLine()
     }

}
</pre></div></details>



<div style="height:26px" aria-hidden="true" class="wp-block-spacer"></div>



<h2 class="wp-block-heading" style="margin-top:var(--wp--preset--spacing--70);margin-bottom:var(--wp--preset--spacing--50)">Summary</h2>



<p class="wp-block-paragraph">PowerShell classes revolutionize how you structure larger projects. Available since PowerShell 5.0, they offer object-oriented programming with properties, methods, constructors, and method overloading. The initial extra effort pays off through clean, maintainable code &#8211; especially for modules and more complex function collections.</p>



<p class="wp-block-paragraph"><strong>The most important advantages at a glance:</strong></p>



<ul class="wp-block-list">
<li>Strongly typed properties with validation</li>



<li>Encapsulated functionality through methods</li>



<li>Elegant overloading instead of complex parameter logic and a structure that remains understandable even after months</li>
</ul>



<p class="wp-block-paragraph">For daily-doing scripts, the classic approach remains more practical, but as soon as reusability and structure become important, there&#8217;s no way around classes for me anymore. 🫡</p>



<div style="height:75px" aria-hidden="true" class="wp-block-spacer"></div>


<figure style="width:250px;height:250px" class="wp-block-post-featured-image"><a href="https://dbavonnebenan.de/powershell-classes-for-beginner-en/" target="_self"  style="height:250px"><img loading="lazy" decoding="async" width="256" height="256" src="https://dbavonnebenan.de/wp-content/uploads/2025/06/logo-powershell-meets-classes.png" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="PowerShell Classes for Beginners &#8211; Structured Code Instead of Function Chaos" style="height:250px;object-fit:cover;" srcset="https://dbavonnebenan.de/wp-content/uploads/2025/06/logo-powershell-meets-classes.png 256w, https://dbavonnebenan.de/wp-content/uploads/2025/06/logo-powershell-meets-classes-150x150.png 150w" sizes="auto, (max-width: 256px) 100vw, 256px" /></a></figure><p>The post <a href="https://dbavonnebenan.de/powershell-classes-for-beginner-en/">PowerShell Classes for Beginners – Structured Code Instead of Function Chaos</a> first appeared on <a href="https://dbavonnebenan.de">DBA von Nebenan</a>.</p>]]></content:encoded>
					
					<wfw:commentRss>https://dbavonnebenan.de/powershell-classes-for-beginner-en/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>TRUNCATE TABLE &#8211; DDL vs DML &#8211; deep dive in operations and practical tips</title>
		<link>https://dbavonnebenan.de/sql-server-truncate-vs-delete-dml-or-ddl-en/</link>
					<comments>https://dbavonnebenan.de/sql-server-truncate-vs-delete-dml-or-ddl-en/#respond</comments>
		
		<dc:creator><![CDATA[Gabriel]]></dc:creator>
		<pubDate>Mon, 26 May 2025 13:14:32 +0000</pubDate>
				<category><![CDATA[Sql Server]]></category>
		<category><![CDATA[TSql]]></category>
		<category><![CDATA[eng]]></category>
		<category><![CDATA[PERFORMANCE]]></category>
		<category><![CDATA[ROLLBACK]]></category>
		<category><![CDATA[TABLE]]></category>
		<category><![CDATA[TRANSACTION]]></category>
		<category><![CDATA[TRUNCATE]]></category>
		<guid isPermaLink="false">https://dbavonnebenan.de/?p=323</guid>

					<description><![CDATA[<p>Recently, I stumbled across a LinkedIn post about truncate vs. delete, just like many others out there. Typically, random members post simple SQL Server tips, nicely packaged in graphics and kept general. Although for beginners this is absolutely legitimate &#8211; since these simple entry points can help many newcomers understand and provide a great starting [&#8230;]</p>
<p>The post <a href="https://dbavonnebenan.de/sql-server-truncate-vs-delete-dml-or-ddl-en/">TRUNCATE TABLE – DDL vs DML – deep dive in operations and practical tips</a> first appeared on <a href="https://dbavonnebenan.de">DBA von Nebenan</a>.</p>]]></description>
										<content:encoded><![CDATA[<p class="wp-block-paragraph">Recently, I stumbled across a LinkedIn post about truncate vs. delete, just like many others out there. Typically, random members post simple SQL Server tips, nicely packaged in graphics and kept general. Although for beginners this is absolutely legitimate &#8211; since<strong> </strong>these simple entry points can help many newcomers understand and provide a great starting point &#8211; nevertheless, the fact that the same topics then go viral across various accounts is clearly another matter entirely.</p>



<p class="wp-block-paragraph">Anyway. If you&#8217;re a bit further along in the topic and already know that the pronunciation isn&#8217;t &#8222;SQL&#8220; but &#8222;sequel&#8220; <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f60a.png" alt="😊" class="wp-smiley" style="height: 1em; max-height: 1em;" />, you should fundamentally question these posts, as they mostly generalize.</p>



<p class="wp-block-paragraph">This was also the case in a post about the top 3 SQL mistakes that &#8222;everyone&#8220; makes. And here we are, getting to the point.</p>



<div style="height:32px" aria-hidden="true" class="wp-block-spacer"></div>



<figure class="wp-block-image aligncenter size-full"><a href="https://www.linkedin.com/posts/samiul-fahim_sql-dataengineering-techtips-activity-7328642722653786112-OBfj?utm_source=share&amp;utm_medium=member_desktop&amp;rcm=ACoAACt1yIMBIZu3k0gdHLx7c_luIAnHYYBMtuc"><img loading="lazy" decoding="async" width="391" height="158" src="https://dbavonnebenan.de/wp-content/uploads/2025/05/2025-05-26_09-15.png" alt="TRUNCATE cant rolled back" class="wp-image-324" srcset="https://dbavonnebenan.de/wp-content/uploads/2025/05/2025-05-26_09-15.png 391w, https://dbavonnebenan.de/wp-content/uploads/2025/05/2025-05-26_09-15-300x121.png 300w" sizes="auto, (max-width: 391px) 100vw, 391px" /></a></figure>



<p class="has-text-align-center wp-block-paragraph"><a href="https://www.linkedin.com/posts/samiul-fahim_sql-dataengineering-techtips-activity-7328642722653786112-OBfj?utm_source=share&amp;utm_medium=member_desktop&amp;rcm=ACoAACt1yIMBIZu3k0gdHLx7c_luIAnHYYBMtuc" target="_blank" rel="noreferrer noopener">LinkedIn</a></p>



<div style="height:32px" aria-hidden="true" class="wp-block-spacer"></div>



<p class="wp-block-paragraph">The same happened with <a href="https://www.linkedin.com/in/vedrankesegic/">Vedran Kesegic</a>, who gave the hint that TRUNCATE is apparently rollback-capable when encapsulated in a transaction. Then <a href="https://www.linkedin.com/in/saastamoinen/">Carsten Saastamoinen-Jakobsen</a> jumped in and things got wild. So wild that the whole topic hooked me so much that I did a deep dive into it. Furthermore, so much knowledge dropped in this exchange that it would be a shame if it disappeared in a comment section.</p>



<div style="height:32px" aria-hidden="true" class="wp-block-spacer"></div>



<h2 class="wp-block-heading">What to expect here</h2>



<p class="wp-block-paragraph">I compared the exchange and looked at the core statements. I also texted separately with both of them a bit more, and Carsten gave me excerpts from one of his publications where the topic is covered technically.</p>



<p class="wp-block-paragraph">Technically speaking, both agree, even if they don&#8217;t say it <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f923.png" alt="🤣" class="wp-smiley" style="height: 1em; max-height: 1em;" />. But what was really wild in the end was the question:</p>



<div style="height:32px" aria-hidden="true" class="wp-block-spacer"></div>



<figure class="wp-block-image aligncenter size-full"><img loading="lazy" decoding="async" width="595" height="159" src="https://dbavonnebenan.de/wp-content/uploads/2025/05/ddl_dml.png" alt="DML or DDL ??" class="wp-image-326" srcset="https://dbavonnebenan.de/wp-content/uploads/2025/05/ddl_dml.png 595w, https://dbavonnebenan.de/wp-content/uploads/2025/05/ddl_dml-300x80.png 300w" sizes="auto, (max-width: 595px) 100vw, 595px" /></figure>



<div style="height:32px" aria-hidden="true" class="wp-block-spacer"></div>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-461897f4 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:100%">
<div class="wp-block-group is-nowrap is-layout-flex wp-container-core-group-is-layout-461897f4 wp-block-group-is-layout-flex">
<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="246" height="470" src="https://dbavonnebenan.de/wp-content/uploads/2025/05/emotes_standing_1.png" alt="" class="wp-image-330" srcset="https://dbavonnebenan.de/wp-content/uploads/2025/05/emotes_standing_1.png 246w, https://dbavonnebenan.de/wp-content/uploads/2025/05/emotes_standing_1-157x300.png 157w" sizes="auto, (max-width: 246px) 100vw, 246px" /></figure>



<p class="wp-block-paragraph">I can say it upfront. This question is an philosophical one. I was able to form an opinion based on my research, more on that later, but basically it&#8217;s up to everyone to decide for themselves.</p>
</div>
</div>
</div>



<div style="height:32px" aria-hidden="true" class="wp-block-spacer"></div>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<div style="height:32px" aria-hidden="true" class="wp-block-spacer"></div>



<h2 class="wp-block-heading">The Discussion &#8211; DML or DDL ?</h2>



<h3 class="wp-block-heading">Vedran Kesegic</h3>



<p class="wp-block-paragraph"><strong>Core Position: TRUNCATE is DDL</strong></p>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow">
<p class="wp-block-paragraph">&#8222;TRUNCATE modifies internal system tables sys.sysallocunits and sys.sysrowsets. DELETE modifies indexes and stats&#8220;</p>
</blockquote>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow">
<p class="wp-block-paragraph">&#8222;DML writes data (rows in user tables), while DDL writes metadata (rows in system tables, data that describes other/user objects). Truncate happens to write metadata (system tables) and thus is classified as DDL.&#8220;</p>
</blockquote>



<p class="wp-block-paragraph"><strong>Technical Arguments</strong></p>



<ul class="wp-block-list">
<li>Uses SCH-M (Schema Modification) lock</li>



<li>Modifies system metadata tables</li>



<li>Microsoft documentation classifies it as DDL</li>



<li>Logs page deallocations, not row deletions</li>
</ul>



<p class="wp-block-paragraph"><strong>Key Statement</strong></p>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow">
<p class="wp-block-paragraph">&#8222;TRUNCATE modifies internal system tables sys.sysallocunits and sys.sysrowsets. DELETE modifies indexes and stats &#8211; see attached&#8220;</p>
</blockquote>



<div style="height:50px" aria-hidden="true" class="wp-block-spacer"></div>



<h3 class="wp-block-heading">Carsten Saastamoinen-Jakobsen</h3>



<p class="wp-block-paragraph"><strong>Core Position: TRUNCATE is DML</strong></p>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow">
<p class="wp-block-paragraph">&#8222;It is not an argument to call TRUNCATE a DDL statement because a certain lock is used! When statements are categorized, it must be based on what happens and not how a given database system solves the task.&#8220;</p>
</blockquote>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow">
<p class="wp-block-paragraph">&#8222;We may have to recognize that a previous error categorization should not continue to call TRUNCATE a DDL, but recognize that it is a DML.&#8220;</p>
</blockquote>



<p class="wp-block-paragraph"><strong>Logical Arguments</strong></p>



<ul class="wp-block-list">
<li>Data is deleted, structure is preserved</li>



<li>No table definition changes occur</li>



<li>Follows semantic rules of data manipulation</li>



<li>Can delete only some partitions (not all data)</li>
</ul>



<p class="wp-block-paragraph"><strong>Key Statement</strong></p>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow">
<p class="wp-block-paragraph">&#8222;I say that MS is right in the documentations because they are not telling that TRUNCATE is as DDL, because they know that TRUNCATE is a DML!&#8220;</p>



<p class="wp-block-paragraph"><mark style="background-color:rgba(0, 0, 0, 0)" class="has-inline-color has-denary-color"><em>NOTE Gabriel <br></em></mark><em>I think this is really a bit questionable because the documentation is absolutely clear</em> <em>on this point</em> &#8211;&gt; <strong><em>DDL </em></strong>(<a href="https://learn.microsoft.com/en-us/sql/t-sql/statements/statements?view=sql-server-ver17#data-definition-language" target="_blank" rel="noreferrer noopener">microsoft.com</a>)<br></p>
</blockquote>



<p class="wp-block-paragraph"><strong>Quote from publication</strong></p>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow">
<p class="wp-block-paragraph">&#8222;As of version 2016, it is possible to delete only some of the data in a table with TRUNCATE, so it is even more cor­rect to call it manipulation than definition, because it is changing some of the data but not changing the structure.&#8220;</p>
</blockquote>



<div style="height:50px" aria-hidden="true" class="wp-block-spacer"></div>



<h3 class="wp-block-heading">Points of Agreement</h3>



<ul class="wp-block-list">
<li>TRUNCATE can be rolled back in a transaction
<ul class="wp-block-list">
<li>general demo at <a href="https://blog.sqlauthority.com/2010/03/04/sql-server-rollback-truncate-command-in-transaction/" target="_blank" rel="noreferrer noopener">sqlauthority.com</a></li>



<li>deep dive demo <a href="https://www.sqlshack.com/the-internals-of-sql-truncate-and-sql-delete-statements/" target="_blank" rel="noreferrer noopener">sqlshack.com</a></li>
</ul>
</li>



<li>TRUNCATE is a logged operation</li>



<li>TRUNCATE is faster than DELETE for large datasets</li>



<li>Both understand the technical implementation</li>
</ul>



<div style="height:50px" aria-hidden="true" class="wp-block-spacer"></div>



<h3 class="wp-block-heading">Core Disagreement</h3>



<ul class="wp-block-list">
<li><strong>Classification criteria</strong>
<ul class="wp-block-list">
<li>Implementation details</li>
</ul>
</li>



<li><strong>Authority</strong>
<ul class="wp-block-list">
<li>Vendor documentation (Vedran) vs. Logical reasoning (Carsten)</li>
</ul>
</li>



<li><strong>Perspective</strong>
<ul class="wp-block-list">
<li>How it works internally (Vedran) vs. What it does functionally (Carsten)</li>
</ul>
</li>
</ul>



<div style="height:50px" aria-hidden="true" class="wp-block-spacer"></div>



<h3 class="wp-block-heading">My 50 Cent</h3>



<p class="wp-block-paragraph">So as you can see, technically it fits, but how do you view the whole thing? Maybe it&#8217;s good that I&#8217;m not preloaded with as much knowledge as both of them because from my perspective it&#8217;s quite clear: <strong>DDL!!</strong></p>



<div class="wp-block-group is-nowrap is-layout-flex wp-container-core-group-is-layout-461897f4 wp-block-group-is-layout-flex">
<figure class="wp-block-image size-full is-resized"><img loading="lazy" decoding="async" width="292" height="342" src="https://dbavonnebenan.de/wp-content/uploads/2025/05/emotes_1.png" alt="" class="wp-image-344" style="width:98px;height:auto" srcset="https://dbavonnebenan.de/wp-content/uploads/2025/05/emotes_1.png 292w, https://dbavonnebenan.de/wp-content/uploads/2025/05/emotes_1-256x300.png 256w" sizes="auto, (max-width: 292px) 100vw, 292px" /></figure>



<p class="wp-block-paragraph">Contrary to Carsten&#8217;s statement that no system tables are changed, Vedran&#8217;s statement is absolutely correct. See why&#8230; </p>
</div>



<p class="wp-block-paragraph">&#8230; and of course because MS says it&#8217;s DDL <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f60a.png" alt="😊" class="wp-smiley" style="height: 1em; max-height: 1em;" /> ( <a href="https://learn.microsoft.com/en-us/sql/t-sql/statements/statements?view=sql-server-ver17#data-definition-language" target="_blank" rel="noreferrer noopener">microsoft.com</a> )</p>



<p class="wp-block-paragraph">And partitioning is DML… I don&#8217;t know, here too it&#8217;s at least system columns that define the partitioning.</p>



<p class="wp-block-paragraph"></p>



<div style="height:32px" aria-hidden="true" class="wp-block-spacer"></div>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<div style="height:32px" aria-hidden="true" class="wp-block-spacer"></div>



<h2 class="wp-block-heading">How TRUNCATE works</h2>



<p class="wp-block-paragraph">I&#8217;d like to say I&#8217;ll describe it simply, but that&#8217;s just my normal description. The topic is really complex <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/270c.png" alt="✌" class="wp-smiley" style="height: 1em; max-height: 1em;" /></p>



<div style="height:32px" aria-hidden="true" class="wp-block-spacer"></div>



<h3 class="wp-block-heading">1 &#8211; TRUNCATE Command Initiated</h3>


<div class="wp-block-syntaxhighlighter-code "><pre class="brush: sql; title: ; notranslate">
TRUNCATE TABLE dbo.MyTable;
</pre></div>


<ul class="wp-block-list">
<li><strong>First action</strong>: Acquire <strong>SCH-M (Schema Modification)</strong> lock on entire table</li>



<li><strong>Effect</strong>: Table is completely locked &#8211; no reads, no writes, nothing</li>
</ul>



<div style="height:32px" aria-hidden="true" class="wp-block-spacer"></div>



<h3 class="wp-block-heading">2 &#8211; Identify Extents</h3>



<ul class="wp-block-list">
<li>DEEP DIVE Extents &#8211;&gt; <a href="https://learn.microsoft.com/en-us/sql/relational-databases/pages-and-extents-architecture-guide?view=sql-server-ver17" target="_blank" rel="noreferrer noopener">microsoft.com</a></li>



<li>SQL Server reads IAM pages</li>



<li>Lists all extents belonging to the table</li>



<li><strong>Still holding</strong>: SCH-M lock on table</li>
</ul>



<div style="height:32px" aria-hidden="true" class="wp-block-spacer"></div>



<h3 class="wp-block-heading">3-  Lock Individual Extents</h3>



<ul class="wp-block-list">
<li>Places <strong>X (Exclusive)</strong> locks on each extent</li>



<li>These are regular data locks, NOT schema locks</li>



<li><strong>Now holding</strong>:
<ul class="wp-block-list">
<li>SCH-M lock on table (prevents access)</li>



<li>X locks on extents (marks them for deallocation)</li>
</ul>
</li>
</ul>



<div style="height:32px" aria-hidden="true" class="wp-block-spacer"></div>



<h3 class="wp-block-heading">4 &#8211; Log the Operation</h3>



<ul class="wp-block-list">
<li>Writes to transaction log: &#8222;Deallocate extents 8:8, 8:16, etc.&#8220;</li>



<li><strong>Still holding</strong>: Both lock types</li>
</ul>



<div style="height:32px" aria-hidden="true" class="wp-block-spacer"></div>



<h3 class="wp-block-heading">5a &#8211; If COMMIT</h3>



<ul class="wp-block-list">
<li>Updates IAM &#8211; marks extents as free</li>



<li><strong>Releases</strong> all X locks on extents</li>



<li><strong>Releases</strong> SCH-M lock on table</li>



<li>Table is accessible again</li>
</ul>



<div style="height:32px" aria-hidden="true" class="wp-block-spacer"></div>



<h3 class="wp-block-heading">5b &#8211; If ROLLBACK</h3>



<ul class="wp-block-list">
<li>Discards deallocation markers</li>



<li><strong>Releases</strong> all X locks on extents</li>



<li><strong>Releases</strong> SCH-M lock on table</li>



<li>Everything unchanged</li>
</ul>



<div style="height:32px" aria-hidden="true" class="wp-block-spacer"></div>



<h3 class="wp-block-heading">Why Two Different Lock Types?</h3>



<p class="wp-block-paragraph"><strong>SCH-M Lock:</strong></p>



<ul class="wp-block-list">
<li>&#8222;Nobody touch this table AT ALL&#8220;</li>



<li>Typical for DDL operations</li>



<li>Prevents even metadata queries</li>
</ul>



<p class="wp-block-paragraph"><strong>X Locks on Extents:</strong></p>



<ul class="wp-block-list">
<li>&#8222;These specific data blocks are being modified&#8220;</li>



<li>Typical for data operations</li>



<li>Ensures extents aren&#8217;t reused until commit/rollback by other sessions</li>
</ul>



<div style="height:32px" aria-hidden="true" class="wp-block-spacer"></div>



<h3 class="wp-block-heading">My humble Opinion</h3>



<p class="wp-block-paragraph">Given this knowledge, the case is actually clear for me, but how do you see it? Indeed, here no user data is being manipulated; instead, system-level assignments are being adjusted. Consequently, I&#8217;ll allow myself, despite my new half-knowledge, to make the following comparison:</p>



<div class="wp-block-group is-nowrap is-layout-flex wp-container-core-group-is-layout-461897f4 wp-block-group-is-layout-flex">
<figure class="wp-block-image size-full is-resized"><img loading="lazy" decoding="async" width="307" height="328" src="https://dbavonnebenan.de/wp-content/uploads/2025/05/emotes_2.png" alt="" class="wp-image-345" style="width:131px;height:auto" srcset="https://dbavonnebenan.de/wp-content/uploads/2025/05/emotes_2.png 307w, https://dbavonnebenan.de/wp-content/uploads/2025/05/emotes_2-281x300.png 281w" sizes="auto, (max-width: 307px) 100vw, 307px" /></figure>



<p class="wp-block-paragraph">&#8222;I also don&#8217;t say I&#8217;m deleting text in a Word document when I quick format the disk and only delete the block allocation.&#8220;</p>
</div>



<p class="wp-block-paragraph"><br>Yes, I think that&#8217;s a nice comparison&#8230; Case closed, now a few technically interesting aspects and solutions</p>



<div style="height:32px" aria-hidden="true" class="wp-block-spacer"></div>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<div style="height:32px" aria-hidden="true" class="wp-block-spacer"></div>



<h2 class="wp-block-heading">Technical Part, Hacks and How2</h2>



<div style="height:32px" aria-hidden="true" class="wp-block-spacer"></div>



<figure class="wp-block-image aligncenter size-full is-resized"><img loading="lazy" decoding="async" width="643" height="388" src="https://dbavonnebenan.de/wp-content/uploads/2025/05/meme_trunc.jpg" alt="" class="wp-image-348" style="width:325px;height:auto" srcset="https://dbavonnebenan.de/wp-content/uploads/2025/05/meme_trunc.jpg 643w, https://dbavonnebenan.de/wp-content/uploads/2025/05/meme_trunc-300x181.jpg 300w" sizes="auto, (max-width: 643px) 100vw, 643px" /></figure>



<p class="has-text-align-center has-medium-font-size wp-block-paragraph">&#8230; practical, not technical <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f609.png" alt="😉" class="wp-smiley" style="height: 1em; max-height: 1em;" /></p>



<div style="height:32px" aria-hidden="true" class="wp-block-spacer"></div>



<h3 class="wp-block-heading">TRUNCATE with Survivor Table (Temporary Table)</h3>



<p class="wp-block-paragraph">Data that is still required is simply moved to a temporary table and retrieved after TRUNCATE</p>


<div class="wp-block-syntaxhighlighter-code "><pre class="brush: sql; title: ; notranslate">
-- Step 1: Create temp table with rows to keep
	SELECT * INTO #SurvivorRows 
	FROM 
		MyTable 
	WHERE
		DateColumn &gt;= &#039;2024-01-01&#039;

-- Step 2: Truncate the entire table
	TRUNCATE TABLE MyTable

-- Step 3: Re-insert survivor rows
	INSERT INTO MyTable
	SELECT * FROM #SurvivorRows

-- Step 4: Clean up
	DROP TABLE #SurvivorRows
</pre></div>


<div style="height:32px" aria-hidden="true" class="wp-block-spacer"></div>



<h3 class="wp-block-heading">TRUNCATE with PARTITION option (2016++)</h3>



<p class="wp-block-paragraph">Since SQL Server 2016 (every edition) it is possible to specify partitions or ranges of partitions</p>


<div class="wp-block-syntaxhighlighter-code "><pre class="brush: sql; title: ; notranslate">
-- Truncate specific partitions
	TRUNCATE TABLE MyPartitionedTable 
	     WITH (PARTITIONS (2, 4 TO 6))

-- Check partition status
	SELECT 
		 partition_number
		,rows 
	FROM
		sys.partitions 
	WHERE 
		OBJECT_NAME(OBJECT_ID) = &#039;MyPartitionedTable&#039;
</pre></div>


<div style="height:32px" aria-hidden="true" class="wp-block-spacer"></div>



<h3 class="wp-block-heading">TRUNCATE is always a transaction&#8230;</h3>



<p class="wp-block-paragraph">&#8230;. and must be considered during RESTORING. Carsten illustrated this whole thing very nicely in his publication. I&#8217;m just describing it, that has to suffice at this point <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f61d.png" alt="😝" class="wp-smiley" style="height: 1em; max-height: 1em;" /></p>



<p class="wp-block-paragraph">Even though we only write <strong>TRUNCATE TABLE</strong>, SQL Server still uses <strong>BEGIN</strong> and <strong>COMMIT TRANSACTION</strong>, which of course is recorded in the TLog. Accordingly, during a POINT IN TIME RECOVERY, the data in the table remains available until the TLog with the corresponding TRANSACTION is restored, or the time of the TRUNCATE transaction has been exceeded.</p>



<p class="wp-block-paragraph">So you can also restore the data <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f44c.png" alt="👌" class="wp-smiley" style="height: 1em; max-height: 1em;" /></p>



<div style="height:32px" aria-hidden="true" class="wp-block-spacer"></div>



<h3 class="wp-block-heading">Continuously read Transaction log file data with fn_dblog and fn_dump_dblog</h3>



<p class="wp-block-paragraph">Vedran wrote in one of his posts that there&#8217;s an undocumented function where you can read log records at runtime. There&#8217;s also a very cool article about this on sqlshack.com</p>



<div style="height:32px" aria-hidden="true" class="wp-block-spacer"></div>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<p class="has-text-align-center wp-block-paragraph"><em><mark style="background-color:rgba(0, 0, 0, 0)" class="has-inline-color has-septenary-color">NOT recommended for production but only for test / education.</mark></em></p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<div style="height:32px" aria-hidden="true" class="wp-block-spacer"></div>


https://www.sqlshack.com/how-to-continuously-read-transaction-log-file-data-directly-in-a-sql-server-database-with-fn_dblog-and-fn_dump_dblog/


<div style="height:32px" aria-hidden="true" class="wp-block-spacer"></div>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<div style="height:32px" aria-hidden="true" class="wp-block-spacer"></div>



<h2 class="wp-block-heading">Finally</h2>



<div class="wp-block-group is-nowrap is-layout-flex wp-container-core-group-is-layout-461897f4 wp-block-group-is-layout-flex">
<figure class="wp-block-image size-full is-resized"><img loading="lazy" decoding="async" width="284" height="334" src="https://dbavonnebenan.de/wp-content/uploads/2025/05/emotes_3.png" alt="" class="wp-image-355" style="width:124px;height:auto" srcset="https://dbavonnebenan.de/wp-content/uploads/2025/05/emotes_3.png 284w, https://dbavonnebenan.de/wp-content/uploads/2025/05/emotes_3-255x300.png 255w" sizes="auto, (max-width: 284px) 100vw, 284px" /></figure>



<p class="wp-block-paragraph">Let&#8217;s get to my initially mentioned point that all these SQL Server tips from randoms should be questioned. Because the statement that <strong>truncate is not rollback safe</strong> is simply wrong. The path to this realization was long for me, initiated by the conversation between Vedran and Carsten. I really learned a lot left and right, which I also wanted to record here again for posterity.</p>
</div>



<p class="wp-block-paragraph">In the end, it doesn&#8217;t matter whether it&#8217;s <strong>DDL</strong> or <strong>DML</strong>. In the general SQL Server standard, for example, it&#8217;s described as DML, most RDBMSs in dialect with DDL. We&#8217;ll just agree on <strong>DDL</strong> and that&#8217;s it. Much more exciting is what happens under the hood.</p>



<div style="height:32px" aria-hidden="true" class="wp-block-spacer"></div>



<p class="wp-block-paragraph"><strong>Best comment from Vedran <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f923.png" alt="🤣" class="wp-smiley" style="height: 1em; max-height: 1em;" /></strong></p>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow">
<p class="has-overpass-mono-font-family wp-block-paragraph">&#8222;Or you are trying to argue with SQL Certified Master about SQL? Good luck Mr :)&#8220;</p>
</blockquote>



<div style="height:32px" aria-hidden="true" class="wp-block-spacer"></div>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<div style="height:32px" aria-hidden="true" class="wp-block-spacer"></div>



<h2 class="wp-block-heading">Links from the text</h2>


https://learn.microsoft.com/en-us/sql/t-sql/statements/statements?view=sql-server-ver17#data-definition-language

https://learn.microsoft.com/en-us/sql/t-sql/statements/truncate-table-transact-sql?view=sql-server-ver17

https://blog.sqlauthority.com/2010/03/04/sql-server-rollback-truncate-command-in-transaction/

https://www.sqlshack.com/the-internals-of-sql-truncate-and-sql-delete-statements/

https://www.sqlshack.com/how-to-continuously-read-transaction-log-file-data-directly-in-a-sql-server-database-with-fn_dblog-and-fn_dump_dblog/

https://en.wikipedia.org/wiki/Truncate_(SQL)

https://learn.microsoft.com/en-us/sql/relational-databases/pages-and-extents-architecture-guide?view=sql-server-ver17


<div style="height:32px" aria-hidden="true" class="wp-block-spacer"></div>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<div style="height:32px" aria-hidden="true" class="wp-block-spacer"></div>



<h2 class="wp-block-heading">Full Conversation</h2>



<details class="wp-block-details is-layout-flow wp-block-details-is-layout-flow"><summary>Expand</summary>
<p class="wp-block-paragraph"><strong>Vedran Kesegic</strong></p>



<p class="wp-block-paragraph">In sql server, truncate can be rolled back (if encapsulated within transaction). It is a logged operation.</p>



<p class="wp-block-paragraph"><strong>Carsten Saastamoinen-Jakobsen</strong></p>



<p class="wp-block-paragraph">With DELETE we can specify the WHERE clause and some or all rows can be removed. All deleted rows are logged with BEFORE IMAGE/the data values. With TRUNCATE we can delete all rows or only the rows in one or more partitions, if we have a partition table. The only information logged is the pageid. The physical removing/releasing to unused pages happens in a background task after COMMIT. No data is stored in the log, so less and faster! And it is not possible to restore to point in time because no data is logged. The pageid in the log can already have being &#8218;released&#8216; to unused pages and therefore already used to data from another object &#8211; table/index. Before COMMIT the pages is still allocated to the table and still with data. If no explicit transaction is specified the transaction is already committed!</p>



<p class="wp-block-paragraph"><strong>Vedran Kesegic</strong></p>



<p class="wp-block-paragraph">&#8222;No data is stored in the log&#8220; and &#8222;not possible to restore to point in time&#8220; is both incorrect for TRUNCATE. The difference is, truncate logs only deallocation of pages, which is multiple orders of magnitude less (basically insignifficant) compared to DELETE which logs data that is deleted. That is why truncate is &#8222;instant&#8220;. If you delete eg. 10GB of data, you wait for 10GB to be written to transaction log, which takes time. Truncate logs maybe 1KB for deallocation info, which is instant. If you do not want to delete all rows, you can still use TRUNCATE by storing survivor rows aside before truncating, and inserting them back after truncate. Even better, you can use SWITCH into some dummy table (even with not-partitioned tables) to remove rows quickly, and then insert survivor rows back from that dummy into original table. That is the fastest way to delete when a smaller percent of rows needs to survive.</p>



<p class="wp-block-paragraph"><strong>Vedran Kesegic</strong></p>



<p class="wp-block-paragraph">Obvious difference is that truncate removes all rows from table (&#8222;truncate table&#8220;) or from partition(s), when using &#8222;trancate table xy with partitions (&#8230;)&#8220;. You cannot choose which rows to delete, they all are gone. With delete you can have a WHERE clause to choose which rows to delete. Delete is more appropriate if you need to delete a small percentage of table rows (or partition rows).</p>



<p class="wp-block-paragraph"><strong>Vedran Kesegic</strong></p>



<p class="wp-block-paragraph">Truncate is a metadata operation, requires a different lock (SCH_M, schema modification lock). If also has some restrictins regarding foreign keys etc. Check the documentation for the list of limitations: https://learn.microsoft.com/en-us/sql/t-sql/statements/truncate-table-transact-sql</p>



<p class="wp-block-paragraph"><strong>Carsten Saastamoinen-Jakobsen</strong></p>



<p class="wp-block-paragraph">It is not an argument to call TRUNCATE a DDL statement because a certain lock is used! When statements are categorized, it must be based on what happens and not how a given database system solves the task. Data is deleted, the structure is preserved and only some data may be deleted. When one or more partitions are deleted, the condition is also well-known, but just limited. In previous versions of database systems &#8211; and perhaps still &#8211; a TRUNCATE was performed by a DROP TABLE + CREATE TABLE. Hence DDL rights. It just shows that it is problematic to categorize based on how it is performed and not based on what actually happens. If we look at the documentation for SQL Server, it is not mentioned that TRUNCATE is a DDL. We may have to recognize that a previous error categorization should not continue to call TRUNCATE a DDL, but recognize that it is a DML. We will also be free from erroneous claims about only deleting all rows, that space is not released, that the transaction cannot be rolled back, &#8230;. A DELETE operation without a user-defined transaction cannot be rolled back either! But DELETE is DML and not DDL. TRUNCATE is &#8218;created&#8216; for having af fast way of deleting rows, and extended for only deleting some of the rows &#8211; DML!!!</p>



<p class="wp-block-paragraph"><strong>Vedran Kesegic</strong></p>



<p class="wp-block-paragraph">No, the SCH-M lock (the &#8222;king of all locks&#8220;) is not the sole reason why TRUNCATE is DDL. DML writes data (rows in user tables), while DDL writes metadata (rows in system tables, data that describes other/user objects). Truncate happens to write metadata (system tables) and thus is classified as DDL. See the doc: https://learn.microsoft.com/en-us/previous-versions/sql/sql-server-2012/ff848799(v=sql.110)</p>



<p class="wp-block-paragraph"><strong>Carsten Saastamoinen-Jakobsen</strong></p>



<p class="wp-block-paragraph">Can you tell which data is written to the system tables that is not written when removing rows by DELETE? The only additional information is, that with TRUNCATE of all rows without specifying partitions is, that the &#8218;identity&#8216; is reset to the initial values. Removing some or all rows with specifying partitions, this value is not reset to the initial value. Empty page are handled in the same way as empty page after DELETE! All indexes are preserved, the table definition is NOT changed, &#8230;.</p>



<p class="wp-block-paragraph"><strong>Vedran Kesegic</strong></p>



<p class="wp-block-paragraph">Better than that &#8211; you can see for yourself! The exact difference and details are present in transaction log records after you do TRUNCATE and compare that to log records that DELETE generates. Use fn_dblog() function, but only on the test system because it is undocumented and might have an impact.</p>



<p class="wp-block-paragraph">Or you are trying to say that Microsoft is wrong in documentation? If so, report it to MS so doc can be fixed. But in this case there is nothing to fix.</p>



<p class="wp-block-paragraph">Or you are trying to argue with SQL Certified Master about SQL? Good luck Mr <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f642.png" alt="🙂" class="wp-smiley" style="height: 1em; max-height: 1em;" /></p>



<p class="wp-block-paragraph"><strong>Carsten Saastamoinen-Jakobsen</strong></p>



<p class="wp-block-paragraph">I say that MS is right in the documentations because they are not telling that TRUNCATE is as DDL, because they know that TRUNCATE is a DML!. Of course there is less in the log &#8211; it is the idea wit TRUNCATE!!!!!!!! Just te functionality and te reason for implementing TRUNCATE as an alternative to DELETE. But the log is NOT the system tables!!!!! So please tell which system tables are updated as they are updated when CRAETE, ALTER and DROP but NOT updated when INSERT, DELETE or UPDATE.</p>



<p class="wp-block-paragraph"><strong>Vedran Kesegic</strong></p>



<p class="wp-block-paragraph">TRUNCATE modifies internal system tables sys.sysallocunits and sys.sysrowsets. DELETE modifies indexes and stats &#8211; see attached pictures. You could do that yourself using fn_dblog as instructed, but I did that for you so you don&#8217;t have to. If you want to know more about deep SQL Server internals you can attend one of my trainings, or trainings of other SQL Masters like Brent Ozar, Paul Randal (sqlskills), etc.</p>



<p class="wp-block-paragraph"><strong>Carsten Saastamoinen-Jakobsen</strong></p>



<p class="wp-block-paragraph">Of course they are modified as INSERT DELETE and UPDATE modify this informations. But INSERT, DELETE and UPDATE are still only DML and not DDL. And I am not impressed of your job by showing me this information. If you was showing the same for the other DML statements it would be fine. So maybe you should modify your course material and also shows the same for the other DML statements!!!!</p>
</details>



<p class="wp-block-paragraph"></p><p>The post <a href="https://dbavonnebenan.de/sql-server-truncate-vs-delete-dml-or-ddl-en/">TRUNCATE TABLE – DDL vs DML – deep dive in operations and practical tips</a> first appeared on <a href="https://dbavonnebenan.de">DBA von Nebenan</a>.</p>]]></content:encoded>
					
					<wfw:commentRss>https://dbavonnebenan.de/sql-server-truncate-vs-delete-dml-or-ddl-en/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>SysAdmin Role ignores the Default User Schema &#8211; A confusing story</title>
		<link>https://dbavonnebenan.de/sql-server-sysadmin-role-can-override-the-default-schema-en/</link>
					<comments>https://dbavonnebenan.de/sql-server-sysadmin-role-can-override-the-default-schema-en/#respond</comments>
		
		<dc:creator><![CDATA[Gabriel]]></dc:creator>
		<pubDate>Thu, 08 May 2025 10:20:44 +0000</pubDate>
				<category><![CDATA[Sql Server]]></category>
		<category><![CDATA[TSql]]></category>
		<category><![CDATA[default]]></category>
		<category><![CDATA[eng]]></category>
		<category><![CDATA[schema]]></category>
		<guid isPermaLink="false">https://dbavonnebenan.de/?p=279</guid>

					<description><![CDATA[<p>Today I had another call on my desk where an error message from an application stated that an object in the Sql Server DB couldn&#8217;t be accessed. The vendor claimed &#8222;connection problem&#8220;, I said &#8222;DB or at least server problem&#8220;, customer says &#8222;everything used to work before&#8220;. The Extended Events were quickly set up, &#8222;Remote [&#8230;]</p>
<p>The post <a href="https://dbavonnebenan.de/sql-server-sysadmin-role-can-override-the-default-schema-en/">SysAdmin Role ignores the Default User Schema – A confusing story</a> first appeared on <a href="https://dbavonnebenan.de">DBA von Nebenan</a>.</p>]]></description>
										<content:encoded><![CDATA[<p class="wp-block-paragraph">Today I had another call on my desk where an error message from an application stated that an object in the Sql Server DB couldn&#8217;t be accessed. The vendor claimed &#8222;connection problem&#8220;, I said &#8222;DB or at least server problem&#8220;, customer says &#8222;everything used to work before&#8220;.</p>



<p class="wp-block-paragraph">The Extended Events were quickly set up, &#8222;Remote Procedure Call Starting&#8220; shows me a statement without a fully qualified table name. The target object is in the database under the db_owner schema. Welllll, that&#8217;s already questionable, but OK. Why not keep it as dbo?</p>



<p class="wp-block-paragraph">Anyway, the behavior at this point was really incomprehensible to me since everything was configured correctly: Default schema of the user, db_owner on the DB. And the SysAdmin. I had noticed that, but well, customer&#8217;s decision. I&#8217;ll note things like this in a session, but won&#8217;t change anything to avoid endangering grown dependencies.</p>



<p class="wp-block-paragraph">After searching for a long time, I almost gave up, referred to the vendor and ended the call. Unfortunately, I can&#8217;t let go of stuff like this, so I fired up the lab, rebuilt the environment and lo and behold, found the error. </p>



<p class="wp-block-paragraph">The problem is the SysAdmin role. It directly maps the login to the dbo user of the database &#8211; regardless of whether the actual user exists or not, thus inheriting dbo&#8217;s default schema. Mindblowing, didn&#8217;t know that. 🙂</p>



<div style="height:13px" aria-hidden="true" class="wp-block-spacer"></div>



<h2 class="wp-block-heading">SysAdmin Role InActive</h2>



<figure class="wp-block-image size-full is-resized has-custom-border"><img loading="lazy" decoding="async" width="655" height="449" src="https://dbavonnebenan.de/wp-content/uploads/2025/05/2025-05-08_11-49_1.png" alt="" class="has-border-color has-base-border-color wp-image-285" style="border-width:1px;width:641px;height:auto" srcset="https://dbavonnebenan.de/wp-content/uploads/2025/05/2025-05-08_11-49_1.png 655w, https://dbavonnebenan.de/wp-content/uploads/2025/05/2025-05-08_11-49_1-300x206.png 300w" sizes="auto, (max-width: 655px) 100vw, 655px" /></figure>



<div style="height:13px" aria-hidden="true" class="wp-block-spacer"></div>



<h2 class="wp-block-heading">SysAdmin Role Active</h2>



<figure class="wp-block-image size-full is-resized has-custom-border"><img loading="lazy" decoding="async" width="667" height="351" src="https://dbavonnebenan.de/wp-content/uploads/2025/05/2025-05-08_11-50.png" alt="" class="has-border-color has-base-border-color wp-image-287" style="border-width:1px;width:631px;height:auto" srcset="https://dbavonnebenan.de/wp-content/uploads/2025/05/2025-05-08_11-50.png 667w, https://dbavonnebenan.de/wp-content/uploads/2025/05/2025-05-08_11-50-300x158.png 300w" sizes="auto, (max-width: 667px) 100vw, 667px" /></figure>



<figure class="wp-block-image size-large is-resized has-custom-border"><img loading="lazy" decoding="async" width="504" height="212" src="https://dbavonnebenan.de/wp-content/uploads/2025/05/2025-05-08_11-13.png" alt="" class="has-border-color has-base-border-color wp-image-281" style="border-width:1px;width:495px;height:auto" srcset="https://dbavonnebenan.de/wp-content/uploads/2025/05/2025-05-08_11-13.png 504w, https://dbavonnebenan.de/wp-content/uploads/2025/05/2025-05-08_11-13-300x126.png 300w" sizes="auto, (max-width: 504px) 100vw, 504px" /></figure>



<div style="height:13px" aria-hidden="true" class="wp-block-spacer"></div>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<div style="height:13px" aria-hidden="true" class="wp-block-spacer"></div>



<details class="wp-block-details is-layout-flow wp-block-details-is-layout-flow"><summary>T-Sql CODE I used for the screenshots</summary><div class="wp-block-syntaxhighlighter-code "><pre class="brush: sql; title: ; notranslate">
DECLARE @IsSysAdmin INT
SELECT @IsSysAdmin = IS_SRVROLEMEMBER(&#039;sysadmin&#039;)


SELECT SYSTEM_USER AS CurrentLoginName;

SELECT 
    &#039;Current User&#039;  AS Info,
    USER_NAME()     AS Username,
    SCHEMA_NAME()   AS CurrentSchema,
    CASE WHEN @IsSysAdmin = 1 THEN &#039;Yes&#039; ELSE &#039;No&#039; END 
                    AS IsSysAdmin


SELECT 
    &#039;Default Schema&#039;        AS Info,
    dp.name                 AS Username,
    dp.default_schema_name AS DefaultSchema
FROM 
    sys.database_principals dp
WHERE 
    dp.name = USER_NAME()


SELECT 
    &#039;DB Role Membership&#039;    AS Info,
    USER_NAME()             AS Username,
    r.name                  AS RoleName
FROM 
    sys.database_principals u
JOIN 
    sys.database_role_members m ON u.principal_id = m.member_principal_id
JOIN 
    sys.database_principals r ON m.role_principal_id = r.principal_id
WHERE 
    u.name = USER_NAME()

--------------------

-- select * from &#x5B;customSchema].&#x5B;userTable] &lt;&lt;&lt;&lt;&lt; ALWAYS WORKING !!!!!

 select * from &#x5B;userTable]



</pre></div></details>



<div style="height:13px" aria-hidden="true" class="wp-block-spacer"></div>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<div class="wp-block-group is-nowrap is-layout-flex wp-container-core-group-is-layout-461897f4 wp-block-group-is-layout-flex">
<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="283" height="292" src="https://dbavonnebenan.de/wp-content/uploads/2025/05/2025-05-08_11-43.png" alt="" class="wp-image-284"/></figure>



<ul class="wp-block-list">
<li>Always use fully qualified object names, someday you&#8217;ll be glad you did. You can read this in many blogs.</li>



<li>Always work according to POLP (<a href="https://en.wikipedia.org/wiki/Principle_of_least_privilege">Principle of Least Privilege</a>), an app user shouldn&#8217;t have SysAdmin rights! 🙂</li>
</ul>
</div>



<p class="has-text-align-center wp-block-paragraph"><strong>Gabriel, der DBAvonNebenan</strong></p>



<p class="wp-block-paragraph"></p><p>The post <a href="https://dbavonnebenan.de/sql-server-sysadmin-role-can-override-the-default-schema-en/">SysAdmin Role ignores the Default User Schema – A confusing story</a> first appeared on <a href="https://dbavonnebenan.de">DBA von Nebenan</a>.</p>]]></content:encoded>
					
					<wfw:commentRss>https://dbavonnebenan.de/sql-server-sysadmin-role-can-override-the-default-schema-en/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Reporting Blocks and Deadlocks: When the 3rd-Party Vendor Demands Evidence</title>
		<link>https://dbavonnebenan.de/reporting-sql-server-blocks-en/</link>
					<comments>https://dbavonnebenan.de/reporting-sql-server-blocks-en/#respond</comments>
		
		<dc:creator><![CDATA[Gabriel]]></dc:creator>
		<pubDate>Mon, 28 Apr 2025 14:19:36 +0000</pubDate>
				<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[Sql Server]]></category>
		<category><![CDATA[BLOCK]]></category>
		<category><![CDATA[DEADLOCK]]></category>
		<category><![CDATA[eng]]></category>
		<category><![CDATA[REPORTING]]></category>
		<guid isPermaLink="false">https://dbavonnebenan.de/?p=253</guid>

					<description><![CDATA[<p>Knowing that SQL Server has blocking or deadlock problems is still quite easy. You usually notice this in the application, and with the right queries, you can also display the corresponding blocking chains. The simplest way to do this is with http://whoisactive.com. I also have a custom development that I will present in a later [&#8230;]</p>
<p>The post <a href="https://dbavonnebenan.de/reporting-sql-server-blocks-en/">Reporting Blocks and Deadlocks: When the 3rd-Party Vendor Demands Evidence</a> first appeared on <a href="https://dbavonnebenan.de">DBA von Nebenan</a>.</p>]]></description>
										<content:encoded><![CDATA[<p class="wp-block-paragraph">Knowing that SQL Server has blocking or deadlock problems is still quite easy. You usually notice this in the application, and with the right queries, you can also display the corresponding blocking chains. The simplest way to do this is with <a href="http://whoisactive.com">http://whoisactive.com</a>.</p>



<div style="height:34px" aria-hidden="true" class="wp-block-spacer"></div>


<div class="wp-block-syntaxhighlighter-code "><pre class="brush: sql; title: ; notranslate">
SELECT 
    blocking_session_id   AS blocking_session,
    session_id            AS blocked_session,
    wait_time / 1000.0    AS waiting_sec,
    wait_type             AS waittype,
    resource_description  AS ressource
FROM 
    sys.dm_os_waiting_tasks
WHERE 
    blocking_session_id IS NOT NULL
ORDER BY 
    wait_time DESC
</pre></div>


<div style="height:34px" aria-hidden="true" class="wp-block-spacer"></div>



<p class="wp-block-paragraph">I also have a custom development that I will present in a later blog post, which better meets my individual requirements.</p>



<div style="height:33px" aria-hidden="true" class="wp-block-spacer"></div>



<h2 class="wp-block-heading">The Problem</h2>



<p class="wp-block-paragraph">Now I can display AdHoc blocks, but with deadlocks it gets more interesting. For this, the System Health Session must be checked, which is also volatile.</p>



<div style="height:33px" aria-hidden="true" class="wp-block-spacer"></div>


<div class="wp-block-syntaxhighlighter-code "><pre class="brush: sql; title: ; notranslate">
-- Query System Health Session for Deadlocks

SELECT
    event_data.value(&#039;(event/@timestamp)&#x5B;1]&#039;, &#039;datetime2&#039;) AS DeadlockDateTime,
    event_data.query(&#039;.&#039;)                                  AS DeadlockGraph
FROM
(
    SELECT 
        CAST(target_data AS XML) AS target_data
    FROM 
        sys.dm_xe_session_targets AS st
    JOIN 
        sys.dm_xe_sessions AS s ON s.address = st.event_session_address
    WHERE
             s.name = &#039;system_health&#039;
        AND st.target_name = &#039;ring_buffer&#039;
) AS data
CROSS APPLY
    target_data.nodes(&#039;//RingBufferTarget/event&#x5B;@name=&quot;xml_deadlock_report&quot;]&#039;) AS XEventData(event_data)
ORDER BY 
    DeadlockDateTime DESC;
</pre></div>


<div style="height:33px" aria-hidden="true" class="wp-block-spacer"></div>



<p class="wp-block-paragraph">I encountered this problem with a client who was struggling enormously with deadlocks in a 3rd party application, but the support was a bit&#8230; let&#8217;s say reluctant. 😉</p>



<p class="wp-block-paragraph">We had to report everything transparently to them so they would start finding a solution. Of course, query result sets can be considered transparent if you understand them or want to understand them. Unfortunately, the XML of Health Sessions or Extended Events are not exactly famous for being readable. Yet the client simply wanted the problem to be fixed.</p>



<p class="wp-block-paragraph">So together we developed a reporting solution.</p>



<div style="height:44px" aria-hidden="true" class="wp-block-spacer"></div>



<h2 class="wp-block-heading">The Idea</h2>



<p class="wp-block-paragraph">With Extended Events I have XML data, and with PowerShell I can parse XML however I want, including into a report of my choice.</p>



<div style="height:44px" aria-hidden="true" class="wp-block-spacer"></div>



<h2 class="wp-block-heading">The Goal</h2>



<p class="wp-block-paragraph">We wanted a way, apart from SQL Server result sets, to overlay application problems with anomalies in the SQL Server metrics to quickly bring about solutions.</p>



<p class="wp-block-paragraph">In the week after the solution went live, there were many, many &#8222;aha&#8220; moments. From incorrectly configured ERP parameters to poor transaction handling.</p>



<div style="height:38px" aria-hidden="true" class="wp-block-spacer"></div>



<h2 class="wp-block-heading">The Way</h2>



<h3 class="wp-block-heading">Persistent Data</h3>



<p class="wp-block-paragraph">The most important thing is to persistently store blocking session and deadlock events. This works perfectly with Extended Events. There are two areas for this:</p>


<div class="wp-block-syntaxhighlighter-code "><pre class="brush: sql; title: ; notranslate">
-- SNIPPET!!

ADD EVENT sqlserver.blocked_process_report(
    ACTION(sqlserver.client_app_name,
           sqlserver.client_hostname,
           sqlserver.database_name)
),
ADD EVENT sqlserver.xml_deadlock_report(
    ACTION(sqlserver.client_app_name,
           sqlserver.client_hostname,
           sqlserver.database_name)
)
</pre></div>


<div style="height:33px" aria-hidden="true" class="wp-block-spacer"></div>



<p class="wp-block-paragraph">The whole thing is configured in its own Extended Event and the recordings are already running. <strong>Nearly!</strong> We still need to configure SQL Server to treat Blocked Process as Extended Events.</p>



<div style="height:33px" aria-hidden="true" class="wp-block-spacer"></div>


<div class="wp-block-syntaxhighlighter-code "><pre class="brush: sql; title: ; notranslate">
EXEC sp_configure &#039;show advanced options&#039;, 1;
GO
RECONFIGURE;
GO
EXEC sp_configure &#039;blocked process threshold&#039;, &#039;5&#039;; -- 5 Secconds
RECONFIGURE
GO
</pre></div>


<div style="height:33px" aria-hidden="true" class="wp-block-spacer"></div>



<h3 class="wp-block-heading"><strong>Read Data</strong></h3>



<h3 class="wp-block-heading">100% PowerShell</h3>



<p class="wp-block-paragraph">After the events are logged, they need to be evaluated. What immediately came to my mind were the dbatools with <a href="https://docs.dbatools.io/Read-DbaXEFile.html">Read-DbaXEFile</a>. The problem is that the currently written file cannot be read with it. You can imagine that blocking and deadlock events don&#8217;t occur in such masses that dozens of file rotations are performed within 24 hours. If they do, you definitely have a different problem than just reporting it . So we took the detour via SQL Server, since the current file can also be read here.</p>



<h3 class="wp-block-heading">PowerShell + TSql</h3>



<p class="wp-block-paragraph">I still find it very difficult to read XML with queries, but THANKS to Brent Ozar, known to all of us, for the<a href="https://www.brentozar.com/archive/2014/03/extended-events-doesnt-hard/"> basic query</a> I could build upon. At least I now had a result set for orientation and a separate XML for each event in the log.</p>



<div style="height:33px" aria-hidden="true" class="wp-block-spacer"></div>


<div class="wp-block-syntaxhighlighter-code "><pre class="brush: sql; title: ; notranslate">
-- Snippet
select
    *
FROM sys.fn_xe_file_target_read_file
   (&#039;C:\temp\XEventSessions\blocked_process*.xel&#039;,
    &#039;C:\temp\XEventSessions\blocked_process*.xem&#039;,
     null, null)
CROSS APPLY 
    (SELECT CAST(event_data AS XML) AS event_data) as xevents
</pre></div>


<div style="height:33px" aria-hidden="true" class="wp-block-spacer"></div>



<h3 class="wp-block-heading">Finalization with PowerShell</h3>



<p class="wp-block-paragraph">Since I finally had my XML event, I could parse it with PowerShell, transform it, and finally package it into a nice text report.</p>



<div style="height:33px" aria-hidden="true" class="wp-block-spacer"></div>


<div class="wp-block-syntaxhighlighter-code "><pre class="brush: plain; title: ; notranslate">
Sql Server Deadlock Analysis | Event Time: 2025-04-08T11:16:07.447
================================================================================

SQL STATEMENTS INVOLVED
--------------------------------------------------------------------------------

    Process ID:   process261b00cfc28
    SPID:         643
    Database:     DATABASENAME
    Query:        **DETAILED QUERY**

----------------------------------------

    Process ID:   process258294fbc28
    SPID:         650
    Database:     DATABASENAME
    Query:        **DETAILED QUERY**

----------------------------------------

VICTIM LIST
--------------------------------------------------------------------------------

    Process ID:   process261b00cfc28
    SPID:         643
    Database:     DATABASENAME


PROCESS LIST
--------------------------------------------------------------------------------

    Process ID:               process261b00cfc28
    SPID:                     643
    Isolation Level:          read uncommitted (1)
    Logical Reads:            700
    Wait Resource:            KEY: 6:72058005407662080 (fb04e1bc7788)
    Wait Time (ms):           2247
    Transaction:              user_transaction
    Last Transaction Started: 2025-04-08T11:16:07.447
    Client:                   &#039;dbserver_dll &amp;lt;ID@APPSERVER:34784&gt;&#039;
    Hostname:                 APPSERVER
    User:                     USERNAME


EXECUTED SQL STATEMENT
----------------------------------------

    **DETAILED QUERY**


Process Details
================================================================================


    Process ID:               process258294fbc28
    SPID:                     650
    Isolation Level:          read uncommitted (1)
    Logical Reads:            1904
    Wait Resource:            KEY: 6:72057996178358272 (2a9726d2d061)
    Wait Time (ms):           2278
    Transaction:              user_transaction
    Last Transaction Started: 2025-04-08T11:16:07.330
    Client:                   &#039;dbserver_dll &amp;lt;ID@APPSERVER:11664&gt;&#039;
    Hostname:                 APPSERVER
    User:                     USERNAME


EXECUTED SQL STATEMENT
----------------------------------------

    **DETAILED QUERY**


Process Details
================================================================================


RESOURCE LIST
--------------------------------------------------------------------------------

    Resource:
        Type:               keylock
        Database:           6
        Object:             DATABASENAME.dbo.tcprmp300100
        Index:              Itcprmp300100_1a
        Lock Mode:          X
        HOBT ID:            72058005407662080
        Associated Object ID: 72058005407662080

    Owners:
        Process ID:         process258294fbc28, Mode: X

    Waiting Processes:
        Process ID:         process261b00cfc28, Mode: U, Request Type: wait

================================================================================

    Resource:
        Type:               keylock
        Database:           6
        Object:             DATABASENAME.dbo.tcprrp011100
        Index:              Itcprrp011100_1a
        Lock Mode:          X
        HOBT ID:            72057996178358272
        Associated Object ID: 72057996178358272

    Owners:
        Process ID:         process261b00cfc28, Mode: X

    Waiting Processes:
        Process ID:         process258294fbc28, Mode: U, Request Type: wait

================================================================================
</pre></div>


<div style="height:33px" aria-hidden="true" class="wp-block-spacer"></div>



<h3 class="wp-block-heading">Implementation</h3>



<p class="wp-block-paragraph">It was requested to add the results to the daily report, which we had already implemented with PowerShell. Now, it&#8217;s not great to potentially attach 200 text files to an email every morning, so the PowerShell script returns a table showing how blocks and locks occurred in time period X, and if needed, one can proactively check the folder structure.</p>



<div style="height:33px" aria-hidden="true" class="wp-block-spacer"></div>



<figure class="wp-block-image size-full has-custom-border"><img loading="lazy" decoding="async" width="662" height="223" src="https://dbavonnebenan.de/wp-content/uploads/2025/04/2025-04-28_15-33.png" alt="" class="has-border-color has-base-border-color wp-image-261" style="border-width:1px" srcset="https://dbavonnebenan.de/wp-content/uploads/2025/04/2025-04-28_15-33.png 662w, https://dbavonnebenan.de/wp-content/uploads/2025/04/2025-04-28_15-33-300x101.png 300w" sizes="auto, (max-width: 662px) 100vw, 662px" /></figure>



<div style="height:33px" aria-hidden="true" class="wp-block-spacer"></div>



<p class="wp-block-paragraph">For dramatic effect and a quick overview, an Excel file is also generated. In this example, there was a nice collateral finding that the DWH jobs had serious problems 🙂</p>



<div style="height:33px" aria-hidden="true" class="wp-block-spacer"></div>



<figure class="wp-block-image size-large has-custom-border is-style-default"><img loading="lazy" decoding="async" width="1024" height="471" src="https://dbavonnebenan.de/wp-content/uploads/2025/04/2025-04-27_17-18-1024x471.png" alt="" class="has-border-color wp-image-254" style="border-color:#000000;border-width:1px;border-radius:5px" srcset="https://dbavonnebenan.de/wp-content/uploads/2025/04/2025-04-27_17-18-1024x471.png 1024w, https://dbavonnebenan.de/wp-content/uploads/2025/04/2025-04-27_17-18-300x138.png 300w, https://dbavonnebenan.de/wp-content/uploads/2025/04/2025-04-27_17-18-768x353.png 768w, https://dbavonnebenan.de/wp-content/uploads/2025/04/2025-04-27_17-18.png 1131w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<div style="height:33px" aria-hidden="true" class="wp-block-spacer"></div>



<p class="wp-block-paragraph">And just like that, we had a few reports that we could hand over to the vendor, and then things moved very quickly.</p>



<div style="height:24px" aria-hidden="true" class="wp-block-spacer"></div>


<div class="wp-block-syntaxhighlighter-code "><pre class="brush: plain; title: ; notranslate">
Die Ordner Struktur

_report/
├── text_reports/
│   └── YYYY/
│       └── MM/
│           └── DD/
│               ├── 20231120_123456_dbname_blocked.txt
│               ├── 20231120_123456_dbname_blocked.xml
│               └── 20231120_123456_dbname_deadlock.txt
└── excel_reports/
    └── BlockReport_20231120_123456.xlsx
</pre></div>


<div style="height:22px" aria-hidden="true" class="wp-block-spacer"></div>



<p class="wp-block-paragraph"><strong><strong>Unfortunately, I experience again and again that application vendors think their customers are stupid and cannot operate the application. Stop doing that and believe your customers sometimes without 101% data, which you can only collect if you already have knowledge of the subject matter.</strong></strong></p>



<div style="height:33px" aria-hidden="true" class="wp-block-spacer"></div>



<h2 class="wp-block-heading">See Repository</h2>



<div style="height:33px" aria-hidden="true" class="wp-block-spacer"></div>


https://github.com/gabrielkoehl/get-snapBlockEvents


<div style="height:33px" aria-hidden="true" class="wp-block-spacer"></div>



<p class="wp-block-paragraph">The script has various parameters and options, details are in the README.MD. If you have questions, leave them in the comments or contact me.</p>



<div style="height:37px" aria-hidden="true" class="wp-block-spacer"></div>



<h2 class="wp-block-heading">Other</h2>



<p class="wp-block-paragraph">Erik Darling has also developed a solution to make Extended Events readable, in case other approaches are needed. (<a href="https://github.com/erikdarlingdata/DarlingData/tree/main/sp_HumanEvents">sp_HumanEvents</a>)</p>



<div style="height:74px" aria-hidden="true" class="wp-block-spacer"></div>



<figure class="wp-block-image aligncenter size-full is-resized"><img loading="lazy" decoding="async" width="295" height="294" src="https://dbavonnebenan.de/wp-content/uploads/2025/04/2025-04-21_16-19.png" alt="" class="wp-image-113" style="width:223px;height:auto" srcset="https://dbavonnebenan.de/wp-content/uploads/2025/04/2025-04-21_16-19.png 295w, https://dbavonnebenan.de/wp-content/uploads/2025/04/2025-04-21_16-19-150x150.png 150w" sizes="auto, (max-width: 295px) 100vw, 295px" /></figure>



<p class="has-text-align-center wp-block-paragraph"><strong>Gabriel, der DBAvonNebenan</strong></p>



<p class="wp-block-paragraph"></p><p>The post <a href="https://dbavonnebenan.de/reporting-sql-server-blocks-en/">Reporting Blocks and Deadlocks: When the 3rd-Party Vendor Demands Evidence</a> first appeared on <a href="https://dbavonnebenan.de">DBA von Nebenan</a>.</p>]]></content:encoded>
					
					<wfw:commentRss>https://dbavonnebenan.de/reporting-sql-server-blocks-en/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Offline Images with Obsidian Website Clipper</title>
		<link>https://dbavonnebenan.de/improve-obsidian-website-scraper-en/</link>
					<comments>https://dbavonnebenan.de/improve-obsidian-website-scraper-en/#respond</comments>
		
		<dc:creator><![CDATA[Gabriel]]></dc:creator>
		<pubDate>Fri, 25 Apr 2025 06:36:48 +0000</pubDate>
				<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[eng]]></category>
		<category><![CDATA[obsidian]]></category>
		<guid isPermaLink="false">https://dbavonnebenan.de/?p=165</guid>

					<description><![CDATA[<p>The Obsidian website clipper works really well. But I&#8217;m bothered that images only appear as links to the web. This doesn&#8217;t match my idea of a local dump. So I wrote a small PowerShell script that searches through MD files in the current folder for links, downloads them to the attachments folder, and dynamically replaces [&#8230;]</p>
<p>The post <a href="https://dbavonnebenan.de/improve-obsidian-website-scraper-en/">Offline Images with Obsidian Website Clipper</a> first appeared on <a href="https://dbavonnebenan.de">DBA von Nebenan</a>.</p>]]></description>
										<content:encoded><![CDATA[<p class="wp-block-paragraph">The <a href="https://obsidian.md/clipper">Obsidian website clipper </a>works really well. But I&#8217;m bothered that images only appear as links to the web. This doesn&#8217;t match my idea of a local dump.</p>



<p class="wp-block-paragraph">So I wrote a small PowerShell script that searches through MD files in the current folder for links, downloads them to the attachments folder, and dynamically replaces the links in the MD with local links.</p>



<figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="1024" height="240" src="https://dbavonnebenan.de/wp-content/uploads/2025/04/2025-04-25_14-40-1024x240.png" alt="" class="wp-image-234" srcset="https://dbavonnebenan.de/wp-content/uploads/2025/04/2025-04-25_14-40-1024x240.png 1024w, https://dbavonnebenan.de/wp-content/uploads/2025/04/2025-04-25_14-40-300x70.png 300w, https://dbavonnebenan.de/wp-content/uploads/2025/04/2025-04-25_14-40-768x180.png 768w, https://dbavonnebenan.de/wp-content/uploads/2025/04/2025-04-25_14-40.png 1065w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<div style="height:23px" aria-hidden="true" class="wp-block-spacer"></div>


https://gist.github.com/gabrielkoehl/c99b084c85521bcbb533994046e7aa7e


<p class="wp-block-paragraph"></p><p>The post <a href="https://dbavonnebenan.de/improve-obsidian-website-scraper-en/">Offline Images with Obsidian Website Clipper</a> first appeared on <a href="https://dbavonnebenan.de">DBA von Nebenan</a>.</p>]]></content:encoded>
					
					<wfw:commentRss>https://dbavonnebenan.de/improve-obsidian-website-scraper-en/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
