<?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/category/the-sero-group/feed/" rel="self" type="application/rss+xml" />
	<link>https://theserogroup.com/category/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/category/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>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>Who Is Responsible for SQL Server?</title>
		<link>https://theserogroup.com/the-sero-group/who-is-responsible-for-sql-server/</link>
		
		<dc:creator><![CDATA[Joe Webb]]></dc:creator>
		<pubDate>Wed, 24 Jan 2024 13:00:00 +0000</pubDate>
				<category><![CDATA[The Sero Group]]></category>
		<category><![CDATA[Database Administration]]></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 Consultant]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[SQL Server Consultant]]></category>
		<category><![CDATA[SQL Server Management]]></category>
		<guid isPermaLink="false">https://theserogroup.com/?p=5682</guid>

					<description><![CDATA[<p>Tell me what you think about this conversation. I must first clarify something about the conversation, though. It&#8217;s not an actual conversation I&#8217;ve had with a specific person or one prospective client. It&#8217;s not verbatim. Rather, it&#8217;s an amalgamation of many conversations I&#8217;ve had over the years. It starts when I ask who is responsible&#8230; <br /> <a class="read-more" href="https://theserogroup.com/the-sero-group/who-is-responsible-for-sql-server/">Read more</a></p>
<p>The post <a href="https://theserogroup.com/the-sero-group/who-is-responsible-for-sql-server/">Who Is Responsible for SQL Server?</a> appeared first on <a href="https://theserogroup.com">The SERO Group</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">Tell me what you think about this conversation. I must first clarify something about the conversation, though. It&#8217;s not an <em>actual</em> conversation I&#8217;ve had with a specific person or one prospective client. It&#8217;s not verbatim. Rather, it&#8217;s an amalgamation of many conversations I&#8217;ve had over the years. It starts when I ask who is responsible for SQL Server in their environment. </p>



<p class="wp-block-paragraph">By this point in the conversation, they&#8217;ve usually told me about a performance problem they&#8217;re struggling with. Or maybe an availability issue that&#8217;s been plaguing them. They&#8217;ve shared what they&#8217;ve done to try to remedy the situation. For example, maybe they&#8217;ve increased hardware resources, or shuffled some scheduled jobs around, trying to make things better. It hasn&#8217;t worked.</p>



<p class="wp-block-paragraph">Note: I&#8217;m definitely not judging their attempts. Not in the least. If someone asked me to diagnose and solve a Linux DNS issue or debug some C# code, well, let&#8217;s just say they&#8217;d never ask me again. And things would be a lot worse after my attempt. So, I applaud their effort to fix an issue that is outside their area of expertise. Necessity is the mother of invention, or at least it&#8217;s the mother of Googling for help. </p>



<h2 class="wp-block-heading" id="h-the-rest-of-the-conversation">The rest of the conversation</h2>



<p class="wp-block-paragraph">Anyway, as the conversation continues, it goes something like this: </p>



<p class="wp-block-paragraph">Me: &#8220;Ok, so who is responsible for SQL Server in your environment?&#8221;</p>



<p class="wp-block-paragraph">Them: &#8220;Well, we are.&#8221;</p>



<p class="wp-block-paragraph">Me: &#8220;Ok, good. Frequently we find that if a company doesn&#8217;t have a DBA on staff, either an experienced application developer or perhaps a systems administrator is the one tasked with taking care of the SQL Servers in their spare time. Do you have someone like that?&#8221;</p>



<p class="wp-block-paragraph">Them: &#8220;Well&#8230;&#8221;</p>



<p class="wp-block-paragraph">Me: (waiting)</p>



<p class="wp-block-paragraph">Them: &#8220;Ok. So, the infrastructure team believes that SQL Server is an application. It&#8217;s loaded on top of the O/S, on top of the hypervisor, the network, the storage, etc. So, they don&#8217;t want to own it.&#8221;</p>



<p class="wp-block-paragraph">Me: &#8220;Ok, I get that. SQL Server is not exactly infrastructure. So, is the App team responsible for it?&#8221;</p>



<p class="wp-block-paragraph">Them: &#8220;Well. The developers say that should it live with the infrastructure group. They say &#8216;It&#8217;s in the name &#8211; SQL <em><strong>Server</strong></em>. Servers are part of infrastructure.&#8217; So, no they don&#8217;t really want to be responsible for it either.&#8221; </p>



<p class="wp-block-paragraph">Me: &#8220;Ok, got it. So, who keeps it healthy? Who takes care of it when something goes wrong?&#8221;</p>



<p class="wp-block-paragraph">Them: &#8220;That&#8217;s why we&#8217;re talking with you.&#8221; </p>



<h2 class="wp-block-heading" id="h-where-should-sql-server-live">Where should SQL Server live?</h2>



<p class="wp-block-paragraph">For companies with a DBA team, the answer is easy. SQL Server lives with them. They own it. They are responsible for keeping it reliable. For keeping it secure. And for keeping it performing well. </p>



<p class="wp-block-paragraph">But what about for companies that do not have a team of DBAs? Who should be responsible for them? </p>



<p class="wp-block-paragraph">We&#8217;ve seen SQL live with infrastructure, where it&#8217;s treated as infrastructure. We&#8217;ve also seen it live with application developers or with the BI team. In some companies it&#8217;s the CIO who manages the SQL Server environment. </p>



<p class="wp-block-paragraph">And these were not small companies. These are companies with more than $100M in annual revenue, with hundreds or even thousands of employees. Yet they didn&#8217;t need a full time DBA. They had 10, or 20, or maybe 50 SQL Server instances. They don&#8217;t have enough DBA work to justify hiring a DBA, much less a couple of DBAs. Because two is one and one is none. </p>



<p class="wp-block-paragraph">And yes, that&#8217;s where we can help. </p>



<p class="wp-block-paragraph">I&#8217;m curious, though. If you do not have a DBA, who is responsible for SQL Servers in your company? Who&#8217;s telephone rings when it&#8217;s slow? Who&#8217;s making sure the backups are running?  </p>



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



<p class="wp-block-paragraph">Here are other posts that you may find helpful if you don&#8217;t have a DBA on staff. </p>



<ul class="wp-block-list">
<li><a href="https://theserogroup.com/sql-server/working-without-a-sql-server-dba-do-these-10-things-now/">Working Without A SQL Server DBA? Do These 10 Things Now</a></li>



<li><a href="https://theserogroup.com/the-sero-group/4-ways-to-better-manage-sql-server-without-a-dba/">4 Ways to Better Manage SQL Server Without a DBA</a></li>



<li><a href="https://theserogroup.com/dba/whos-caring-for-your-sql-servers/">Who&#8217;s Caring for Your SQL Servers?</a></li>



<li><a href="https://theserogroup.com/dba/10-unseen-things-successful-dbas-do/">10 Unseen Things Successful DBAs Do</a></li>



<li><a href="https://theserogroup.com/sql-server/why-is-it-important-to-monitor-sql-server/">Why is it important to monitor SQL Server?</a></li>



<li><a href="https://theserogroup.com/dba/do-i-still-need-a-sql-server-health-check/">Do I Still Need a SQL Server Health Check?</a></li>



<li><a href="https://theserogroup.com/tag/script-library/">The SERO Script Library</a></li>
</ul>



<p class="wp-block-paragraph">Or, if you&#8217;d like to learn a bit more about how we help companies with our a <a href="https://theserogroup.com/seroshield/">SEROShield &#8211; DBA as a Service</a>, feel free to <a href="https://theserogroup.com/#contact">reach out</a>. </p>
<p>The post <a href="https://theserogroup.com/the-sero-group/who-is-responsible-for-sql-server/">Who Is Responsible for SQL Server?</a> appeared first on <a href="https://theserogroup.com">The SERO Group</a>.</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">5682</post-id>	</item>
		<item>
		<title>Preview Our New SQL Server Daily Health Check in an Upcoming Focus Group</title>
		<link>https://theserogroup.com/the-sero-group/preview-our-new-sql-server-daily-health-check-in-an-upcoming-focus-group/</link>
		
		<dc:creator><![CDATA[Joe Webb]]></dc:creator>
		<pubDate>Wed, 10 Jan 2024 14:00:00 +0000</pubDate>
				<category><![CDATA[The Sero Group]]></category>
		<category><![CDATA[Database]]></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[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]]></category>
		<category><![CDATA[SQL Server Consultant]]></category>
		<category><![CDATA[SQL Server Management]]></category>
		<guid isPermaLink="false">https://theserogroup.com/?p=5641</guid>

					<description><![CDATA[<p>Our team has been hard at work building the new SQL Server Daily Health Check Email and Dashboard. It&#8217;s designed to proactively deliver the information needed to keep your SQL Server environment healthy, secure, reliable, and running smoothly. And, we&#8217;d like your feedback on it. How the new SQL Server Daily Health Check works Here&#8217;s&#8230; <br /> <a class="read-more" href="https://theserogroup.com/the-sero-group/preview-our-new-sql-server-daily-health-check-in-an-upcoming-focus-group/">Read more</a></p>
<p>The post <a href="https://theserogroup.com/the-sero-group/preview-our-new-sql-server-daily-health-check-in-an-upcoming-focus-group/">Preview Our New SQL Server Daily Health Check in an Upcoming Focus Group</a> appeared first on <a href="https://theserogroup.com">The SERO Group</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">Our team has been hard at work building <a href="https://theserogroup.com/dba/coming-soon-the-all-new-sql-server-daily-health-check-and-dashboard/">the new SQL Server Daily Health Check Email and Dashboard</a>. It&#8217;s designed to proactively deliver the information needed to keep your SQL Server environment healthy, secure, reliable, and running smoothly. </p>



<p class="wp-block-paragraph">And, we&#8217;d like your feedback on it.</p>



<h2 class="wp-block-heading" id="h-how-the-new-sql-server-daily-health-check-works">How the new SQL Server Daily Health Check works</h2>



<p class="wp-block-paragraph">Here&#8217;s a brief overview of how it works: </p>



<ol class="wp-block-list">
<li><strong>The Daily Email.</strong> Each morning, you and our DBA team receives a Daily Health Check (DHC) email. The email provides a summary of the overall health of each SQL Server being monitored in your environment. It reviews information such as: 
<ul class="wp-block-list">
<li>Windows Event and Application logs</li>



<li>SQL Server and SQL Server Agent logs</li>



<li>Low Disk space alerts</li>



<li>Failed logon attempts</li>



<li>Failed user-created jobs</li>
</ul>
</li>



<li><strong>The Dashboard.</strong> If you notice anything usual in the email, click the link. You&#8217;ll be taken to your SEROShield Dashboard where you can see additional information about the health, reliability, and security of your SQL Server. Information such as: 
<ul class="wp-block-list">
<li>Performance issues</li>



<li>Security vulnerabilities</li>



<li>Reliability concerns</li>



<li>Recoverability problems</li>



<li>And more</li>
</ul>
</li>



<li><strong>Dive Deeper. </strong>The SEROShield Dashboard not only shows the most recent Health Check information, but you take a deeper dive and review the past 30 days&#8217; worth of findings. This will help you spot trends and recognize anomalies. </li>
</ol>



<figure class="wp-block-image size-full"><a href="https://theserogroup.com/wp-content/uploads/2023/11/AllNewSEROShield_blog.png"><img decoding="async" width="1024" height="512" src="https://theserogroup.com/wp-content/uploads/2023/11/AllNewSEROShield_blog.png" alt="SEROShield SQL Server dashboard" class="wp-image-5611" srcset="https://theserogroup.com/wp-content/uploads/2023/11/AllNewSEROShield_blog.png 1024w, https://theserogroup.com/wp-content/uploads/2023/11/AllNewSEROShield_blog-300x150.png 300w, https://theserogroup.com/wp-content/uploads/2023/11/AllNewSEROShield_blog-768x384.png 768w" sizes="(max-width: 1024px) 100vw, 1024px" /></a></figure>



<h2 class="wp-block-heading" id="h-join-the-focus-group">Join the Focus Group</h2>



<p class="wp-block-paragraph">We want to build the best user-experience possible in our next version of our SQL Server Daily Health Check. And you can help. </p>



<p class="wp-block-paragraph"><a href="https://wkf.ms/47mWq9i">Sign for an upcoming Focus Group</a> and provide your insights and opinions. The next one is 11:00 CST on 30 January, 2024. </p>



<div class="wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex">
<div class="wp-block-button"><a class="wp-block-button__link wp-element-button" href="https://wkf.ms/47mWq9i" target="_blank" rel="noreferrer noopener">Register for a Focus Group</a></div>
</div>



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



<p class="wp-block-paragraph">In meantime, if you are interested in learning more about how our&nbsp;<a href="https://theserogroup.com/seroshield/">SEROShield DBA Team as a Service</a>&nbsp;helps to keep SQL Server healthy, reliable, secure, and performing well,&nbsp;<a href="https://theserogroup.com/#contact">contact us</a>.</p>
<p>The post <a href="https://theserogroup.com/the-sero-group/preview-our-new-sql-server-daily-health-check-in-an-upcoming-focus-group/">Preview Our New SQL Server Daily Health Check in an Upcoming Focus Group</a> appeared first on <a href="https://theserogroup.com">The SERO Group</a>.</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">5641</post-id>	</item>
		<item>
		<title>4 Ways to Better Manage SQL Server Without a DBA</title>
		<link>https://theserogroup.com/the-sero-group/4-ways-to-better-manage-sql-server-without-a-dba/</link>
		
		<dc:creator><![CDATA[Joe Webb]]></dc:creator>
		<pubDate>Tue, 27 Jun 2023 13:54:37 +0000</pubDate>
				<category><![CDATA[The Sero Group]]></category>
		<category><![CDATA[Database]]></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 Consultant]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[SQL Server Consultant]]></category>
		<category><![CDATA[SQL Server Management]]></category>
		<guid isPermaLink="false">https://theserogroup.com/?p=5295</guid>

					<description><![CDATA[<p>Microsoft SQL Server is popular. Statistics vary as to just how popular, but most agree that it is one of the most popular database platforms in the world. And for good reason. It&#8217;s feature rich, very reliable, highly scalable, and can be made extremely secure. All good things. According to a 2022 survey conducted by&#8230; <br /> <a class="read-more" href="https://theserogroup.com/the-sero-group/4-ways-to-better-manage-sql-server-without-a-dba/">Read more</a></p>
<p>The post <a href="https://theserogroup.com/the-sero-group/4-ways-to-better-manage-sql-server-without-a-dba/">4 Ways to Better Manage SQL Server Without a DBA</a> appeared first on <a href="https://theserogroup.com">The SERO Group</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">Microsoft SQL Server is popular. Statistics vary as to just how popular, but most agree that it is one of the most popular database platforms in the world. And for good reason. It&#8217;s feature rich, very reliable, highly scalable, and can be made extremely secure. All good things. </p>



<p class="wp-block-paragraph">According to <a href="https://enlyft.com/tech/products/microsoft-sql-server" target="_blank" rel="noreferrer noopener">a 2022 survey conducted by Enlyft</a>, of all the companies using Microsoft SQL Server, 39% are small businesses with less than 50 employees and 72% have revenue of less than $50M annually. </p>



<p class="wp-block-paragraph">For many of those companies, justifying a full-time Database Administrator is hard. </p>



<p class="wp-block-paragraph">It can be hard even for larger companies. Companies with more than $1B in annual sales or with tens of thousands of employees can have a hard time spending money on a full-time DBA. Why? If they have fewer than a couple of dozen SQL Servers, a full-time DBA is probably not warranted. It&#8217;ll be hard to keep a good DBA busy. And if you hire one DBA, you&#8217;ll probably want to hire a second, doubling your costs for salary, HR, benefits, etc. </p>



<p class="wp-block-paragraph">So, if you find yourself in this situation, working without a DBA, what can you do? </p>



<h2 class="wp-block-heading" id="h-managing-sql-server-without-a-dba">Managing SQL Server without a DBA</h2>



<p class="wp-block-paragraph">If you are a CIO who is responsible for managing SQL Server with a DBA in your organization, you have some options. Here are four. </p>



<ol class="wp-block-list">
<li>Use a SQL Server management tool</li>



<li>Train your IT staff on SQL Server administration</li>



<li>Use a cloud-based SQL Server hosting service</li>



<li>Partner with a SQL Server consulting company</li>
</ol>



<p class="wp-block-paragraph">Let&#8217;s look at each of these.</p>



<h3 class="wp-block-heading">1. <strong>Use a SQL Server management tool</strong></h3>



<p class="wp-block-paragraph">One of the first places many companies turn when attempting to working without a DBA is to buy tools. There are a lot of great tools out there for monitoring SQL Server. Some are specific to SQL Server, such as <a href="https://www.solarwinds.com/sql-sentry" target="_blank" rel="noreferrer noopener">Solarwinds&#8217; SQLSentry</a> and <a href="https://www.red-gate.com/products/sql-monitor/" target="_blank" rel="noreferrer noopener">Redgate&#8217;s SQL Monitor</a>. Others are part of broader networking monitoring tools, such as <a href="https://www.paessler.com/prtg/prtg-network-monitor" target="_blank" rel="noreferrer noopener">PRTG</a> and <a href="https://www.dynatrace.com/platform/infrastructure-monitoring/" target="_blank" rel="noreferrer noopener">DynaTrace</a>.  </p>



<p class="wp-block-paragraph">These tools can help you to monitor your SQL Server environment, troubleshoot problems, and highlight resource contention. But the onus is on you and your team to interpret the information and to do something about it. It&#8217;s like the gauges in a car. They can tell you when something isn&#8217;t right. But it&#8217;s up to you to act. As the saying goes &#8220;knowing but not acting is the same as not knowing.&#8221;</p>



<p class="wp-block-paragraph">If you decide to go this route, train your team on the use of the software. Make sure they know how to set it up, tune the alerts, and identify when something isn&#8217;t going as planned. Too often, great monitoring tools become shelf-ware because the team doesn&#8217;t know how to use it. They install it, it lights up like a Christmas tree, and they eventually uninstall it. </p>



<p class="wp-block-paragraph">If you opt for this approach, you&#8217;ll also want to have an escalation plan for when something goes wrong. No one wants to rely on a team&#8217;s Googling skills while the rest of the company is idled because the key SQL Server is out of commission. </p>



<h3 class="wp-block-heading">2. <strong>Train your IT staff on SQL Server administration</strong></h3>



<p class="wp-block-paragraph">Microsoft has spent a fortune making SQL Server a robust, enterprise-capable database platform. SQL Server is good. It&#8217;s scalable, it&#8217;s resilient, and it&#8217;s reliable. </p>



<p class="wp-block-paragraph">However, you still have to configure it appropriately for your workload. You still have to perform backups, schedule maintenance jobs, apply patches, and yes, troubleshoot performance and other issues. </p>



<p class="wp-block-paragraph">If you do not have a DBA, it is important to train your IT staff on the basics of SQL Server administration. <a href="https://www.pluralsight.com/" target="_blank" rel="noreferrer noopener">Pluralsight</a> has a lot of good training sessions for DBAs. In fact, we provide a Pluralsight subscription for each of our DBAs to help them keep their skills current. </p>



<p class="wp-block-paragraph">Your team may not need to know some of the more advanced topics like understanding <a href="https://theserogroup.com/sql-server/whats-the-difference-in-sql-server-fcis-and-ags/">the differences in Availability Groups (AGs) and Failover Cluster Instances (FCIs)</a> &#8211; unless of course you need high availability. Still, a sound understanding of how SQL Server works, and how you can keep it healthy, reliable, and secure is good. </p>



<h3 class="wp-block-heading">3. <strong>Use a cloud-based SQL Server hosting service</strong></h3>



<p class="wp-block-paragraph">Another approach that some companies are looking into is getting out of the SQL Server management game altogether. </p>



<p class="wp-block-paragraph">Microsoft Azure SQL Databases and Azure SQL Managed Instances can help to offload some of the traditional DBA tasks to Microsoft Azure. AWS has similar offerings. </p>



<p class="wp-block-paragraph">Of course, the convenience comes with a price tab and some limitations. For example, with a SQL Server VM, you have access to everything &#8211; the operating system, the SQL Server configuration, the drive configurations, etc. With a Managed Instance, Microsoft takes care of the operating system for you. Which is good, but it also means you don&#8217;t have access to make changes there if needed. The same is true with Azure SQL Databases. You only have access to the database, not the SQL Server instance and certainly not the operating system. </p>



<p class="wp-block-paragraph">Is it a good option for you? It may be. </p>



<p class="wp-block-paragraph">Here&#8217;s what we&#8217;re seeing. Some companies are leveraging Azure SQL Database for new development. But, we&#8217;re not seeing a lot of migration of existing database applications to Azure SQL Databases. It&#8217;s easier to design and build for that environment from the beginning than it is to retrofit an application. </p>



<p class="wp-block-paragraph">Azure Managed Instances can also be good under certain circumstances, but the use-case is pretty narrow at this point. </p>



<h3 class="wp-block-heading"><strong>4. Partner with a SQL Server consult</strong>ing company</h3>



<p class="wp-block-paragraph">A lot of companies recognize that important aspects of their business depends on SQL Server being available, performing well, and of course, being secure. So, they partner with companies like The SERO Group to provide DBA services. </p>



<p class="wp-block-paragraph">Experienced DBAs work with your teams for items such as:</p>



<ul class="wp-block-list">
<li>Ensure the current configuration supports your RTOs and RPOs</li>



<li>Develop and test disaster recovery scenarios</li>



<li>Identify departures from best practices and build remediation plans</li>



<li>Proactively monitor and respond to alerts </li>



<li>Prevent potential issues from becoming disruptive events</li>



<li>Assist with consolidation efforts to reduce the SQL footprint before a true-up</li>
</ul>



<p class="wp-block-paragraph">Companies like The SERO Group provide the SQL expertise, the mature DBA processes, and the tools required to manage SQL Server environments &#8211; without the compensation package and the Human Resources requirements for finding, onboarding, training, retaining, and eventually replacing a DBA. </p>



<h2 class="wp-block-heading">Using a combination of these options</h2>



<p class="wp-block-paragraph">Of course, this is not a comprehensive list of options. There may be other options for your organization to better manage SQL Server without a DBA. </p>



<p class="wp-block-paragraph">We find that many companies opt for a combination of these approaches. </p>



<p class="wp-block-paragraph">Maybe they want to move some of their workload to AWS or Azure, reduce their overall SQL Server footprint with consolidation, and work with a knowledgeable DBA team that can help accomplish their objectives. </p>



<p class="wp-block-paragraph">Or maybe they&#8217;ve purchased some tools, have trained their team on the basics of SQL Server administration, and would like to have access to an experienced DBA team for some of the more complex activities and troubleshooting. </p>



<p class="wp-block-paragraph">We&#8217;ve worked with companies in these and other capacities. </p>



<h2 class="wp-block-heading"><strong>Additional resources for managing SQL Server</strong></h2>



<p class="wp-block-paragraph">Here are some other resources that may help.</p>



<ul class="wp-block-list">
<li><a href="https://theserogroup.com/dba/whos-caring-for-your-sql-servers/">Who’s Caring for Your SQL Servers?</a></li>



<li><a href="https://theserogroup.com/dba/sql-server-maintenance-10-things-to-keep-your-sql-server-running-well/">SQL Server Maintenance: 10 Things to Keep Your SQL Server Running Well</a></li>



<li><a href="https://theserogroup.com/dba/do-i-still-need-a-sql-server-health-check/">Do I Still Need a SQL Server Health Check?</a></li>



<li><a href="https://theserogroup.com/dba/10-unseen-things-successful-dbas-do/">10 Unseen Things Successful DBAs Do</a></li>
</ul>



<h2 class="wp-block-heading">Want to work with The SERO Group?</h2>



<p class="wp-block-paragraph">At The SERO Group, we work with companies who just don&#8217;t need a full-time DBA on staff. But they need reliable and secure SQL Servers. We do that. </p>



<p class="wp-block-paragraph">If that&#8217;s something you&#8217;d like to learn more about, <a href="https://theserogroup.com/#contact" target="_blank" rel="noreferrer noopener">let&#8217;s have a conversation</a> to see if we&#8217;re a good fit for what you&#8217;re looking for. </p>
<p>The post <a href="https://theserogroup.com/the-sero-group/4-ways-to-better-manage-sql-server-without-a-dba/">4 Ways to Better Manage SQL Server Without a DBA</a> appeared first on <a href="https://theserogroup.com">The SERO Group</a>.</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">5295</post-id>	</item>
		<item>
		<title>The Goal: Removing SQL Server Constraints</title>
		<link>https://theserogroup.com/the-sero-group/the-goal-removing-sql-server-constraints/</link>
		
		<dc:creator><![CDATA[Joe Webb]]></dc:creator>
		<pubDate>Wed, 29 Mar 2023 14:18:23 +0000</pubDate>
				<category><![CDATA[The Sero Group]]></category>
		<category><![CDATA[Database]]></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 Consultant]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[SQL Server Consultant]]></category>
		<category><![CDATA[SQL Server Management]]></category>
		<guid isPermaLink="false">https://theserogroup.com/?p=5043</guid>

					<description><![CDATA[<p>&#8220;It takes forever to login to the clinical application. I have patients waiting. And I have to sit there waiting for the application to let me in. It&#8217;s not good.&#8221; Or, &#8220;I click the report and wait, and wait, and wait. Finally, I give up and hit Refresh. Nothing happens. Can&#8217;t you fix it?&#8221; Sound&#8230; <br /> <a class="read-more" href="https://theserogroup.com/the-sero-group/the-goal-removing-sql-server-constraints/">Read more</a></p>
<p>The post <a href="https://theserogroup.com/the-sero-group/the-goal-removing-sql-server-constraints/">The Goal: Removing SQL Server Constraints</a> appeared first on <a href="https://theserogroup.com">The SERO Group</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">&#8220;It takes forever to login to the clinical application. I have patients waiting. And I have to sit there waiting for the application to let me in. It&#8217;s not good.&#8221; Or, &#8220;I click the report and wait, and wait, and wait. Finally, I give up and hit Refresh. Nothing happens. Can&#8217;t you fix it?&#8221; </p>



<p class="wp-block-paragraph">Sound familiar? Many of our new clients come to us because they are experiencing slowness in a key application. </p>



<p class="wp-block-paragraph">We can help. It&#8217;s a core tenet of our <a href="https://theserogroup.com/seroshield">SEROShield DBA Team as a Service</a>. We assist them in getting the most out of their SQL Server investment by helping them to create a well-configured, secure, and reliable SQL Server environment that perform well. </p>



<p class="wp-block-paragraph">But, there&#8217;s more to it than that.</p>



<h2 class="wp-block-heading">Removing SQL Server constraints</h2>



<p class="wp-block-paragraph">Recently, I re-read <a href="https://www.amazon.com/Goal-Process-Ongoing-Improvement/dp/0884271951/ref=sr_1_1?crid=35YXA9M3QIT8D&amp;keywords=the+goal+by+eliyahu+goldratt&amp;qid=1680095557&amp;s=books&amp;sprefix=goldratt%2Cstripbooks%2C87&amp;sr=1-1" target="_blank" rel="noreferrer noopener">The Goal: A Process of Ongoing Improvement by Eliyahu Goldratt</a>. I first read the book 30 years ago as a requirement for one of my MBA classes. I forget which class, but I remember the book.</p>



<p class="wp-block-paragraph">The book, written as a business fable, explores <a href="https://www.tocinstitute.org/theory-of-constraints.html" target="_blank" rel="noreferrer noopener">Goldratt&#8217;s Theory of Constraints</a>. It&#8217;s set in a manufacturing facility, so a first glance it&#8217;s not evident how this could apply to our small team of DBAs delivering SQL Server services to clients. We don&#8217;t have raw materials coming, work stations refining the materials, and finished goods leaving on big trucks.</p>



<p class="wp-block-paragraph">But, as I reflected on it, every business, every process, is constrained by something. The SERO Group has constraints. Our clients have constraints. So, the questions become &#8211; how to identify the constraints, what needs to be done about them, and then how to make the changes.</p>



<p class="wp-block-paragraph">At first glance, it seemed that we remove constraints from our clients&#8217; SQL Server environment, making each server faster, more reliable, and more secure. </p>



<p class="wp-block-paragraph">Yes. Certainly, we help with that. I&#8217;m confident that our clients&#8217; SQL Servers are better because of our services. In fact, <a href="https://theserogroup.com/#testimonials">they tell us so</a>.</p>



<h2 class="wp-block-heading">Removing Team Constraints</h2>



<p class="wp-block-paragraph">But I think there&#8217;s more to it than that. For our clients, we help remove a constraint at the team, or Human Resources, level.</p>



<h3 class="wp-block-heading">Some clients cannot justify a DBA</h3>



<p class="wp-block-paragraph">Many of our clients cannot justify the expense of a full-time Database Administrator. But they know that an ignored SQL Server is a not a good SQL Server. So, some companies ask a developer or system administrator also take care of the SQL Server in their spare time. </p>



<p class="wp-block-paragraph">When it needs patching, they patch. When it gets slow, they Google. When it stops working, they get very nervous, and often lose data.</p>



<p class="wp-block-paragraph">Their business is hampered, or constrained, by not having a SQL Server DBA on staff. </p>



<h3 class="wp-block-heading">Some clients could justify a DBA</h3>



<p class="wp-block-paragraph">Other clients do have the budget for a SQL Server DBA. They can afford to hire a mid-level DBA to join their team. But they know that having a single DBA is also having a single point of failure. It&#8217;s the &#8220;two is one and one is none&#8221; concept. What happens with that DBA goes on vacation? Or wins the lottery? Or decides that the grass is greener at another company? </p>



<p class="wp-block-paragraph">And what happens when that DBA reaches the end of their knowledge? Who can they turn to for another set of eyes on the problem, or to get advice from?</p>



<p class="wp-block-paragraph">We help those clients by removing Human Resources related constraints. We remove the constraint of having to budget for, recruit, interview, hire, onboard, train, manage, and eventually replace a team of experienced, senior DBAs. </p>



<p class="wp-block-paragraph">We eliminate all that. And that&#8217;s no small constraint.</p>



<h2 class="wp-block-heading">Want to learn more about how we serve our clients? </h2>



<p class="wp-block-paragraph">So, while we make our clients&#8217; SQL Server environment better. We do more than that. We allow our clients to focus on their core mission. We support their backend SQL infrastructure so they don&#8217;t have to. And we offload the HR burdens of attracting, training, and keeping a team of DBAs on staff.</p>



<p class="wp-block-paragraph">Want to learn more? It’s easy and there is no obligation. </p>



<p class="wp-block-paragraph"><a href="https://theserogroup.com/#contact" target="_blank" rel="noreferrer noopener">Contact us</a> to get started.</p>
<p>The post <a href="https://theserogroup.com/the-sero-group/the-goal-removing-sql-server-constraints/">The Goal: Removing SQL Server Constraints</a> appeared first on <a href="https://theserogroup.com">The SERO Group</a>.</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">5043</post-id>	</item>
		<item>
		<title>Looking “Up and Out” and “Down and In”</title>
		<link>https://theserogroup.com/the-sero-group/looking-up-and-out-and-down-and-in/</link>
		
		<dc:creator><![CDATA[Joe Webb]]></dc:creator>
		<pubDate>Thu, 02 Mar 2023 15:53:59 +0000</pubDate>
				<category><![CDATA[The Sero Group]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[Database Administration]]></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 Consulting]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[SQL Server Consultant]]></category>
		<category><![CDATA[SQL Server Management]]></category>
		<guid isPermaLink="false">https://theserogroup.com/?p=4989</guid>

					<description><![CDATA[<p>Halfway through my morning walk, I look up and see this amazing view. No filter needed. It was naturally stunning. I just stood there a moment soaking in the majesty of the view. The wisp of the clouds, the vibrancy of the colors, the reflection of the water. It was beautiful. And I almost missed&#8230; <br /> <a class="read-more" href="https://theserogroup.com/the-sero-group/looking-up-and-out-and-down-and-in/">Read more</a></p>
<p>The post <a href="https://theserogroup.com/the-sero-group/looking-up-and-out-and-down-and-in/">Looking “Up and Out” and “Down and In”</a> appeared first on <a href="https://theserogroup.com">The SERO Group</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">Halfway through my morning walk, I look up and see this amazing view. No filter needed. It was naturally stunning. I just stood there a moment soaking in the majesty of the view. The wisp of the clouds, the vibrancy of the colors, the reflection of the water. It was beautiful. And I almost missed it. I had been looking down, watching my step, and happened to look up at the right time. It was a great reminder of the importance of looking “up and out” as well as “down and in.” </p>



<p class="wp-block-paragraph">This is true with walking. It&#8217;s true in other areas of life, too, including life as a database professional.</p>



<p class="wp-block-paragraph">Good DBA teams look &#8220;up and out&#8221; and they look &#8220;down and in.&#8221; They don&#8217;t want to miss something. </p>



<p class="wp-block-paragraph">But what does that mean? </p>



<h2 class="wp-block-heading">Looking &#8220;down and in&#8221;</h2>



<p class="wp-block-paragraph">Looking “down and in” means you have to take care of the SQL Servers in your charge. Sure, SQL Servers are resilient. They are designed to be behind-the-scenes workhorses for applications and services. Microsoft has done a great job building in a high degree of robustness into the product. </p>



<p class="wp-block-paragraph">But that doesn&#8217;t mean that you can or should ignore your SQL Servers. Far from it. </p>



<p class="wp-block-paragraph">Because SQL Server is good at running even under less than ideal circumstances, some potential issues may go unnoticed until it&#8217;s a big problem. </p>



<p class="wp-block-paragraph">For example, if some pages in a key table, perhaps even a system table, become corrupted, it may not be immediately apparent. The corruption may go undetected for days, weeks, or even months. The longer the corruption lies dormant, the more difficult the recovery process. </p>



<p class="wp-block-paragraph">That&#8217;s just one example. </p>



<p class="wp-block-paragraph">Proactively monitoring and alerting, automating and confirming maintenance jobs, regularly reviewing the SQL Server and agent logs, checking the Windows event logs, verifying and performing test restores on backups, routinely applying patches to test and then production systems, etc, these are the &#8220;down and in&#8221; activities that help ensure each SQL Servers is healthy, secure, reliable, and performs well.</p>



<p class="wp-block-paragraph">These are the basic blocking and tackling of the DBA role. And they are critical.</p>



<h2 class="wp-block-heading">Looking &#8220;up and out&#8221;</h2>



<p class="wp-block-paragraph">But looking &#8220;down and in&#8221; isn&#8217;t enough. Good database professionals look beyond the day to day operations of their immediate environment. They are watching for trends in the SQL estate. Is it growing rapidly and maybe even unnecessarily? Could the SQL footprint be reduced by consolidating a few servers, thus reducing the licensing costs? Or maybe, given the growth of specific application databases, we can predict that next year&#8217;s budget should include additional storage, more CPUs, or additional memory.</p>



<p class="wp-block-paragraph">DBAs also continuously look for trends or changes in the business and in the industry. Can their environment support the organization&#8217;s Recovery Point Objectives (RPOs) and Recovery Time Objectives (RTOs)? Should we consider using Azure or AWS as part of our Disaster Recovery planning? What does the business need? What does our industry require? Are we there?</p>



<p class="wp-block-paragraph">Good data professionals assess the role that SQL Server has in the business, crafts a vision for their SQL estate, and develops a plan to close any gaps.</p>



<h2 class="wp-block-heading">Sounds good, but I don&#8217;t have the time</h2>



<p class="wp-block-paragraph">“Up and out” and “down and in.” Both are important. </p>



<p class="wp-block-paragraph">But when? It&#8217;s one thing to know what to do. It&#8217;s another to have the time and know-how to actually do it.</p>



<p class="wp-block-paragraph">That&#8217;s what our <a href="https://theserogroup.com/seroshield/">SEROShield DBA Team as a Service</a> is designed help with. We look &#8220;down and in&#8221; to keep our clients&#8217; SQL Servers healthy, secure, reliable, and performing well. We also look &#8220;up and out,&#8221; sharing with our clients trends we see in their environment as well as what we&#8217;re seeing in the broader SQL Server space.</p>



<p class="wp-block-paragraph">Want to learn more? <a href="https://theserogroup.com/meet-with-joe-webb">Schedule a call or send us an email</a>. It’s easy and there is no obligation</p>
<p>The post <a href="https://theserogroup.com/the-sero-group/looking-up-and-out-and-down-and-in/">Looking “Up and Out” and “Down and In”</a> appeared first on <a href="https://theserogroup.com">The SERO Group</a>.</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">4989</post-id>	</item>
		<item>
		<title>Don&#8217;t Sweat the Small Stuff, Except with SQL Server</title>
		<link>https://theserogroup.com/the-sero-group/dont-sweat-the-small-stuff-except-with-sql-server/</link>
		
		<dc:creator><![CDATA[Joe Webb]]></dc:creator>
		<pubDate>Wed, 17 Nov 2021 18:44:08 +0000</pubDate>
				<category><![CDATA[The Sero Group]]></category>
		<category><![CDATA[Database Administration]]></category>
		<category><![CDATA[Database Development]]></category>
		<category><![CDATA[IT Manager]]></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 Consultant]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[SQL Server Consultant]]></category>
		<category><![CDATA[SQL Server Management]]></category>
		<guid isPermaLink="false">https://theserogroup.com/?p=4097</guid>

					<description><![CDATA[<p>Don&#8217;t sweat the small stuff, they say. That&#8217;s good advice. Much of the time. But with SQL Server, the small stuff is worth sweating. In fact, the small stuff can be big. Letting the small stuff go In life, the small stuff can weigh you down. Worrying about things that don&#8217;t really matter can strip&#8230; <br /> <a class="read-more" href="https://theserogroup.com/the-sero-group/dont-sweat-the-small-stuff-except-with-sql-server/">Read more</a></p>
<p>The post <a href="https://theserogroup.com/the-sero-group/dont-sweat-the-small-stuff-except-with-sql-server/">Don&#8217;t Sweat the Small Stuff, Except with SQL Server</a> appeared first on <a href="https://theserogroup.com">The SERO Group</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">Don&#8217;t sweat the small stuff, they say. That&#8217;s good advice. Much of the time. But with SQL Server, the small stuff is worth sweating. In fact, the small stuff can be big.</p>



<h2 class="wp-block-heading">Letting the small stuff go</h2>



<p class="wp-block-paragraph">In life, the small stuff can weigh you down. Worrying about things that don&#8217;t really matter can strip you of the joy that is otherwise present.</p>



<p class="wp-block-paragraph">Here&#8217;s an example from my life.</p>



<p class="wp-block-paragraph">Many years ago, my then three-year-old donned her rainboots and headed out the door just as the last drop fell from the sky. She was in search of puddles. What three-year-old doesn&#8217;t like to stomp around in puddles, splashing water as high as they can, and giggling all the while? </p>



<p class="wp-block-paragraph">I walked outside to see her excitement. And to probably take a picture for Instragram or FaceBook. </p>



<p class="wp-block-paragraph">When I got to her, I looked down and noticed that she had put her rainboots on the wrong feet. The left boot was on her right foot and vice versa. </p>



<p class="wp-block-paragraph">That&#8217;s wrong. </p>



<p class="wp-block-paragraph">Being a good dad, I wanted to help her learn something important. Right boot, right foot. Left boot, left foot. </p>



<p class="wp-block-paragraph">So, I called to her. &#8220;Lydia, your boots are on the wrong feet. Come here and we&#8217;ll fix that for you.&#8221; </p>



<p class="wp-block-paragraph">She looked at me, glanced down to her feet, and then back to me and said &#8220;Daddy, daddy, daddy. It&#8217;s ok.&#8221; </p>



<p class="wp-block-paragraph">And she was right. </p>



<p class="wp-block-paragraph">It was ok.</p>



<p class="wp-block-paragraph">It was small stuff that didn&#8217;t really matter in the moment.</p>



<p class="wp-block-paragraph">In some things, like when a three-year-old is having fun splashing in puddles, the small details don&#8217;t matter. They get in the way.  </p>



<h2 class="wp-block-heading">The &#8220;small stuff&#8221; in SQL Server</h2>



<p class="wp-block-paragraph">We want our SQL Servers to work. And we want them to be fast enough to not be a drag for our users. And that&#8217;s usually good enough. After all, there are other things to tend to. Right? </p>



<p class="wp-block-paragraph">We know that we should verify the backups. We know that we should do test restores of key databases. And those patches? They really should be applied. We know that. </p>



<p class="wp-block-paragraph">We also know that we should regularly check our SQL Servers&#8217; health. (Daily is ideal, but who has time for that!) And Disaster Recovery? Well, so far so good. Maybe next year?</p>



<p class="wp-block-paragraph">And so it goes.</p>



<p class="wp-block-paragraph">We can tell ourselves that those are the &#8220;small things,&#8221; that it&#8217;s not important in the moment because, well, the SQL Server is fine. At least in the moment. </p>



<h3 class="wp-block-heading">But the small stuff isn&#8217;t small, it&#8217;s important</h3>



<p class="wp-block-paragraph">When SQL Servers aren&#8217;t an issue, they often get ignored. </p>



<p class="wp-block-paragraph">Patching. Performance tuning. Index maintenance. Monitoring. Upgrades. Planning and testing Disaster Recovery scenarios. Root cause analysis when something odd happens. </p>



<p class="wp-block-paragraph">These are not &#8220;small things.&#8221; </p>



<p class="wp-block-paragraph">These are the things that keep SQL Server, and your business, going. </p>



<p class="wp-block-paragraph">If SQL Server is unhappy, lots of people are unhappy. Users are unhappy. Execs are unhappy. Patients, nurses, project managers, supervisors, customers, investors, and all the other stakeholders are unhappy. </p>



<p class="wp-block-paragraph">With SQL Server, the &#8220;small things&#8221; are not really small things. They are the things that keep your SQL Servers up and running. They are the things that keep your users happy. </p>



<p class="wp-block-paragraph">Sweat the small stuff. </p>



<h2 class="wp-block-heading">Where to start with the SQL Server &#8220;small stuff&#8221;</h2>



<p class="wp-block-paragraph">Not sure where to start? Here are a few links that will help you get started.</p>



<ul class="wp-block-list"><li><a href="https://theserogroup.com/sql-server/working-without-a-sql-server-dba-do-these-10-things-now/">Working Without A SQL Server DBA? Do These 10 Things Now</a></li><li><a href="https://theserogroup.com/sql-server/is-my-sql-server-configured-properly/">Is My SQL Server Configured Properly?</a></li><li><a href="https://theserogroup.com/data-security/where-to-start-with-disaster-recovery-in-sql-server/">Where to Start with Disaster Recovery in SQL Server</a></li><li><a href="https://theserogroup.com/sql-server/what-sql-server-version-am-i-running/">What SQL Server Version Am I Running?</a></li><li><a href="https://theserogroup.com/sql-server/is-there-an-update-for-my-sql-server/">Is There an Update for My SQL Server?</a></li><li><a href="https://theserogroup.com/sql-server/should-i-upgrade-sql-servers-that-are-out-of-support/">Should I Upgrade SQL Servers that Are Out of Support?</a></li></ul>



<p class="wp-block-paragraph">Check out our <a href="https://theserogroup.com/tag/script-library/">Script Library</a>, too.</p>



<h2 class="wp-block-heading">Want to work with The SERO Group?</h2>



<p class="wp-block-paragraph">This is what we do. We take care of SQL Servers so you, and your team, can focus on the big, important things. The things that only you can do. </p>



<p class="wp-block-paragraph">Want to learn more about how SERO Group helps organizations take the guesswork out of managing their SQL Servers? It’s easy and there is no obligation.&nbsp;</p>



<p class="wp-block-paragraph"><a href="https://calendly.com/joe_webb" target="_blank" rel="noreferrer noopener">Schedule a call</a> with us to get started.</p>
<p>The post <a href="https://theserogroup.com/the-sero-group/dont-sweat-the-small-stuff-except-with-sql-server/">Don&#8217;t Sweat the Small Stuff, Except with SQL Server</a> appeared first on <a href="https://theserogroup.com">The SERO Group</a>.</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">4097</post-id>	</item>
	</channel>
</rss>
