<?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>The Sero Group Archives - The SERO Group</title>
	<atom:link href="https://theserogroup.com/tag/the-sero-group/feed/" rel="self" type="application/rss+xml" />
	<link>https://theserogroup.com/tag/the-sero-group/</link>
	<description>SQL Servers Healthy, Secure, And Reliable</description>
	<lastBuildDate>Wed, 03 Jun 2026 15:37:02 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.0</generator>

<image>
	<url>https://theserogroup.com/wp-content/uploads/2024/07/cropped-Canister-only-1-32x32.png</url>
	<title>The Sero Group Archives - The SERO Group</title>
	<link>https://theserogroup.com/tag/the-sero-group/</link>
	<width>32</width>
	<height>32</height>
</image> 
<site xmlns="com-wordpress:feed-additions:1">121220030</site>	<item>
		<title>An Overview of Accelerated Database Recovery</title>
		<link>https://theserogroup.com/azure/an-overview-of-accelerated-database-recovery/</link>
					<comments>https://theserogroup.com/azure/an-overview-of-accelerated-database-recovery/#respond</comments>
		
		<dc:creator><![CDATA[Lee Markum]]></dc:creator>
		<pubDate>Wed, 17 Jun 2026 12:00:00 +0000</pubDate>
				<category><![CDATA[Azure]]></category>
		<category><![CDATA[Data Security]]></category>
		<category><![CDATA[DBA]]></category>
		<category><![CDATA[Events]]></category>
		<category><![CDATA[Professional Development]]></category>
		<category><![CDATA[SQL Community]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[SQL Server Consulting]]></category>
		<category><![CDATA[The Sero Group]]></category>
		<category><![CDATA[Clustering]]></category>
		<category><![CDATA[Clusters]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[Database Administration]]></category>
		<category><![CDATA[Database Development]]></category>
		<category><![CDATA[IT Manager]]></category>
		<category><![CDATA[Microsoft Azure]]></category>
		<category><![CDATA[Public Speaking]]></category>
		<category><![CDATA[Script Library]]></category>
		<category><![CDATA[Sero]]></category>
		<category><![CDATA[Sero Group]]></category>
		<category><![CDATA[Serogroup]]></category>
		<category><![CDATA[Shared Disks]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[SQL Assessment]]></category>
		<category><![CDATA[SQL Audit]]></category>
		<category><![CDATA[SQL Conference]]></category>
		<category><![CDATA[SQL Consultant]]></category>
		<category><![CDATA[SQL Events]]></category>
		<category><![CDATA[SQL Security]]></category>
		<category><![CDATA[SQL Server Consultant]]></category>
		<category><![CDATA[SQL Server Management]]></category>
		<category><![CDATA[SQL Training]]></category>
		<category><![CDATA[TempDB]]></category>
		<guid isPermaLink="false">https://theserogroup.com/?p=7775</guid>

					<description><![CDATA[<p>SQL Server has had a number of really wonderful new features over the last several releases. One of those features is Accelerated Database Recovery. This enhancement has received some coverage in the community and I want to make my own contribution to promoting this feature. What is Accelerated Database Recovery? Accelerated Database Recovery (ADR) came&#8230; <br /> <a class="read-more" href="https://theserogroup.com/azure/an-overview-of-accelerated-database-recovery/">Read more</a></p>
<p>The post <a href="https://theserogroup.com/azure/an-overview-of-accelerated-database-recovery/">An Overview of Accelerated Database Recovery</a> appeared first on <a href="https://theserogroup.com">The SERO Group</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">SQL Server has had a number of really wonderful new features over the last several releases. One of those features is Accelerated Database Recovery. This enhancement has received some coverage in the community and I want to make my own contribution to promoting this feature.</p>



<h2 id="h-what-is-accelerated-database-recovery" class="wp-block-heading">What is Accelerated Database Recovery?</h2>



<p class="wp-block-paragraph">Accelerated Database Recovery (ADR) came out in SQL Server 2019 and is an enhanced way for SQL Server to do database crash recovery. It uses a new Streaming Log (SLOG) feature that allows much faster redo and undo phases of the process by tracking any non-versioned actions.</p>



<p class="wp-block-paragraph">The Persistent Version Store is another new component to the process. It holds row versions in the database itself, either on the data pages being modified or in a separate system table. This persisted version store is very similar to how read committed snapshot isolation uses row-versions to allow for read and write queries to operate without blocking each other. This holding mechanism for row versions is cleaned up periodically by a background process that removes unneeded row versions. This persisted version store, in combination with the SLOG, allows a couple of things.</p>



<p class="wp-block-paragraph">First, in the redo phase there is no longer the need to read the transaction log serially from the oldest uncommitted transaction forward to the time of the crash to replay and redo records for creating a consistent state in the database. Instead, SQL Server uses the SLOG to recover any non-versioned actions from the oldest uncommitted transaction forward up to the point of the last checkpoint. This is much faster. Once the last checkpoint is reached, only then will SQL Server start reading the transaction log for any redo work.</p>



<p class="wp-block-paragraph">Second, in the Undo phase, the SLOG is used again to undo any non-versioned operations, and the persistent version store is used to simply switch the database rows back to whatever the proper current row was at the time of the crash.</p>



<p class="wp-block-paragraph">Traditional Recovery: Picture from <a href="https://learn.microsoft.com/en-us/sql/relational-databases/accelerated-database-recovery-concepts?view=sql-server-ver17">https://learn.microsoft.com/en-us/sql/relational-databases/accelerated-database-recovery-concepts?view=sql-server-ver17</a></p>



<figure class="wp-block-image size-large"><a href="https://theserogroup.com/wp-content/uploads/2026/06/TraditionalSQLServerRecovery_2026-06-01-141057.png"><img fetchpriority="high" decoding="async" width="1024" height="528" src="https://theserogroup.com/wp-content/uploads/2026/06/TraditionalSQLServerRecovery_2026-06-01-141057-1024x528.png" alt="" class="wp-image-7776" srcset="https://theserogroup.com/wp-content/uploads/2026/06/TraditionalSQLServerRecovery_2026-06-01-141057-1024x528.png 1024w, https://theserogroup.com/wp-content/uploads/2026/06/TraditionalSQLServerRecovery_2026-06-01-141057-300x155.png 300w, https://theserogroup.com/wp-content/uploads/2026/06/TraditionalSQLServerRecovery_2026-06-01-141057-768x396.png 768w, https://theserogroup.com/wp-content/uploads/2026/06/TraditionalSQLServerRecovery_2026-06-01-141057.png 1376w" sizes="(max-width: 1024px) 100vw, 1024px" /></a></figure>



<p class="wp-block-paragraph">Recovery using Accelerated Database Recovery: Picture from <a href="https://learn.microsoft.com/en-us/sql/relational-databases/accelerated-database-recovery-concepts?view=sql-server-ver17">https://learn.microsoft.com/en-us/sql/relational-databases/accelerated-database-recovery-concepts?view=sql-server-ver17</a></p>



<figure class="wp-block-image size-large"><a href="https://theserogroup.com/wp-content/uploads/2026/06/SQLServerRecoveryWithADR_2026-06-01-141057.png"><img decoding="async" width="1024" height="573" src="https://theserogroup.com/wp-content/uploads/2026/06/SQLServerRecoveryWithADR_2026-06-01-141057-1024x573.png" alt="" class="wp-image-7777" srcset="https://theserogroup.com/wp-content/uploads/2026/06/SQLServerRecoveryWithADR_2026-06-01-141057-1024x573.png 1024w, https://theserogroup.com/wp-content/uploads/2026/06/SQLServerRecoveryWithADR_2026-06-01-141057-300x168.png 300w, https://theserogroup.com/wp-content/uploads/2026/06/SQLServerRecoveryWithADR_2026-06-01-141057-768x430.png 768w, https://theserogroup.com/wp-content/uploads/2026/06/SQLServerRecoveryWithADR_2026-06-01-141057.png 1271w" sizes="(max-width: 1024px) 100vw, 1024px" /></a></figure>



<h2 id="h-why-would-you-want-to-enable-accelerated-database-recovery" class="wp-block-heading">Why would you want to enable Accelerated Database Recovery?</h2>



<p class="wp-block-paragraph">Accelerated database recovery can save you and your clients from extended outages due to long rollback times under heavy load. I’ve seen rollback times of 45-60 minutes be reduced to seconds with this feature enabled. The use-case I had was during SQL Server patching clients weren’t always out of the system as requested. In some cases, the client activity had a lot of changes in-flight when patching was applied and the traditional recovery method took a very long time after the server rebooted.</p>



<p class="wp-block-paragraph">I enabled ADR and never had that problem again. This feature can also save you from pain you inflict on yourself. If you’re running a query to make a lot of changes and it is decided to kill the query, causing rollback, then the ADR feature can execute rollback almost instantaneously. This is much better than waiting a long time for single threaded rollback of a query that has been running a long time.</p>



<h2 class="wp-block-heading">How to determine if Accelerated Database Recovery is enabled?</h2>



<p class="wp-block-paragraph">The system table sys.databases can be queried to show whether this feature is enabled or not.</p>



<pre class="wp-block-code"><code>SELECT name
FROM sys.databases 
WHERE is_accelerated_database_recovery_on = 1;
</code></pre>



<h2 class="wp-block-heading">How to enable Accelerated Database Recovery?</h2>



<p class="wp-block-paragraph">An exclusive database lock is required to enable Accelerated Database Recovery. This means the change should be done in a maintenance window where no activity is expected. The feature can be enabled in the presence of other activity using the termination clause WITH ROLLBACK [IMMMEDIATE | AFTER {Number} SECONDS | NO_WAIT] . Using the &nbsp;IMMEDIATE option will immediately rollback other transactions so that the ALTER statement will complete. The NO_WAIT option will terminate the ALTER statement if it can’t be executed immediately. Choose one of the three options.</p>



<pre class="wp-block-code"><code>ALTER DATABASE &#91;&lt;db_name&gt;] SET ACCELERATED_DATABASE_RECOVERY = ON WITH ROLLBACK &#91;IMMMEDIATE | AFTER {Number} SECONDS | NO_WAIT;</code></pre>



<h2 class="wp-block-heading">What sp_configure settings should be adjusted for Accelerated Database Recovery?</h2>



<p class="wp-block-paragraph">First, the ADR Cleaner Thread Count option in sp_configure controls the number of cpu threads to use for the background cleaner process that removes old row versions from the Persisted Version Store. This option was introduced in SQL Server 2022. It is advisable not to set this to a large number. You can increase it from the default of 1 to 2 or perhaps 4 to ensure that Persisted Version Store cleanup is happening quickly enough across a large number of databases.</p>



<pre class="wp-block-code"><code>-- Configure ADR cleaner to use 4 threads
EXEC sp_configure 'show advanced options', 1;
RECONFIGURE;

EXEC sp_configure 'ADR Cleaner Thread Count', 4;
RECONFIGURE WITH OVERRIDE;
</code></pre>



<p class="wp-block-paragraph">Second, the ADR Pre-allocation Factor setting can also be adjusted. If the “just in time” mechanism to allocate pages to store rows in the persisted version store is above zero by a significant amount, then this sp_configure option can be set to allocate pages ahead of time for the version store. There is an extended event called tx_version_optimized_insert_stats that can be reviewed to see what the “just in time” value is. The value to check is labeled “foreground_allocation_percent.”</p>



<p class="wp-block-paragraph">The default value for the ADR pre-allocation factor is 4. The number of pages allocated at any one time is 512 X the ADR Pre-allocation Factor. It isn’t recommended to set this fact too high because pre-allocating too many pages can cause contention.</p>



<pre class="wp-block-code"><code>-- Configure ADR Preallocation Factor
EXEC sp_configure 'show advanced options', 1;
RECONFIGURE;

EXEC sp_configure 'ADR Preallocation Factor', 6; -- Defaults vary based on workload
RECONFIGURE WITH OVERRIDE;
</code></pre>



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



<h2 id="h-is-a-long-rollback-costing-you-downtime" class="wp-block-heading"><strong>Is a Long Rollback Costing You Downtime?</strong></h2>



<p class="wp-block-paragraph">SQL Server recovery issues can turn a routine maintenance window into a multi-hour outage. The SERO Group specializes in exactly this kind of proactive SQL Server management. <a href="https://theserogroup.com/contact-us/" target="_blank" rel="noreferrer noopener">Schedule a free discovery call</a> and let&#8217;s talk about your environment.</p>
<p>The post <a href="https://theserogroup.com/azure/an-overview-of-accelerated-database-recovery/">An Overview of Accelerated Database Recovery</a> appeared first on <a href="https://theserogroup.com">The SERO Group</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://theserogroup.com/azure/an-overview-of-accelerated-database-recovery/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">7775</post-id>	</item>
		<item>
		<title>How to Use VSSADMIN Commands To Manage Low Disk Space</title>
		<link>https://theserogroup.com/azure/how-to-use-vssadmin-commands-to-manage-low-disk-space/</link>
					<comments>https://theserogroup.com/azure/how-to-use-vssadmin-commands-to-manage-low-disk-space/#respond</comments>
		
		<dc:creator><![CDATA[Lee Markum]]></dc:creator>
		<pubDate>Wed, 03 Jun 2026 15:14:07 +0000</pubDate>
				<category><![CDATA[Azure]]></category>
		<category><![CDATA[Data Security]]></category>
		<category><![CDATA[DBA]]></category>
		<category><![CDATA[Events]]></category>
		<category><![CDATA[Professional Development]]></category>
		<category><![CDATA[SQL Community]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[SQL Server Consulting]]></category>
		<category><![CDATA[The Sero Group]]></category>
		<category><![CDATA[Clustering]]></category>
		<category><![CDATA[Clusters]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[Database Administration]]></category>
		<category><![CDATA[Database Development]]></category>
		<category><![CDATA[IT Manager]]></category>
		<category><![CDATA[Microsoft Azure]]></category>
		<category><![CDATA[Public Speaking]]></category>
		<category><![CDATA[Script Library]]></category>
		<category><![CDATA[Sero]]></category>
		<category><![CDATA[Sero Group]]></category>
		<category><![CDATA[Serogroup]]></category>
		<category><![CDATA[Shared Disks]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[SQL Assessment]]></category>
		<category><![CDATA[SQL Audit]]></category>
		<category><![CDATA[SQL Conference]]></category>
		<category><![CDATA[SQL Consultant]]></category>
		<category><![CDATA[SQL Events]]></category>
		<category><![CDATA[SQL Security]]></category>
		<category><![CDATA[SQL Server Consultant]]></category>
		<category><![CDATA[SQL Server Management]]></category>
		<category><![CDATA[SQL Training]]></category>
		<category><![CDATA[TempDB]]></category>
		<guid isPermaLink="false">https://theserogroup.com/?p=7767</guid>

					<description><![CDATA[<p>Low disk space alerts are a common occurrence in I.T. For SQL Server consultants, there could be a few causes: This last scenario related to volume shadow service is what I want to talk about today. This one can be a little confusing at first because your organization may get a low disk space alert&#8230; <br /> <a class="read-more" href="https://theserogroup.com/azure/how-to-use-vssadmin-commands-to-manage-low-disk-space/">Read more</a></p>
<p>The post <a href="https://theserogroup.com/azure/how-to-use-vssadmin-commands-to-manage-low-disk-space/">How to Use VSSADMIN Commands To Manage Low Disk Space</a> appeared first on <a href="https://theserogroup.com">The SERO Group</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">Low disk space alerts are a common occurrence in I.T. For SQL Server consultants, there could be a few causes:</p>



<ul class="wp-block-list">
<li>A runaway transaction filling up a log file or even an mdf file in a user database or tempdb.</li>



<li>Someone or some process took an extra backup that wasn&#8217;t planned for.</li>



<li>A new database was created with larger than expected files sizes.</li>



<li>An application is using the Volume Shadow Service to make backups of databases to a local volume.</li>
</ul>



<p class="wp-block-paragraph">This last scenario related to volume shadow service is what I want to talk about today. This one can be a little confusing at first because your organization may get a low disk space alert that doesn&#8217;t seem to make sense. The alert may indicate that there is less than 10% free space, but looking at the volume in Windows Explorer doesn&#8217;t show that at all. It turns out that VSS files aren&#8217;t visible to Windows explorer. You might come across this when investigating the following error, &#8220;Volsnap &#8211; 36 &#8211; The shadow copies of volume E: were aborted because the shadow copy storage could not grow due to a user imposed limit.&#8221;</p>



<p class="wp-block-paragraph">To investigate what is happening, try some of the <a href="https://learn.microsoft.com/en-us/previous-versions/windows/it-pro/windows-server-2012-r2-and-2012/cc754968(v=ws.11)">VSSAdmin</a> commands, like this:</p>



<pre class="wp-block-code"><code>vssadmin list shadowstorage</code></pre>



<p class="wp-block-paragraph">The output pf this PowerShell command will show what volumes are being backed up by VSS, and what the target volume is for those VSS files. If the volumes are already low on space, deleting some of the shadow copies may be the first thing needed. This can be done with the following command:</p>



<pre class="wp-block-code"><code>vssadmin delete shadows /for=&lt;ForVolumeSpec&gt; &#91;/oldest | /all | /shadow=&lt;ShadowID&gt;] &#91;/quiet]</code></pre>



<p class="wp-block-paragraph">Then a limit can be placed on the amount of storage allocated to VSS files using this command:</p>



<pre class="wp-block-code"><code>vssadmin resize shadowstorage /for=&lt;ForVolumeSpec&gt; /on=&lt;OnVolumeSpec&gt; &#91;/maxsize=&lt;MaxSizeSpec&gt;]</code></pre>



<p class="wp-block-paragraph">Keep in mind that someone will need to determine first if the older VSS files are needed prior to executing the delete and resize commands. </p>



<h2 id="h-tired-of-chasing-sql-server-alerts" class="wp-block-heading">Tired of Chasing SQL Server Alerts?</h2>



<p class="wp-block-paragraph">Dealing with disk space issues on your SQL Servers? That&#8217;s exactly the kind of problem The SERO Group solves every day. <a href="https://theserogroup.com/contact-us/">Schedule a free discovery call</a> and let&#8217;s take a look.</p>
<p>The post <a href="https://theserogroup.com/azure/how-to-use-vssadmin-commands-to-manage-low-disk-space/">How to Use VSSADMIN Commands To Manage Low Disk Space</a> appeared first on <a href="https://theserogroup.com">The SERO Group</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://theserogroup.com/azure/how-to-use-vssadmin-commands-to-manage-low-disk-space/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">7767</post-id>	</item>
		<item>
		<title>Why Quiet Reflection Leads to Better IT Strategy Decisions</title>
		<link>https://theserogroup.com/azure/why-quiet-reflection-leads-to-better-it-strategy-decisions/</link>
		
		<dc:creator><![CDATA[Joe Webb]]></dc:creator>
		<pubDate>Wed, 17 Dec 2025 13:00:04 +0000</pubDate>
				<category><![CDATA[Azure]]></category>
		<category><![CDATA[Data Security]]></category>
		<category><![CDATA[DBA]]></category>
		<category><![CDATA[Events]]></category>
		<category><![CDATA[Professional Development]]></category>
		<category><![CDATA[SQL Community]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[SQL Server Consulting]]></category>
		<category><![CDATA[The Sero Group]]></category>
		<category><![CDATA[Clustering]]></category>
		<category><![CDATA[Clusters]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[Database Administration]]></category>
		<category><![CDATA[Database Development]]></category>
		<category><![CDATA[IT Manager]]></category>
		<category><![CDATA[Microsoft Azure]]></category>
		<category><![CDATA[Public Speaking]]></category>
		<category><![CDATA[Script Library]]></category>
		<category><![CDATA[Sero]]></category>
		<category><![CDATA[Sero Group]]></category>
		<category><![CDATA[Serogroup]]></category>
		<category><![CDATA[Shared Disks]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[SQL Assessment]]></category>
		<category><![CDATA[SQL Audit]]></category>
		<category><![CDATA[SQL Conference]]></category>
		<category><![CDATA[SQL Consultant]]></category>
		<category><![CDATA[SQL Events]]></category>
		<category><![CDATA[SQL Security]]></category>
		<category><![CDATA[SQL Server Consultant]]></category>
		<category><![CDATA[SQL Server Management]]></category>
		<category><![CDATA[SQL Training]]></category>
		<category><![CDATA[TempDB]]></category>
		<guid isPermaLink="false">https://theserogroup.com/?p=7691</guid>

					<description><![CDATA[<p>Last Saturday, I woke up before dawn to a quiet house. My family was still asleep, as I’m the only morning person in our household. The Christmas tree lights cast a warm glow across the room, and I was alone with my thoughts and a hot cup of coffee. No urgent emails, no fire drills,&#8230; <br /> <a class="read-more" href="https://theserogroup.com/azure/why-quiet-reflection-leads-to-better-it-strategy-decisions/">Read more</a></p>
<p>The post <a href="https://theserogroup.com/azure/why-quiet-reflection-leads-to-better-it-strategy-decisions/">Why Quiet Reflection Leads to Better IT Strategy Decisions</a> appeared first on <a href="https://theserogroup.com">The SERO Group</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">Last Saturday, I woke up before dawn to a quiet house. My family was still asleep, as I’m the only morning person in our household. The Christmas tree lights cast a warm glow across the room, and I was alone with my thoughts and a hot cup of coffee. No urgent emails, no fire drills, no meetings starting in five minutes. Just space to think.</p>



<p class="wp-block-paragraph">As I sat there, I ended up reflecting back on 2025. I found myself gravitating to these three questions:</p>



<ul class="wp-block-list">
<li>What went well this year?</li>



<li>What did I learn?</li>



<li>What should I focus on next year?</li>
</ul>



<p class="wp-block-paragraph">If you’re a leader, I’m guessing you rarely get this kind of thinking time during your workday. I know I don’t. Our calendars are packed with calls, team meetings, and those &#8220;quick questions” that turn into two-hour troubleshooting sessions.</p>



<p class="wp-block-paragraph">But here&#8217;s what I&#8217;ve learned: <strong>the quality of your strategic decisions is directly tied to the quality of your thinking time.</strong></p>



<p class="wp-block-paragraph">And thinking time doesn&#8217;t happen by accident. You have to protect it.</p>



<h3 class="wp-block-heading" id="h-what-went-well-this-year">What Went Well This Year?</h3>



<p class="wp-block-paragraph">When I asked myself this question, I didn&#8217;t think about our biggest projects or flashiest achievements. I didn&#8217;t think about when we migrated almost 2,000 databases as part of an upgrade project. Or the performance tuning we did that resulted in a $36,000 reduction in annual Azure spend for a client. </p>



<p class="wp-block-paragraph">Instead, I thought about the relationships we strengthened. The trust we built with clients. The problems we solved before they became crises.</p>



<p class="wp-block-paragraph">For you, this might look like:</p>



<ul class="wp-block-list">
<li>The audit that went smoothly because your security documentation was solid</li>



<li>The successful disaster recovery test that was possible because you kept refining the process</li>



<li>The team member you mentored who&#8217;s now ready for more responsibility</li>



<li>The support resources you provided your team through a trusted partner</li>
</ul>



<p class="wp-block-paragraph">These aren&#8217;t always the things that make it into board reports. But they&#8217;re the foundation that everything else is built on.</p>



<h3 class="wp-block-heading" id="h-what-did-i-learn">What Did I Learn?</h3>



<p class="wp-block-paragraph">This year reminded me of something Eisenhower once said: <strong>&#8220;Plans are worthless, but planning is everything.&#8221;</strong></p>



<p class="wp-block-paragraph">The need for planning cannot be overstated. It&#8217;s critical. Even if the plan doesn&#8217;t always work out the way you intended. </p>



<p class="wp-block-paragraph"><strong>The plan itself wasn&#8217;t the point. The thinking I did while creating the plan was the point.</strong></p>



<p class="wp-block-paragraph">Because I’d thought through our capacity, our ideal client profile, and our service delivery model, I could adjust quickly when reality didn’t match my spreadsheet. I knew which opportunities were a good fit for us and which ones to let go. Because we’ve intentionally built a small but incredibly talented team that genuinely wants to see our clients succeed, we were able to identify and create ways to help them.</p>



<p class="wp-block-paragraph">I watched the same dynamic play out with clients. The institutions that had documented their SQL Server environments, tested their disaster recovery plans, and mapped their compliance requirements adapted quickly when needed. They were positioned for success even when the unexpected happened.</p>



<p class="wp-block-paragraph">Planning isn&#8217;t about predicting the future. It&#8217;s about <strong>building the muscle memory to respond when the future surprises you.</strong></p>



<p class="wp-block-paragraph">What did you learn this year about planning and adapting? Maybe it was:</p>



<ul class="wp-block-list">
<li>That your three-year technology roadmap needs quarterly reviews, not just annual ones</li>



<li>That the disaster recovery plan sitting in a SharePoint folder isn&#8217;t the same as a tested DR plan</li>



<li>That &#8220;we&#8217;ll address that next quarter&#8221; eventually becomes &#8220;why didn&#8217;t we address this sooner?&#8221;</li>



<li>That having an expert on call beats having a plan to find an expert when something breaks</li>
</ul>



<p class="wp-block-paragraph">These lessons matter. Write them down. They&#8217;re not just hindsight—they&#8217;re your blueprint for better decisions ahead.</p>



<h3 class="wp-block-heading" id="h-what-should-i-focus-on-next-year">What Should I Focus On Next Year?</h3>



<p class="wp-block-paragraph">For me, the answer was clear: <strong>I need to help more financial institutions and healthcare organizations understand that they have options.</strong> Most CIOs think they have two choices for database management: hire a full-time DBA (expensive and hard to find) or make do with whoever can &#8220;figure it out&#8221; (risky and unsustainable).</p>



<p class="wp-block-paragraph">There&#8217;s a third option: fractional DBA services that give you expert oversight without the full-time price tag. </p>



<p class="wp-block-paragraph">For you, your focus might be different. Maybe it&#8217;s:</p>



<ul class="wp-block-list">
<li>Finally getting your SQL Server environment documented and audit-ready</li>



<li>Building a disaster recovery plan that you&#8217;ve actually tested</li>



<li>Move a little further along the <a href="https://theserogroup.com/data-strategy/sql-server-maturity-curve-how-banks-move-from-reactive-risk-to-strategic-advantage/">SQL Server Maturity Curve</a></li>



<li>Finding a partner who understands banking compliance, not just databases</li>
</ul>



<p class="wp-block-paragraph">Whatever it is, the key is to actually choose something. Not everything. Something. And move toward it. Make progress.</p>



<h3 class="wp-block-heading" id="h-the-power-of-quiet-reflection">The Power of Quiet Reflection</h3>



<p class="wp-block-paragraph">Here&#8217;s the thing about those early Saturday morning moments: they&#8217;re rare. And precious. </p>



<p class="wp-block-paragraph">During the week, we’re in execution mode. We’re responding, reacting, solving, and fixing. That’s necessary work. But it’s not strategic work.</p>



<p class="wp-block-paragraph">Strategic work requires space. It requires stepping back from the urgent to focus on the important.</p>



<p class="wp-block-paragraph">So, here&#8217;s my challenge to you as we wind down 2025 and usher in the new year:</p>



<h3 class="wp-block-heading" id="h-block-off-time-just-to-think-then-protect-it">Block Off Time Just to Think, Then Protect It</h3>



<p class="wp-block-paragraph">Maybe it&#8217;s Saturday mornings before your family wakes up. Maybe it&#8217;s a long walk at lunch. Maybe it&#8217;s 90 minutes with your calendar blocked and your office door closed. </p>



<p class="wp-block-paragraph">Whatever it is, protect it. The decisions you make during that quiet time about where to focus, what risks to address, and which partnerships to invest in will help shape your entire year.</p>



<h3 class="wp-block-heading" id="h-your-turn">Your Turn</h3>



<p class="wp-block-paragraph">As you think about the year ahead, I&#8217;d encourage you to ask yourself those three questions:</p>



<ol class="wp-block-list">
<li>What went well this year? Celebrate it. Learn from it.</li>



<li>What did I learn? Write it down. It&#8217;s wisdom you paid for.</li>



<li>What should I focus on next year? Pick one or two things. Not everything.</li>
</ol>



<p class="wp-block-paragraph">And if one of those focus areas is &#8220;finally get our SQL Server environment to a place where I&#8217;m confident, not just hopeful,&#8221; let&#8217;s talk. That&#8217;s exactly what we help institutions do.</p>



<p class="wp-block-paragraph">If you&#8217;re a CIO wondering whether your SQL Server environment is as healthy and secure as it should be, I&#8217;d be happy to have a conversation. No sales pitch. Just two people talking candidly about database management. <a href="https://theserogroup.com/contact-us/" target="_blank" rel="noreferrer noopener">Schedule a time here</a>.</p>
<p>The post <a href="https://theserogroup.com/azure/why-quiet-reflection-leads-to-better-it-strategy-decisions/">Why Quiet Reflection Leads to Better IT Strategy Decisions</a> appeared first on <a href="https://theserogroup.com">The SERO Group</a>.</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">7691</post-id>	</item>
		<item>
		<title>4 Key Performance Benefits of Enabling Query Store</title>
		<link>https://theserogroup.com/dba/4-key-performance-benefits-of-enabling-query-store/</link>
		
		<dc:creator><![CDATA[Lee Markum]]></dc:creator>
		<pubDate>Wed, 15 Oct 2025 12:00:00 +0000</pubDate>
				<category><![CDATA[DBA]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[Database Administration]]></category>
		<category><![CDATA[Database Development]]></category>
		<category><![CDATA[IT Manager]]></category>
		<category><![CDATA[Query Store]]></category>
		<category><![CDATA[Script Library]]></category>
		<category><![CDATA[Sero]]></category>
		<category><![CDATA[Sero Group]]></category>
		<category><![CDATA[Serogroup]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[SQL Consultant]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[SQL Server Consultant]]></category>
		<category><![CDATA[SQL Server Management]]></category>
		<category><![CDATA[The Sero Group]]></category>
		<guid isPermaLink="false">https://theserogroup.com/?p=7565</guid>

					<description><![CDATA[<p>Query Store has been around since SQL Server 2016, but its full potential often goes untapped. Some companies were initially wary of it after some edge case problems arose during its initial rollout. However, since its initial release, Query Store has undergone numerous enhancements and is rapidly establishing itself as one of the most significant&#8230; <br /> <a class="read-more" href="https://theserogroup.com/dba/4-key-performance-benefits-of-enabling-query-store/">Read more</a></p>
<p>The post <a href="https://theserogroup.com/dba/4-key-performance-benefits-of-enabling-query-store/">4 Key Performance Benefits of Enabling Query Store</a> appeared first on <a href="https://theserogroup.com">The SERO Group</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">Query Store has been around since SQL Server 2016, but its full potential often goes untapped. Some companies were initially wary of it after some edge case problems arose during its initial rollout. However, since its initial release, Query Store has undergone numerous enhancements and is rapidly establishing itself as one of the most significant advancements in SQL Server, comparable to the SQL Server DMVs introduced in SQL Server 2005.</p>



<p class="wp-block-paragraph">What are the benefits of enabling Query Store? While there are many technical reasons, here are my top four broad advantages to consider.</p>



<h3 class="wp-block-heading" id="h-1-free-sql-server-monitoring">1. Free SQL Server monitoring</h3>



<p class="wp-block-paragraph">Your business has already paid for Query Store in the SQL Server licensing. With SQL Server 2016 and later, it is accessible at the database level. This means that for smaller shops that may not have a large enterprise environment, you don&#8217;t have to spend large sums of money to get observability from 3rd party software. Query Store&#8217;s native capture mechanisms can provide significant insight into your SQL Server&#8217;s performance, all without costing you any more money!</p>



<h3 class="wp-block-heading" id="h-2-capture-foundational-sql-server-performance-indicators">2. Capture foundational SQL Server performance indicators</h3>



<p class="wp-block-paragraph">Query Store collects the data already present in your SQL Server, displaying it in easy-to-understand graphs and reports. With Query Store, values for CPU, memory, duration, and more can be viewed based on MAX/AVG/STD Deviation metrics per query. This provides valuable insights into core metrics that shape the performance of your applications. Furthermore, this data allows your company to see not only how specific queries behaved when there was a performance problem but also to trend those queries over time to see shifts in performance.</p>



<p class="wp-block-paragraph">SQL Server wait statistics are also captured and displayed in Query Store. When a query needs a resource, like CPU, or data read from disk, then a wait type is assigned to the query. These various waits affect query performance in a multitude of ways, and Query Store surfaces those performance-impacting waits for you. For example, the Query Wait Statistics report may show large bar graphs for BUFFER IO and CPU. Queries appearing in both graphs may be suffering from large table scans because of missing indexes.</p>



<p class="wp-block-paragraph">Additionally, Query Store captures the query plans associated with queries. Think of query plans as the blueprint for how the query will be executed. These plans contain data about the decisions SQL Server is making about your data and how to process it. Some decisions revealed in the query plan can pinpoint performance issues. For example, query plans that regularly contain table scan operators may indicate missing indexes that force SQL Server to scan millions of rows when it only needs to retrieve a few thousand rows.</p>



<h3 class="wp-block-heading" id="h-3-talk-to-your-vendors-with-data-in-hand">3. Talk to your vendors with data in hand</h3>



<p class="wp-block-paragraph">COTS vendors need to see hard data when approached with a performance problem. Query Store can provide that data. Without it, you can report a problem, but the software vendor is unlikely to consider making changes.</p>



<p class="wp-block-paragraph">If you engage a DBA as a Service company, having performance data in hand will go a long way toward building a good relationship with that vendor. They will see your preparedness and be drawn to that. Also, it will allow them to solve your problem faster, and isn&#8217;t that what you really want anyway?</p>



<h3 class="wp-block-heading" id="h-4-allow-your-applications-to-take-advantage-of-new-performance-features">4. Allow your applications to take advantage of new performance features</h3>



<p class="wp-block-paragraph">Newer versions of SQL Server have a collection of features known as Intelligent Query Processing (IQP). Features such as memory grant feedback, degree of parallelism feedback, and more are tied into IQP. These features depend on Query Store. Without Query Store running and without using the appropriate database compatibility level, your applications are missing out on performance-enhancing features that make queries execute faster, use fewer resources, or do both at the same time.</p>



<h3 class="wp-block-heading" id="h-want-to-work-with-the-sero-group">Want to work with The SERO Group?</h3>



<p class="wp-block-paragraph">Want to learn more about how The SERO Group helps organizations take the guesswork out of managing their SQL Servers? <a href="https://theserogroup.com/contact-us/" target="_blank" rel="noreferrer noopener">Schedule a no-obligation discovery call</a>&nbsp;with us to get started.</p>
<p>The post <a href="https://theserogroup.com/dba/4-key-performance-benefits-of-enabling-query-store/">4 Key Performance Benefits of Enabling Query Store</a> appeared first on <a href="https://theserogroup.com">The SERO Group</a>.</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">7565</post-id>	</item>
		<item>
		<title>The Impact of SQL Server Downtime (and How to Prevent It)</title>
		<link>https://theserogroup.com/sql-server/impact-sql-server-downtime-and-how-to-prevent-it/</link>
		
		<dc:creator><![CDATA[Joe Webb]]></dc:creator>
		<pubDate>Wed, 12 Mar 2025 12:00:00 +0000</pubDate>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[Database Administration]]></category>
		<category><![CDATA[Database Development]]></category>
		<category><![CDATA[IT Manager]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[SQL Assessment]]></category>
		<category><![CDATA[SQL Audit]]></category>
		<category><![CDATA[SQL Consultant]]></category>
		<category><![CDATA[SQL Security]]></category>
		<category><![CDATA[SQL Server Management]]></category>
		<category><![CDATA[The Sero Group]]></category>
		<guid isPermaLink="false">https://theserogroup.com/?p=7226</guid>

					<description><![CDATA[<p>For many businesses, the availability and performance of SQL Server databases are paramount. Unplanned downtime can lead to significant financial losses, tarnished reputations, and regulatory repercussions. Understanding the costs associated with SQL Server downtime and exploring strategies to mitigate these risks is essential for those aiming to maintain operational resilience in 2025. Read on for&#8230; <br /> <a class="read-more" href="https://theserogroup.com/sql-server/impact-sql-server-downtime-and-how-to-prevent-it/">Read more</a></p>
<p>The post <a href="https://theserogroup.com/sql-server/impact-sql-server-downtime-and-how-to-prevent-it/">The Impact of SQL Server Downtime (and How to Prevent It)</a> appeared first on <a href="https://theserogroup.com">The SERO Group</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">For many businesses, the availability and performance of SQL Server databases are paramount. Unplanned downtime can lead to significant financial losses, tarnished reputations, and regulatory repercussions. Understanding the costs associated with SQL Server downtime and exploring strategies to mitigate these risks is essential for those aiming to maintain operational resilience in 2025. Read on for an example of how to quantify the impact of SQL Server downtime as well as how to prevent it. </p>



<p class="wp-block-paragraph">Let’s take the banking sector as a prime example—though the same risks and challenges apply to healthcare and other industries.</p>



<h2 class="wp-block-heading" id="h-the-5-biggest-costs-of-sql-server-downtime-for-banks-4-ways-to-prevent-it">The 5 Biggest Costs of SQL Server Downtime for Banks + 4 Ways to Prevent It</h2>



<h3 class="wp-block-heading" id="h-the-financial-impact-of-sql-server-downtime"><strong>The Financial Impact of SQL Server Downtime</strong></h3>



<p class="wp-block-paragraph">Downtime in the banking sector is more than an inconvenience. It&#8217;s more than just a little blimp in operation. It’s a substantial event with financial consequences. </p>



<p class="wp-block-paragraph">According to <a href="https://www.splunk.com/en_us/perspectives/cost-of-downtime-banking.html" target="_blank" rel="noreferrer noopener">a report by Splunk</a>, companies in the financial services industry incur an average annual loss of&nbsp;<strong>$152 million</strong>&nbsp;due to downtime. That&#8217;s a staggering figure.</p>



<h3 class="wp-block-heading" id="h-breaking-down-the-costs"><strong>Breaking Down the Costs</strong></h3>



<ol class="wp-block-list">
<li><strong>Lost Revenue:</strong>&nbsp;During downtime, banks are unable to process transactions, leading to immediate revenue loss. For instance, <a href="https://usa.visa.com/visa-everywhere/blog/bdp/2023/07/07/downtime-can-be-1688729060636.html" target="_blank" rel="noreferrer noopener">a 2016 study by the Ponemon Institute</a> found that&nbsp;each minute of downtime can cost a business an average of $9,000. That&#8217;s over&nbsp;$500,000 per hour!&nbsp;&nbsp;</li>



<li><strong>Decreased Productivity:</strong>&nbsp;Employees rely on database access to perform their duties. When systems are down, productivity stops. This affects various departments and delays critical operations.</li>



<li><strong>Customer Trust and Brand Reputation:</strong>&nbsp;Customers expect uninterrupted access to banking services. Repeated or prolonged downtime can erode trust, prompting customers to seek more reliable alternatives.&nbsp;</li>



<li><strong>Regulatory and Compliance Penalties:</strong>&nbsp;Financial institutions are subject to stringent regulations requiring high availability. Non-compliance due to downtime can result in fines and increased scrutiny from regulators.</li>



<li><strong>Emergency Recovery Expenses:</strong>&nbsp;Addressing unplanned downtime often necessitates emergency IT interventions, which can be costly, especially if external consultants are required. </li>
</ol>



<h3 class="wp-block-heading" id="h-the-cost-of-maintaining-an-in-house-dba-team"><strong>The Cost of Maintaining an In-House DBA Team</strong></h3>



<p class="wp-block-paragraph">Protecting and maintaining database systems like SQL Server to the level required by the financial institution requires a specific set of skills. Banks have traditionally employed in-house Database Administrators (DBAs) to help mitigate downtime risks. However, this approach comes with its own set of challenges and expenses. Let&#8217;s look at those.</p>



<p class="wp-block-paragraph"><strong>Financial Considerations</strong>:</p>



<ul class="wp-block-list">
<li><strong>Salaries:</strong>&nbsp;<a href="https://www.glassdoor.com/Salaries/senior-sql-server-database-administrator-salary-SRCH_KO0%2C40.htm" target="_blank" rel="noreferrer noopener">According to Glassdoor</a>, the average salary for a Senior SQL Server DBA in the United States varies, with estimates ranging from&nbsp;$112,000&nbsp;to&nbsp;$153,000&nbsp;per year, depending on experience and location.&nbsp;&nbsp;</li>



<li><strong>Additional Costs:</strong>&nbsp;In addition to salaries, banks must account for benefits, ongoing training, and the resources required for recruitment and retention, as well as eventually replacement when another institution entices them to leave.</li>
</ul>



<p class="wp-block-paragraph"><strong>Operational Challenges:</strong></p>



<ul class="wp-block-list">
<li><strong>Keeping Pace with Technology:</strong>&nbsp;The rapid evolution of database technologies necessitates continuous learning. Ensuring that in-house teams are up-to-date can be both time-consuming and costly.</li>
</ul>



<h3 class="wp-block-heading" id="h-partnering-with-database-experts-a-strategic-alternative"><strong>Partnering with Database Experts: A Strategic Alternative</strong></h3>



<p class="wp-block-paragraph">Hiring a DBA, much less a team of DBAs, can be cost-prohibitive for many banks, especially if the bank has fewer than a dozen SQL Servers. However, critical systems such as the Core Banking Systems require elevated attention from specialized DBA professionals. </p>



<p class="wp-block-paragraph">A catch-22. However, there is an alternative.</p>



<p class="wp-block-paragraph">Collaborating with partners provides access to skilled professional DBAs, mature DBA team processes, and monitoring and alerting toolsets required to keep a SQL Server environment healthy, secure, and reliable.</p>



<p class="wp-block-paragraph"><strong>Benefits of Partnering:</strong></p>



<ul class="wp-block-list">
<li><strong>Access to Expertise:</strong>&nbsp;Partners like The SERO Group bring a wealth of experience and specialized knowledge, ensuring that your databases are managed using industry best practices.</li>



<li><strong>Breadth of Experience:</strong> Partners work with many different organizations and can offer insightful guidance that may not be available to an internal DBA.</li>



<li><strong>Scalability:</strong>&nbsp;Your SQL Server management needs will evolve as your institution grows. A trusted partner can scale services accordingly, providing flexibility without the challenges of hiring and training new staff. </li>



<li><strong>Focus on Core Competencies:</strong>&nbsp;By entrusting database management to professional DBAs, your internal teams can focus on strategic initiatives that drive business growth.</li>



<li><strong>Cost Efficiency:</strong>&nbsp;Outsourcing database management can reduce or eliminate the need for a full-time, in-house DBA team, leading to significant cost savings.</li>
</ul>



<h3 class="wp-block-heading" id="h-4-proactive-measures-to-prevent-downtime">4 <strong>Proactive Measures to Prevent Downtime</strong></h3>



<p class="wp-block-paragraph">Whether building an in-house DBA team or leveraging expert partners, having a proactive strategy to minimize the risk of SQL Server downtime is crucial.</p>



<p class="wp-block-paragraph"><strong>Recommended Strategies:</strong></p>



<ol class="wp-block-list">
<li><strong>Regular Health Checks:</strong>&nbsp;Conduct comprehensive assessments of your SQL Server environments to identify and address potential vulnerabilities before they lead to downtime. These include deep-dive Health Checks, Daily Health Checks, and regular Center for Internet Security® (CIS®) Benchmarks™ assessments.</li>



<li><strong>Automated Monitoring:</strong>&nbsp;Implement tools that provide insights into database performance and configuration settings, allowing for recognition and responses to anomalies.</li>



<li><strong>Continuous Training:</strong>&nbsp;Ensure that everyone involved in database management is up-to-date with the latest technologies and best practices. Provide them with the resources required to keep your systems healthy, secure, and reliable.</li>



<li><strong>Disaster Recovery Planning:</strong>&nbsp;Develop and regularly test disaster recovery plans to ensure quick restoration of services in the event of an outage. Ensure your plans meet your stated stakeholder Recovery Point Objectives (RPOs) and Recovery Time Objectives (RTOs).</li>
</ol>



<p class="is-style-plain wp-block-paragraph">Remember that scheduled downtime is <em>always</em> better than unscheduled downtime.</p>



<h2 class="wp-block-heading" id="h-working-with-us">Working with Us</h2>



<p class="wp-block-paragraph">The costs associated with SQL Server downtime are substantial, affecting both the financial standing and reputation of your organization. Partnering with specialized firms like us provides a cost-effective, expert solution to SQL Server management. By adopting proactive measures and leveraging external expertise, banks can significantly reduce the risk of downtime, ensuring continuous, reliable service for their customers.</p>



<p class="wp-block-paragraph">Want to learn more?  <a href="https://theserogroup.com/contact-us/" target="_blank" rel="noreferrer noopener">Schedule a no-obligation discovery call</a>.</p>
<p>The post <a href="https://theserogroup.com/sql-server/impact-sql-server-downtime-and-how-to-prevent-it/">The Impact of SQL Server Downtime (and How to Prevent It)</a> appeared first on <a href="https://theserogroup.com">The SERO Group</a>.</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">7226</post-id>	</item>
		<item>
		<title>Visit Us at the Georgia Bankers Association Operations and Technology Conference!</title>
		<link>https://theserogroup.com/events/georgia-bankers-association-operations-and-technology-conference-2025/</link>
					<comments>https://theserogroup.com/events/georgia-bankers-association-operations-and-technology-conference-2025/#comments</comments>
		
		<dc:creator><![CDATA[Joe Webb]]></dc:creator>
		<pubDate>Wed, 05 Feb 2025 13:00:29 +0000</pubDate>
				<category><![CDATA[Events]]></category>
		<category><![CDATA[SQL Conference]]></category>
		<category><![CDATA[SQL Events]]></category>
		<category><![CDATA[The Sero Group]]></category>
		<guid isPermaLink="false">https://theserogroup.com/?p=7045</guid>

					<description><![CDATA[<p>If you’re attending the GBA Operations and Technology Conference, we’d love to meet you! This event is Georgia’s leading conference for bank operations and technology professionals, covering key topics like cybersecurity, payments, fintech partnerships, and vendor management. It’s a great opportunity to network, learn from industry experts, and explore new solutions to today’s banking challenges.&#8230; <br /> <a class="read-more" href="https://theserogroup.com/events/georgia-bankers-association-operations-and-technology-conference-2025/">Read more</a></p>
<p>The post <a href="https://theserogroup.com/events/georgia-bankers-association-operations-and-technology-conference-2025/">Visit Us at the Georgia Bankers Association Operations and Technology Conference!</a> appeared first on <a href="https://theserogroup.com">The SERO Group</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">If you’re attending the GBA Operations and Technology Conference, we’d love to meet you! This event is Georgia’s leading conference for bank operations and technology professionals, covering key topics like cybersecurity, payments, fintech partnerships, and vendor management. It’s a great opportunity to network, learn from industry experts, and explore new solutions to today’s banking challenges.</p>



<h3 class="wp-block-heading" id="h-event-details-gba-operations-and-technology-conference">Event details: GBA Operations and Technology Conference</h3>



<p class="wp-block-paragraph">February 26-28, 2025<br>The DeSoto, Savannah, GA<br>Want to register? <a href="https://web.cvent.com/event/2417fbf6-014d-4639-b0a3-f6598fe9b930/regProcessStep1" target="_blank" rel="noreferrer noopener">Sign up here</a>.</p>



<h3 class="wp-block-heading" id="h-what-you-ll-learn-at-the-conference">What You’ll Learn at the Conference</h3>



<p class="wp-block-paragraph">The GBA Operations and Technology Conference isn’t just about networking—it’s a valuable opportunity to gain insights into the latest trends shaping banking technology. With sessions covering cybersecurity best practices, fintech partnerships, vendor risk management, and payments innovation, attendees will walk away with actionable strategies to improve operational efficiency and security.</p>



<p class="wp-block-paragraph">For financial institutions managing mission-critical data in SQL Server, staying ahead of these trends is crucial. As technology evolves and regulations tighten, banks must ensure their database environments are secure, compliant, and optimized for performance. That’s where The SERO Group comes in—we’ll be there to discuss best practices, answer your questions, and provide expert guidance tailored to your institution’s needs.</p>



<p class="wp-block-paragraph">Would you like a dedicated time to chat with our team at the event? <a href="https://theserogroup.com/contact-us/">Contact us</a> today to schedule a quick meeting!</p>



<h3 class="wp-block-heading" id="h-why-visit-our-booth">Why visit our booth?</h3>



<p class="wp-block-paragraph">Stop by our booth to enter our raffle, grab a free gift, or chat about how The SERO Group can support your banking technology needs. We help financial institutions keep their SQL Server environments secure, reliable, and efficient—whether you&#8217;re tackling security, compliance, or performance challenges.</p>



<h3 class="wp-block-heading">Can’t make it to the event? Connect with us for a call.</h3>



<p class="wp-block-paragraph">If you won’t be at the event, we&#8217;d still love to connect! <a href="https://theserogroup.com/contact-us/">Schedule a free, no-obligation discovery call</a> to see how we can support your organization in 2025.</p>
<p>The post <a href="https://theserogroup.com/events/georgia-bankers-association-operations-and-technology-conference-2025/">Visit Us at the Georgia Bankers Association Operations and Technology Conference!</a> appeared first on <a href="https://theserogroup.com">The SERO Group</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://theserogroup.com/events/georgia-bankers-association-operations-and-technology-conference-2025/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">7045</post-id>	</item>
		<item>
		<title>The Best Business Books I Read in 2024</title>
		<link>https://theserogroup.com/professional-development/best-business-books-i-read-in-2024/</link>
		
		<dc:creator><![CDATA[Joe Webb]]></dc:creator>
		<pubDate>Wed, 08 Jan 2025 13:00:00 +0000</pubDate>
				<category><![CDATA[Professional Development]]></category>
		<category><![CDATA[IT Manager]]></category>
		<category><![CDATA[Sero]]></category>
		<category><![CDATA[Sero Group]]></category>
		<category><![CDATA[Serogroup]]></category>
		<category><![CDATA[SQL Consultant]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[SQL Server Consultant]]></category>
		<category><![CDATA[SQL Server Management]]></category>
		<category><![CDATA[The Sero Group]]></category>
		<guid isPermaLink="false">https://theserogroup.com/?p=6981</guid>

					<description><![CDATA[<p>I read 50 to 60 books a year, a habit I&#8217;ve maintained for most of my life. Some of those are just-for-fun fiction books. Others are educational nonfiction books that give me glimpses into other disciplines or subjects. Still others, like the books I&#8217;ll share in this post, help me to improve in my various&#8230; <br /> <a class="read-more" href="https://theserogroup.com/professional-development/best-business-books-i-read-in-2024/">Read more</a></p>
<p>The post <a href="https://theserogroup.com/professional-development/best-business-books-i-read-in-2024/">The Best Business Books I Read in 2024</a> appeared first on <a href="https://theserogroup.com">The SERO Group</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">I read 50 to 60 books a year, a habit I&#8217;ve maintained for most of my life. Some of those are just-for-fun fiction books. Others are educational nonfiction books that give me glimpses into other disciplines or subjects. Still others, like the books I&#8217;ll share in this post, help me to improve in my various roles. These serve as my continuing education and continuous improvement.</p>



<p class="wp-block-paragraph">Whether you&#8217;re a SQL Server DBA, IT team leader, or senior executive, I hope you&#8217;ll find these books interesting or insightful.</p>



<p class="wp-block-paragraph">So, here are the four best business books I read in 2024.</p>



<h3 class="wp-block-heading" id="h-working-genius-by-patrick-lencioni"><strong><a href="https://bookshop.org/p/books/the-6-types-of-working-genius-a-better-way-to-understand-your-gifts-your-frustrations-and-your-team-patrick-m-lencioni/18397137?ean=9781637743294&amp;gad_source=1&amp;gclid=Cj0KCQiAvvO7BhC-ARIsAGFyToUD-7m7xd77vGxeai8EijednspfXlUFSgfb_rSreBMDPUv7E7DBenQaAm-JEALw_wcB" target="_blank" rel="noreferrer noopener"><em>Working Genius</em></a> by Patrick Lencioni</strong></h3>



<p class="wp-block-paragraph">In <em>Working Genius</em>, Patrick Lencioni introduces a model that helps individuals and teams understand their natural talents and areas of frustration in the workplace. By understanding and aligning their work with their strengths, individuals and teams can increase productivity, reduce burnout, and achieve greater fulfillment.</p>



<ul class="wp-block-list">
<li><strong>The Six Types of Genius:</strong>&nbsp;Each person has two areas of natural talent (genius), two areas of competence, and two areas of frustration. Recognizing these can lead to better self-awareness and job satisfaction.</li>



<li><strong>Genius Categories:</strong>&nbsp;The six types include Wonder (asking big questions), Invention (creating ideas), Discernment (evaluating ideas), Galvanizing (rallying people), Enablement (providing support), and Tenacity (ensuring completion).</li>



<li><strong>Team Balance:</strong>&nbsp;Effective teams include all six areas of genius. A lack of diversity in these strengths can lead to inefficiencies, frustration, and unmet goals.</li>



<li><strong>Self-Awareness Improves Work:</strong>&nbsp;Knowing your strengths and frustrations helps you focus on tasks that energize you and delegate or collaborate on tasks that don’t.</li>
</ul>



<h3 class="wp-block-heading" id="h-the-12-week-year-by-brian-p-moran-and-michael-lemmington"><strong><a href="https://bookshop.org/p/books/the-12-week-year-get-more-done-in-12-weeks-than-others-do-in-12-months-brian-p-moran/16632599?ean=9781118509234" target="_blank" rel="noreferrer noopener"><em>The 12 Week Year</em></a> by Brian P. Moran and Michael Lemmington</strong></h3>



<p class="wp-block-paragraph">In&nbsp;<em>The 12 Week Year</em>, the authors share their productivity system. They claim that with it, you can achieve more in 12 weeks than most people do in 12 months by shortening the planning and execution cycle. The shorter cycle creates a sense of urgency and focus that drives consistent action. Instead of setting yearly goals, the authors encourage breaking them into manageable, time-bound objectives to achieve results faster. They also highlight the importance of clarity, accountability, and measurement to stay on track.</p>



<ul class="wp-block-list">
<li><strong>Shorter Time Frames Lead to Focus:</strong>&nbsp;12-week cycles eliminate the complacency that comes with annual goals and maintain high levels of focus and urgency.</li>



<li><strong>Clarity Drives Success:</strong>&nbsp;Clearly defining goals and breaking them into actionable weekly tasks ensures alignment and progress.</li>



<li><strong>Measurement Matters:</strong>&nbsp;Regularly tracking key performance indicators (KPIs) allows you to track progress and adjust if needed.</li>



<li><strong>Accountability is Key:</strong>&nbsp;Sharing your goals with an accountability partner or creating team metrics creates positive external pressure to stay committed.</li>
</ul>



<h3 class="wp-block-heading" id="h-leading-growt-h-by-anthony-iannarino"><strong><a href="https://www.amazon.com/Leading-Growth-Formula-Consistently-Increasing-ebook/dp/B0BG9F4L7S/ref=tmm_kin_swatch_0?_encoding=UTF8&amp;sr=" target="_blank" rel="noreferrer noopener"><em>Leading Growt</em></a><a href="https://www.amazon.com/Leading-Growth-Formula-Consistently-Increasing-ebook/dp/B0BG9F4L7S/ref=sr_1_1?crid=1FBPQUB89PZIR&amp;dib=eyJ2IjoiMSJ9.1F89xEQrCNWqbEV96-11npdjQvUqphbZIB4vZdP3JZvGjHj071QN20LucGBJIEps.EqX9hzWh7RPFC36cYtPrEKr9rlv-kkEYVYnC_27XMbA&amp;dib_tag=se&amp;keywords=Leading+Growth+by+Anthony+Iannarino&amp;qid=1736270472&amp;s=digital-text&amp;sprefix=leading+growth+by+anthony+iannarino%2Cdigital-text%2C78&amp;sr=1-1" target="_blank" rel="noreferrer noopener"><em>h</em></a> by Anthony Iannarino</strong></h3>



<p class="wp-block-paragraph">Anthony Iannarino is known for his work and writing in sales and sales leadership. In Leading Growth, he highlights leadership&#8217;s role in fostering a growth culture and building high-performing sales teams. He also emphasizes aligning strategies with customer needs to drive sustainable success. The book outlines strategies for overcoming common challenges in sales, including unproductive behaviors, lack of alignment, and ineffective leadership practices. All of these apply to non-sales teams, too.</p>



<ul class="wp-block-list">
<li><strong>Leadership Drives Sales Growth:</strong>&nbsp;A strong sales team requires a leader who sets clear expectations, fosters accountability, and motivates team members to excel.</li>



<li><strong>Client-Centric Approach:</strong>&nbsp;Aligning sales strategies with customer needs builds trust and long-term partnerships, which are critical for sustained growth.</li>



<li><strong>Overcoming Challenges:</strong>&nbsp;Leaders must address unproductive habits and inefficiencies within their teams to unlock higher levels of performance.</li>



<li><strong>Culture Matters:</strong>&nbsp;A growth-oriented culture encourages innovation, collaboration, and resilience, driving both individual and team success.</li>
</ul>



<h3 class="wp-block-heading" id="h-buy-back-your-time-by-dan-martell"><strong><a href="https://bookshop.org/p/books/buy-back-your-time-get-unstuck-reclaim-your-freedom-and-build-your-empire-dan-martell/18422553?ean=9780593422977" target="_blank" rel="noreferrer noopener"><em>Buy Back Your Time</em></a> by Dan Martell</strong></h3>



<p class="wp-block-paragraph">In&nbsp;<em>Buy Back Your Time</em>, Dan Martell introduces a powerful framework to help entrepreneurs and leaders reclaim their time by strategically outsourcing tasks and focusing on high-value activities. Martell argues that time is your most valuable asset, and by “buying it back,” you can create more freedom, reduce stress, and scale your business effectively. The book offers advice on identifying tasks to delegate, building systems for efficiency, and prioritizing what matters most.</p>



<ul class="wp-block-list">
<li><strong>Time is Your Most Valuable Asset:</strong>&nbsp;By identifying and offloading low-value tasks, you can focus on activities that drive growth and bring personal fulfillment.</li>



<li><strong>The Buyback Loop:</strong>&nbsp;Martell outlines a repeatable system: audit your time, determine what to delegate, and reinvest the freed-up hours into strategic priorities.</li>



<li><strong>Delegate, Don’t Abdicate:</strong>&nbsp;Effective delegation requires clear instructions, the right people, and systems to ensure tasks are completed to your standards.</li>



<li><strong>Focus on Your Zone of Genius:</strong>&nbsp;Spend your time on activities where you excel and create the most value, leaving other tasks to those better suited to handle them.</li>
</ul>



<h3 class="wp-block-heading" id="h-your-thoughts"><strong>Your Thoughts?</strong></h3>



<p class="wp-block-paragraph">Have you read any of these books? What was the best book you read last year? I&#8217;d love to hear about your thoughts on <a href="https://www.linkedin.com/in/josephkwebb/" target="_blank" rel="noreferrer noopener">LinkedIn</a> or just <a href="mailto:joew@theserogroup.com">by email</a>.</p>



<h3 class="wp-block-heading" id="h-what-s-next"><strong>What&#8217;s Next?</strong></h3>



<p class="wp-block-paragraph">If you manage SQL Servers and want to learn how The SERO Group supports clients, let&#8217;s have a conversation. We help keep SQL Servers secure, reliable, and running smoothly. Let&#8217;s <a href="https://theserogroup.com/contact-us/" target="_blank" rel="noreferrer noopener">schedule some time to talk</a>.</p>



<h3 class="wp-block-heading" id="h-just-for-fun"><strong>Just For Fun</strong></h3>



<p class="wp-block-paragraph">By the way, here are some of my favorite fiction and non-fiction books that I read in 2024.</p>



<ul class="wp-block-list">
<li><a href="https://bookshop.org/p/books/west-with-giraffes-lynda-rutledge/16010077?ean=9781542023344" target="_blank" rel="noreferrer noopener"><em>West with Giraffes</em></a> by Lynda Rutledge</li>



<li><a href="https://bookshop.org/p/books/orphan-x-gregg-hurwitz/7372499?ean=9781250758798" target="_blank" rel="noreferrer noopener"><em>Orphan X</em></a> by Gregg Hurwitz</li>



<li><a href="https://bookshop.org/p/books/project-hail-mary-andy-weir/18644162?ean=9780593135228" target="_blank" rel="noreferrer noopener"><em>Project Hail Mary</em></a> by Andy Weir</li>



<li><a href="https://bookshop.org/p/books/a-history-of-the-world-in-6-glasses-tom-standage/16634565?ean=9780802715524"><em>A History of the World in 6 Gla</em></a><em><a href="https://bookshop.org/p/books/a-history-of-the-world-in-6-glasses-tom-standage/16634565?ean=9780802715524" target="_blank" rel="noreferrer noopener">s</a></em><a href="https://bookshop.org/p/books/a-history-of-the-world-in-6-glasses-tom-standage/16634565?ean=9780802715524"><em>ses</em></a> by Tom Standage</li>



<li><a href="https://www.amazon.com/Nancy-Wake-World-Twos-Rebellious-ebook/dp/B07XQZRWXT/ref=tmm_kin_swatch_0?_encoding=UTF8&amp;dib_tag=se&amp;dib=eyJ2IjoiMSJ9.ZtQF1LjuV77b-A88J7sVhoGmrNrBb-oRAqT7twyav5ytZjHHu7nEP4jSvoGQt1EvxDTPr701tufstpB3T1CYeQ.e5mD6lfeZgu4wGn_caAORR2SAy1H8VHDX1tPlXkHWbg&amp;qid=1736270425&amp;sr=1-1" target="_blank" rel="noreferrer noopener"><em>Nancy Wake: World War II’s Most Rebellious Spy</em></a> by Russell Bradden</li>
</ul>
<p>The post <a href="https://theserogroup.com/professional-development/best-business-books-i-read-in-2024/">The Best Business Books I Read in 2024</a> appeared first on <a href="https://theserogroup.com">The SERO Group</a>.</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">6981</post-id>	</item>
		<item>
		<title>Cheers to a Joyful Holiday and a Bright New Year</title>
		<link>https://theserogroup.com/the-sero-group/cheers-to-a-joyful-holiday-and-a-bright-new-year/</link>
		
		<dc:creator><![CDATA[Joe Webb]]></dc:creator>
		<pubDate>Thu, 26 Dec 2024 13:00:35 +0000</pubDate>
				<category><![CDATA[The Sero Group]]></category>
		<guid isPermaLink="false">https://theserogroup.com/?p=6961</guid>

					<description><![CDATA[<p>As the year comes to an end, all of us at The SERO Group want to extend our warmest wishes to you. We hope that 2024 has been fulfilling and joyful and that you&#8217;ve had the opportunity to celebrate with your family and friends. The holiday season is a time for reflection and connection, and&#8230; <br /> <a class="read-more" href="https://theserogroup.com/the-sero-group/cheers-to-a-joyful-holiday-and-a-bright-new-year/">Read more</a></p>
<p>The post <a href="https://theserogroup.com/the-sero-group/cheers-to-a-joyful-holiday-and-a-bright-new-year/">Cheers to a Joyful Holiday and a Bright New Year</a> appeared first on <a href="https://theserogroup.com">The SERO Group</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">As the year comes to an end, all of us at The SERO Group want to extend our warmest wishes to you. We hope that 2024 has been fulfilling and joyful and that you&#8217;ve had the opportunity to celebrate with your family and friends.</p>



<p class="wp-block-paragraph">The holiday season is a time for reflection and connection, and we sincerely hope it brings you peace, happiness, and moments of rest. As we look ahead to 2025, we wish you continued success, health, and joy in all that you do!</p>



<p class="wp-block-paragraph">Thank you for being part of our community. Here’s to a wonderful holiday season and an exciting new year ahead!</p>
<p>The post <a href="https://theserogroup.com/the-sero-group/cheers-to-a-joyful-holiday-and-a-bright-new-year/">Cheers to a Joyful Holiday and a Bright New Year</a> appeared first on <a href="https://theserogroup.com">The SERO Group</a>.</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">6961</post-id>	</item>
		<item>
		<title>8 Ways to Reduce the Cost of a SQL Server Estate</title>
		<link>https://theserogroup.com/sql-server/8-ways-to-reduce-the-cost-of-a-sql-server-estate/</link>
					<comments>https://theserogroup.com/sql-server/8-ways-to-reduce-the-cost-of-a-sql-server-estate/#comments</comments>
		
		<dc:creator><![CDATA[Joe Webb]]></dc:creator>
		<pubDate>Wed, 16 Oct 2024 12:00:00 +0000</pubDate>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[Database Administration]]></category>
		<category><![CDATA[Database Development]]></category>
		<category><![CDATA[IT Manager]]></category>
		<category><![CDATA[Sero]]></category>
		<category><![CDATA[Sero Group]]></category>
		<category><![CDATA[Serogroup]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[SQL Assessment]]></category>
		<category><![CDATA[SQL Audit]]></category>
		<category><![CDATA[SQL Consultant]]></category>
		<category><![CDATA[SQL Security]]></category>
		<category><![CDATA[SQL Server Consultant]]></category>
		<category><![CDATA[SQL Server Management]]></category>
		<category><![CDATA[The Sero Group]]></category>
		<guid isPermaLink="false">https://theserogroup.com/?p=6735</guid>

					<description><![CDATA[<p>Whether in the cloud or a data center, the cost of maintaining a SQL Server estate can escalate quickly. Beyond the direct expenses, indirect costs can quietly unbalance and outpace your IT budget. Let&#8217;s look at 8 ways to reduce the costs of your SQL Server estate. Direct and Indirect Costs of a SQL Server&#8230; <br /> <a class="read-more" href="https://theserogroup.com/sql-server/8-ways-to-reduce-the-cost-of-a-sql-server-estate/">Read more</a></p>
<p>The post <a href="https://theserogroup.com/sql-server/8-ways-to-reduce-the-cost-of-a-sql-server-estate/">8 Ways to Reduce the Cost of a SQL Server Estate</a> appeared first on <a href="https://theserogroup.com">The SERO Group</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">Whether in the cloud or a data center, the cost of maintaining a SQL Server estate can escalate quickly. Beyond the direct expenses, indirect costs can quietly unbalance and outpace your IT budget. Let&#8217;s look at 8 ways to reduce the costs of your SQL Server estate.</p>



<h2 class="wp-block-heading" id="h-direct-and-indirect-costs-of-a-sql-server-estate">Direct and Indirect Costs of a SQL Server Estate</h2>



<p class="wp-block-paragraph">The costs associated with your SQL Server environment can be divided into two broad categories: direct and indirect costs.</p>



<h3 class="wp-block-heading" id="h-direct-costs">Direct costs</h3>



<p class="wp-block-paragraph">The direct costs associated with a SQL Server estate include:</p>



<ol class="wp-block-list">
<li>Licensing fees for SQL Server and related software</li>



<li>Hardware expenses, including servers and storage</li>



<li>Maintenance and support contracts</li>



<li>Energy consumption and data center costs</li>



<li>Cloud costs associated with VMs, Managed Instances, and Azure SQL Databases or RDS instances</li>
</ol>



<h3 class="wp-block-heading" id="h-indirect-costs">Indirect costs</h3>



<p class="wp-block-paragraph">Indirect costs are harder to quantify but can be just as significant as direct costs. These may include:</p>



<ol class="wp-block-list">
<li>Database administration and management time</li>



<li>Downtime and lost productivity when something goes wrong</li>



<li>Security risks and compliance issues</li>



<li>Opportunity costs associated with delayed projects and initiatives</li>
</ol>



<h2 class="wp-block-heading" id="h-a-typical-scenario">A typical scenario</h2>



<p class="wp-block-paragraph">The direct and indirect costs can add up quickly. Here&#8217;s a typical scenario. </p>



<p class="wp-block-paragraph">A company has five SQL Server VMs in Microsoft Azure and two older VMs in a rack in the old server room. Over the past year, performance has deteriorated on two SQL Server VM instances in Azure, so the system administrator who takes care of the SQL Servers added more memory and CPU. The other three SQL instances in Azure seem to be running fine without any perceivable performance issues. The two local SQL instances are primarily used for historical purposes. They are past extended support. </p>



<p class="wp-block-paragraph">Can we reduce the direct and indirect costs of managing the company&#8217;s SQL estate? </p>



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



<h2 class="wp-block-heading" id="h-8-ways-to-reduce-the-cost-of-a-sql-server-estate"><strong>8 ways to reduce the cost of a SQL Server estate</strong></h2>



<p class="wp-block-paragraph">So, let&#8217;s look at ways to reduce the cost of a SQL Server estate. This is not an exhaustive list. But it&#8217;s a good starting point as you evaluate your SQL Server environment. These are in no particular order.</p>



<h3 class="wp-block-heading" id="h-1-server-consolidation">1. <strong>Server Consolidation</strong></h3>



<p class="wp-block-paragraph">Does the company have the right number of SQL Servers? Could they reduce the number of SQL Servers in their estate through consolidation?</p>



<p class="wp-block-paragraph">Consolidating multiple SQL Server instances onto fewer, more powerful servers can reduce hardware and licensing costs. It can also reduce the number of SQL Server instances that must be managed, patched, etc.</p>



<p class="wp-block-paragraph">A SQL Server consolidation effort involves:</p>



<ul class="wp-block-list">
<li>Assessing your current SQL Server utilization for underused resources</li>



<li>Combining compatible workloads onto shared servers</li>



<li>Right-sizing servers for the consolidated workloads</li>
</ul>



<p class="wp-block-paragraph"><strong>Scenario:</strong> In this scenario, look at the three VM SQL instances. Perhaps the company can consolidate two VMs into one SQL instance, reducing the number of Azure VMs by one. Perhaps some or all databases can be moved to Azure SQLDBs instead? </p>



<h3 class="wp-block-heading">2. <strong>Right-Size Your Servers</strong></h3>



<p class="wp-block-paragraph">Planning for future growth is good; however, it should be balanced with the cost of supporting your current workload. This is especially true when the SQL Server instances are in the cloud, where compute charges can add up quickly.</p>



<p class="wp-block-paragraph">Overprovisioning can lead to unnecessary expenses. Ensure your SQL Servers are properly sized for their current workloads. </p>



<ul class="wp-block-list">
<li>Monitor server performance and utilization</li>



<li>Identify bottlenecks and areas for performance optimization</li>



<li>Adjust server resources (CPU, memory, storage) accordingly</li>



<li>Plan for future growth</li>
</ul>



<p class="wp-block-paragraph"><strong>Scenario:</strong> The company can assess the current workload of the VMs. Are they overprovisioned? Can the resources be reduced without affecting performance? Perhaps they can go from 32 cores to 16 on one of the VMs?</p>



<h3 class="wp-block-heading" id="h-3-choose-the-right-licensing-model">3. <strong>Choose the Right Licensing Model</strong></h3>



<p class="wp-block-paragraph">SQL Server licensing can be expensive, so it&#8217;s important to get it right for your workloads and environment. Select the most cost-effective licensing option for your organization.</p>



<ul class="wp-block-list">
<li>Core-based licensing vs CAL-based for smaller workloads</li>



<li>Subscription-based models to help with predictable costs</li>



<li>Enterprise Agreement (EA) for large-scale deployments</li>



<li>Consider Software Assurance benefits</li>
</ul>



<p class="wp-block-paragraph">For more information about SQL licensing, check out Microsoft&#8217;s page on <a href="https://www.microsoft.com/en-us/sql-server/sql-server-2022-pricing">SQL Server 2022 pricing and licensing</a>. If you&#8217;re uncertain about your licensing options, consider consulting a licensing expert. They may be able to save you some money.</p>



<p class="wp-block-paragraph"><b>Scenario: </b>If the company is looking to upgrade its SQL environment, other licensing options may be available to reduce its licensing spend. </p>



<h3 class="wp-block-heading" id="h-4-implement-database-compression">4. <strong>Implement Database Compression</strong></h3>



<p class="wp-block-paragraph">Large databases can be costly. They can consume a lot of storage space. They can also frequently have performance issues. </p>



<p class="wp-block-paragraph"><a href="https://learn.microsoft.com/en-us/sql/relational-databases/data-compression/data-compression?view=sql-server-ver16">SQL Server compression</a> can help with both of these. It can lower your hardware costs by reducing storage costs, and improve performance by reducing overall disk I/O.</p>



<ul class="wp-block-list">
<li>Use built-in compression features </li>



<li>Consider SQL Server columnstore compression</li>
</ul>



<p class="wp-block-paragraph"><strong>Scenario:</strong> Depending on the type and amount of data being stored in the databases, compression could help reduce storage space and improve performance.</p>



<h3 class="wp-block-heading" id="h-5-monitor-and-optimize-performance">5. <strong>Monitor and Optimize Performance</strong></h3>



<p class="wp-block-paragraph">Poorly designed queries and inappropriate indexing can lead to more than just unhappy users. They can add direct costs to your SQL Servers estates. </p>



<p class="wp-block-paragraph">Before adding additional resources to solve your performance issues, look for performance tuning and optimization opportunities. By adding an index, rewriting a query, or adjusting the database schema, you may dramatically improve the response times.</p>



<p class="wp-block-paragraph">Regular performance monitoring helps identify areas for improvement.</p>



<ul class="wp-block-list">
<li>Use built-in monitoring tools (e.g., SQL Server Management Studio)</li>



<li>Implement third-party monitoring solutions</li>



<li>Analyze query performance, indexing, and resource utilization</li>



<li>Adjust configuration and indexing as needed</li>
</ul>



<p class="wp-block-paragraph"><strong>Scenario:</strong> The system administrator recently added resources to the Azure VM to alleviate performance problems. A performance analysis may identify opportunities to improve performance by tuning some queries, adding indexing, or changing the database schemas. If so, the company could dial back down the resources for the VMs and reduce Azure spending. A <a href="https://theserogroup.com/sql-health-check/">SQL Health Check</a> could also reveal that settings such as file growth, MAXDOP, or Cost Threshold for Parallelism aren&#8217;t set approximately.</p>



<h3 class="wp-block-heading" id="h-6-automate-routine-tasks">6. <strong>Automate Routine Tasks</strong></h3>



<p class="wp-block-paragraph">Regularly maintaining your database is important. Updating statistics, performing and testing backups, applying updates, and other maintenance can and should be scripted and automated when possible. This helps reduce administration time and reduces the likelihood of mistakes. </p>



<ul class="wp-block-list">
<li>Use built-in automation tools (e.g., SQL Server Agent)</li>



<li>Script routine tasks using PowerShell or T-SQL</li>



<li>Schedule tasks and monitor execution</li>
</ul>



<p class="wp-block-paragraph"><strong>Scenario:</strong> By reviewing the maintenance jobs, the company may find that statistics are not updated regularly. While looking at scheduled jobs, they should also confirm that backups that support their RTO&#8217;s and RPO&#8217;s are happening.</p>



<h3 class="wp-block-heading" id="h-7-consider-cloud-migration">7. <strong>Consider Cloud Migration</strong></h3>



<p class="wp-block-paragraph">This one is not necessarily a gimme. Not every workload runs better or less expensively in the cloud. But, in some situations, you can experience direct and/or indirect cost savings by moving your workloads to the cloud. </p>



<p class="wp-block-paragraph">Migrating to cloud-based SQL Server solutions offers scalability and cost savings.</p>



<ul class="wp-block-list">
<li>Assess cloud readiness and compatibility</li>



<li>Choose a cloud provider (e.g., Azure, AWS)</li>



<li>Consider managed database services (e.g., Azure SQL Database)</li>



<li>Plan for data migration and security</li>
</ul>



<p class="wp-block-paragraph">By implementing these strategies, organizations can significantly reduce costs, improve efficiency, and drive business growth.</p>



<p class="wp-block-paragraph"><b>Scenario: </b>To simplify its SQL estate, as well as potentially save costs, the company should consider its on-prem SQL Server instances. Can some of the databases be archived and decommissioned? Can they be moved to Azure? </p>



<h3 class="wp-block-heading" id="h-8-work-with-a-partner">8. Work with a partner</h3>



<p class="wp-block-paragraph">System administrators and developers are smart and resourceful. However, keeping a SQL Server estate healthy, secure, and reliable requires a specific skill set—one that Database Administrators uniquely develop. Additionally, every hour a system administrator spends maintaining or troubleshooting a SQL Server estate is an hour they have been pulled away from their primary duties, creating an opportunity cost.</p>



<ul class="wp-block-list">
<li>Identify a SQL Server partner who has a deep level of SQL Server expertise at a fraction of the cost of a full-time DBA</li>



<li>Leverage their DBA Team as a Service to help keep SQL Server healthy, reliable, and secure</li>



<li>View the partner as an extension of your team </li>
</ul>



<p class="wp-block-paragraph"><strong>Scenario:</strong> In the example, the company can eliminate the split focus of its system administrator, identify and implement cost reduction strategies, and leverage a team of dedicated professional DBAs to manage its SQL Server estate. </p>



<h2 class="wp-block-heading" id="h-want-to-learn-more">Want to learn more?</h2>



<p class="wp-block-paragraph">Want to learn more about how <a href="https://theserogroup.com/seroshield/">SEROShield</a> helps organizations keep their SQL Servers healthy, reliable, and secure? Let&#8217;s talk. <a href="https://theserogroup.com/contact-us/" target="_blank" rel="noreferrer noopener">Schedule a no-obligation discovery call</a>&nbsp;with us.</p>
<p>The post <a href="https://theserogroup.com/sql-server/8-ways-to-reduce-the-cost-of-a-sql-server-estate/">8 Ways to Reduce the Cost of a SQL Server Estate</a> appeared first on <a href="https://theserogroup.com">The SERO Group</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://theserogroup.com/sql-server/8-ways-to-reduce-the-cost-of-a-sql-server-estate/feed/</wfw:commentRss>
			<slash:comments>64</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">6735</post-id>	</item>
		<item>
		<title>Reducing Business Risks for a SQL Server Estate</title>
		<link>https://theserogroup.com/data-security/reducing-business-risks-for-a-sql-server-estate/</link>
		
		<dc:creator><![CDATA[Joe Webb]]></dc:creator>
		<pubDate>Wed, 04 Sep 2024 12:00:00 +0000</pubDate>
				<category><![CDATA[Data Security]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[Database Administration]]></category>
		<category><![CDATA[Database Development]]></category>
		<category><![CDATA[IT Manager]]></category>
		<category><![CDATA[Microsoft Azure]]></category>
		<category><![CDATA[Script Library]]></category>
		<category><![CDATA[Sero]]></category>
		<category><![CDATA[Sero Group]]></category>
		<category><![CDATA[Serogroup]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[SQL Assessment]]></category>
		<category><![CDATA[SQL Audit]]></category>
		<category><![CDATA[SQL Events]]></category>
		<category><![CDATA[SQL Security]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[SQL Server Consultant]]></category>
		<category><![CDATA[SQL Server Management]]></category>
		<category><![CDATA[The Sero Group]]></category>
		<guid isPermaLink="false">https://theserogroup.com/?p=6489</guid>

					<description><![CDATA[<p>Your SQL Servers are the backbone of your company&#8217;s data operations. They power critical applications and store valuable information. They enable financial decisions, undergird operational activities, and support your sales processes. But what happens if there&#8217;s a problem? What happens when data is lost or corrupted? Or if one of your key systems is down&#8230; <br /> <a class="read-more" href="https://theserogroup.com/data-security/reducing-business-risks-for-a-sql-server-estate/">Read more</a></p>
<p>The post <a href="https://theserogroup.com/data-security/reducing-business-risks-for-a-sql-server-estate/">Reducing Business Risks for a SQL Server Estate</a> appeared first on <a href="https://theserogroup.com">The SERO Group</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">Your SQL Servers are the backbone of your company&#8217;s data operations. They power critical applications and store valuable information. They enable financial decisions, undergird operational activities, and support your sales processes. But what happens if there&#8217;s a problem? What happens when data is lost or corrupted? Or if one of your key systems is down for an hour? A day? A week? These issues can create a significant business risk for a SQL Server estate, a risk that you must figure out how to mitigate.</p>



<p class="wp-block-paragraph">Let&#8217;s dive into some of the major risks you might face while managing your SQL Server estate. We&#8217;ll also explore some practical ways to mitigate those risks and keep your SQL Server estate running smoothly and securely.</p>



<h2 class="wp-block-heading" id="h-six-common-business-risks-in-a-sql-server-estate">Six Common Business Risks in a SQL Server Estate</h2>



<h3 class="wp-block-heading" id="h-risk-1-data-breaches">Risk 1: Data Breaches</h3>



<p class="wp-block-paragraph">Data breaches are an obvious and constant threat. Hardly a day goes by without a security incident or data breach making the news. A single successful attack can expose sensitive information, damage your company&#8217;s reputation, and lead to hefty fines or lawsuits.</p>



<p class="wp-block-paragraph">Securing your SQL Server estate is essential, and securing the perimeter is not enough. The best security is multi-layered. </p>



<p class="wp-block-paragraph">To fortify your SQL Server defenses:</p>



<ul class="wp-block-list">
<li>Implement strong access controls and use multi-factor authentication.</li>



<li>Regularly update and patch your SQL Server instances.</li>



<li>Encrypt sensitive data both at rest and in transit.</li>



<li>Conduct regular security audits to identify and address vulnerabilities.</li>



<li>Train your teams on security best practices and the importance of data protection.</li>
</ul>



<h3 class="wp-block-heading" id="h-risk-2-disaster-recovery">Risk 2: Disaster Recovery</h3>



<p class="wp-block-paragraph">Disasters happen. Sometimes large-scale events like a tornado, flood, or a disruption to your cloud provider&#8217;s region may affect your business. Sometimes disasters are more localized, like a hypervisor or operating system crash.</p>



<p class="wp-block-paragraph"> Regardless, without access to your data, operations can be significantly hampered or even completely offline. So, being prepared to quickly recover from such events is crucial for business continuity.</p>



<p class="wp-block-paragraph">To improve your disaster recovery readiness:</p>



<ul class="wp-block-list">
<li>Develop and regularly update a comprehensive disaster recovery plan.</li>



<li>Regularly test your disaster recovery procedures to identify and address any weaknesses.</li>



<li>Consider cloud-based disaster recovery solutions for added flexibility and reliability.</li>



<li>Ensure your team is well-trained on disaster recovery procedures and their individual roles.</li>



<li>Implement high availability solutions like clustering or Always On Availability Groups.</li>
</ul>



<h3 class="wp-block-heading" id="h-risk-3-data-loss-and-corruption">Risk 3: Data Loss and Corruption</h3>



<p class="wp-block-paragraph">A common misconception is that data loss or corruption isn&#8217;t really an issue anymore. It is. </p>



<p class="wp-block-paragraph">Database corruption can still happen. Users with higher levels of access can still accidentally delete needed data. And bad actors can still gain access to key systems and encrypt everything. And the results can be painful. </p>



<p class="wp-block-paragraph">To protect your valuable data:</p>



<ul class="wp-block-list">
<li>Implement a robust backup strategy with regular backups stored securely off-site.</li>



<li>Test your backups regularly to ensure they can be successfully restored.</li>



<li>Implement change tracking and auditing to quickly identify and rectify data issues.</li>



<li>Educate users about the importance of data integrity and proper data handling procedures.</li>



<li>Use log shipping or Always On Availability Groups for critical databases.</li>
</ul>



<h3 class="wp-block-heading" id="h-risk-4-compliance-and-regulatory-issues">Risk 4: Compliance and Regulatory Issues</h3>



<p class="wp-block-paragraph">Who has elevated permissions to your SQL Server estate? You&#8217;ll want to know and review that list regularly. When were users created and given access? When was the access removed? These are good questions to ask and answer, but that may not be enough.</p>



<p class="wp-block-paragraph">If your company operates in a regulated industry or geographical location, you may be subject to regulatory requirements such as <a href="https://gdpr.eu/" target="_blank" rel="noreferrer noopener">GDPR</a>, <a href="https://www.oag.ca.gov/privacy/ccpa" target="_blank" rel="noreferrer noopener">CCPA</a>, <a href="https://www.hhs.gov/hipaa/for-professionals/privacy/laws-regulations/index.html" target="_blank" rel="noreferrer noopener">HIPAA</a>, and others. Ensuring your SQL Server estate complies with relevant laws is crucial. Non-compliance can result in significant fines and legal headaches.</p>



<p class="wp-block-paragraph">To navigate the complex world of data regulations:</p>



<ul class="wp-block-list">
<li>Stay informed about regulations that apply to your industry and data types.</li>



<li>Implement data masking and row-level security to protect sensitive information.</li>



<li>Cleanse data that is copied to lower-level systems such as dev, test, and QA.</li>



<li>Regularly audit your compliance efforts and maintain detailed documentation.</li>



<li>Use SQL Server&#8217;s built-in compliance features, such as Transparent Data Encryption and SQL Audit.</li>



<li>Consider working with compliance experts to ensure you&#8217;re meeting all requirements.</li>
</ul>



<h3 class="wp-block-heading" id="h-risk-5-performance-issues">Risk 5: Performance Issues</h3>



<p class="wp-block-paragraph">Poorly performing SQL Servers are more than just an annoying inconvenience. They can frustrate users, drive away customers, and affect your company&#8217;s bottom line. As the amount of data in your SQL Server estate grows, maintaining optimal performance becomes increasingly challenging.</p>



<p class="wp-block-paragraph">To keep your SQL Servers running at top speed:</p>



<ul class="wp-block-list">
<li>Create a performance baseline.</li>



<li>Regularly monitor performance metrics to identify bottlenecks.</li>



<li>Optimize queries and indexing strategies.</li>



<li>Implement proper capacity planning and scaling.</li>



<li>Consider upgrading hardware or moving to cloud-based solutions when necessary.</li>
</ul>



<h3 class="wp-block-heading" id="h-risk-6-talent-shortage">Risk 6: Talent Shortage</h3>



<p class="wp-block-paragraph">SQL Server is a robust and reliable database platform. However, to achieve peak performance, reliability, and security, it must be regularly maintained. However, finding, recruiting, and retaining skilled SQL Server professionals can be a significant (and expensive) challenge.</p>



<p class="wp-block-paragraph">To address this talent risk internally:</p>



<ul class="wp-block-list">
<li>Invest in ongoing training and professional development for your existing team.</li>



<li>Create a positive work environment that encourages growth and job satisfaction.</li>



<li>Offer competitive compensation and benefits packages to attract and retain top talent.</li>



<li>Utilize managed services or cloud solutions to supplement your in-house expertise.</li>



<li>If you rely on an Accidental DBA, provide them with the resources needed to succeed.</li>
</ul>



<h2 class="wp-block-heading" id="h-managing-your-sql-server-estate">Managing Your SQL Server Estate</h2>



<p class="wp-block-paragraph">Managing a SQL Server estate is no small feat, but with the right strategies and precautions, you can significantly reduce your risks and keep your data operations running smoothly. Remember, it&#8217;s not about eliminating all risks – that&#8217;s nearly impossible. Instead, focus on identifying, understanding, and mitigating these risks to the best of your ability.</p>



<p class="wp-block-paragraph">Remember, you&#8217;re not alone in this journey. Don&#8217;t hesitate to leverage external expertise when needed, whether it&#8217;s for specialized tasks, security audits, or strategic planning. With the right approach and resources, you can turn these challenges into opportunities to showcase the true value of a well-managed SQL Server environment.</p>



<h2 class="wp-block-heading" id="h-want-to-work-with-the-sero-group">Want to work with The SERO Group?</h2>



<p class="wp-block-paragraph">Want to learn more about how The SERO Group helps organizations manage their SQL Server estates? <a href="https://theserogroup.com/contact-us/" target="_blank" rel="noreferrer noopener">Schedule a no-obligation discovery call</a>. </p>
<p>The post <a href="https://theserogroup.com/data-security/reducing-business-risks-for-a-sql-server-estate/">Reducing Business Risks for a SQL Server Estate</a> appeared first on <a href="https://theserogroup.com">The SERO Group</a>.</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">6489</post-id>	</item>
	</channel>
</rss>
