<?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>SQL Conference Archives - The SERO Group</title>
	<atom:link href="https://theserogroup.com/tag/sql-conference/feed/" rel="self" type="application/rss+xml" />
	<link>https://theserogroup.com/tag/sql-conference/</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>SQL Conference Archives - The SERO Group</title>
	<link>https://theserogroup.com/tag/sql-conference/</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>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>SQL Server Disaster Recovery: Four Essential Security Measures</title>
		<link>https://theserogroup.com/sql-server/sql-server-disaster-recovery-four-essential-security-measures/</link>
		
		<dc:creator><![CDATA[Joe Webb]]></dc:creator>
		<pubDate>Wed, 06 Nov 2024 13:00:00 +0000</pubDate>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[Database Administration]]></category>
		<category><![CDATA[IT Manager]]></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 Security]]></category>
		<category><![CDATA[SQL Server Management]]></category>
		<guid isPermaLink="false">https://theserogroup.com/?p=6837</guid>

					<description><![CDATA[<p>Since Microsoft SQL Server databases are critical for many organizations, protecting SQL Server from disasters such as security breaches and data loss isn&#8217;t optional—it&#8217;s essential. This is especially true for sectors like healthcare, banking, and FinTech. I&#8217;ve suffered a great many catastrophes in my life. Most of them never happened. -Mark Twain Mark Twain&#8217;s quip&#8230; <br /> <a class="read-more" href="https://theserogroup.com/sql-server/sql-server-disaster-recovery-four-essential-security-measures/">Read more</a></p>
<p>The post <a href="https://theserogroup.com/sql-server/sql-server-disaster-recovery-four-essential-security-measures/">SQL Server Disaster Recovery: Four Essential Security Measures</a> appeared first on <a href="https://theserogroup.com">The SERO Group</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">Since Microsoft SQL Server databases are critical for many organizations, protecting SQL Server from disasters such as security breaches and data loss isn&#8217;t optional—it&#8217;s essential. This is especially true for sectors like healthcare, banking, and FinTech.</p>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow">
<p class="wp-block-paragraph">I&#8217;ve suffered a great many catastrophes in my life. Most of them never happened. -Mark Twain</p>
</blockquote>



<p class="wp-block-paragraph">Mark Twain&#8217;s quip may have been an admonition against excessive worrying, but it also speaks to the benefits of preparedness. When you&#8217;re prepared, you&#8217;re in the best possible position if catastrophe does strike. You&#8217;ll also lower your stress levels on all of those days when there isn&#8217;t a disaster—a win-win situation.</p>



<p class="wp-block-paragraph">So, what do we need to do to prepare and protect our SQL Server from disaster?  </p>



<h2 class="wp-block-heading" id="h-what-are-disaster-recovery-and-security-maintenance">What are disaster recovery and security maintenance?</h2>



<p class="wp-block-paragraph">Disaster recovery and security maintenance include regular tasks that help to protect your SQL Server from data loss and unauthorized access. These activities can and should include backing up your databases, testing your backups, monitoring for anomalies, and conducting regular security audits.</p>



<h4 class="wp-block-heading" id="h-1-regular-backups-and-recovery-testing">1. Regular backups and recovery testing</h4>



<p class="wp-block-paragraph">Backups are table stakes disaster recovery. They ensure your organization can recover data in the event of a disaster. Maybe it&#8217;s from a hardware failure. Perhaps it&#8217;s from a cyberattack. Unfortunately, user error is the cause of many data disasters. This is where backups that meet your Recovery Point Objectives (RPOs) and Recovery Time Objectives (RTOs) come into play.</p>



<p class="wp-block-paragraph">But backing up data isn’t enough—you need to document and regularly test your recovery process to confirm that backups work as expected. Without this testing, even the best backup strategies can fall short when you need them most.</p>



<p class="wp-block-paragraph">An untested backup is only the hope of recovery. Unfortunately, hope is not a strategy.</p>



<h4 class="wp-block-heading" id="h-2-security-audits-and-vulnerability-scans">2. Security audits and vulnerability scans</h4>



<p class="wp-block-paragraph">Cyberattacks are a growing threat, so regular security audits are an essential tool to prevent unauthorized access and data breaches.</p>



<p class="wp-block-paragraph">Security audits identify weaknesses in your SQL Server environment, allowing the vulnerabilities to be remediated before they are exploited. </p>



<p class="wp-block-paragraph">Conducting vulnerability assessments, such as the <a href="https://www.cisecurity.org/benchmark/microsoft_sql_server">CIS Benchmark Assessment for SQL Server,</a> and updating your security policies can help strengthen your security posture and protect sensitive data. If you&#8217;re not familiar with the CIS Benchmarks, we can work with you to assess your environment and identify any security gaps in your SQL estate.</p>



<h4 class="wp-block-heading" id="h-3-monitoring-and-auditing-for-anomalies">3. Monitoring and auditing for anomalies</h4>



<p class="wp-block-paragraph">Who has access to your SQL Server? Who has elevated permissions? When were they granted those permissions? And by whom? You&#8217;re going to want to know the answer to these questions.</p>



<p class="wp-block-paragraph">So, keeping a close eye on your SQL Server environment is essential. Monitoring and auditing tools allow you to track unusual behavior, such as spikes in access attempts or unexpected changes in database structure. SQL Server has a built-in feature called <a href="https://learn.microsoft.com/en-us/sql/relational-databases/security/auditing/sql-server-audit-database-engine?view=sql-server-ver16" target="_blank" rel="noreferrer noopener">SQL Audit</a> that can help. </p>



<p class="wp-block-paragraph">Catching these red flags early can help you address potential security breaches before they become full-blown incidents. </p>



<h4 class="wp-block-heading" id="h-4-data-encryption-and-access-controls">4. Data encryption and access controls</h4>



<p class="wp-block-paragraph">If you have sensitive data such as Personally Identifiable Information, Personal Health Information, or financial information, you should consider encrypting your data and backups. </p>



<p class="wp-block-paragraph">Data encryption prevents unauthorized users from reading sensitive information, even if they gain access to it. Check out <a href="https://learn.microsoft.com/en-us/azure/azure-sql/database/transparent-data-encryption-tde-overview?view=azuresql&amp;tabs=azure-portal" target="_blank" rel="noreferrer noopener">SQL Server Transparent Data Encryption</a> to learn more.</p>



<h2 class="wp-block-heading" id="h-in-summary">In summary</h2>



<p class="wp-block-paragraph">Disaster recovery and security are essential practices for Microsoft SQL Server. For sectors like healthcare and banking, where data security and recoverability are non-negotiable, investing in these measures is a critical safeguard.</p>



<h3 class="wp-block-heading" id="h-download-a-sql-server-security-self-assessment">Download a SQL Server Security Self-Assessment</h3>



<p class="wp-block-paragraph">Securing your SQL Server is important, but knowing where to start that process can be the biggest challenge. So, we created our <a href="https://theserogroup.com/download-self-assessment/">free SQL Server Security Self-Assessment</a> to help you begin the process of identifying potential gaps in your security posture.</p>



<h3 class="wp-block-heading" id="h-consider-a-sql-health-check-or-cis-benchmark-assessment">Consider a SQL Health Check or CIS Benchmark Assessment</h3>



<p class="wp-block-paragraph">If you&#8217;d like to know more about how The SERO Group can help assess your SQL Server estate with a <a href="https://theserogroup.com/sql-health-check/">SQL Health Check</a> or a CIS Benchmark Assessment, <a href="https://theserogroup.com/contact-us/" target="_blank" rel="noreferrer noopener">schedule a no-obligation discovery call</a> with us.</p>



<h3 class="wp-block-heading" id="h-looking-for-more-information">Looking for more information? </h3>



<p class="wp-block-paragraph">Here are a few links that will help.</p>



<ul class="wp-block-list">
<li><a href="https://theserogroup.com/sql-server-resources/sql-server-security-best-practices/">SQL Server Security Best Practices</a></li>



<li><a href="https://theserogroup.com/sql-server-resources/protecting-sql-server-from-ransomware/">Protecting Your SQL Server from Ransomware</a> </li>



<li><a href="https://theserogroup.com/sql-server/securing-your-sql-servers-what-should-you-audit/">Securing Your SQL Servers, What Should You Audit?</a></li>



<li><a href="https://learn.microsoft.com/en-us/sql/relational-databases/security/sql-server-security-best-practices?view=sql-server-ver16">SQL Server security best practices &#8211; Microsoft</a> </li>
</ul>
<p>The post <a href="https://theserogroup.com/sql-server/sql-server-disaster-recovery-four-essential-security-measures/">SQL Server Disaster Recovery: Four Essential Security Measures</a> appeared first on <a href="https://theserogroup.com">The SERO Group</a>.</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">6837</post-id>	</item>
		<item>
		<title>&#8220;We Want a Better SQL Environment, Just Not Yet.&#8221;</title>
		<link>https://theserogroup.com/dba/we-want-a-better-sql-environment-just-not-yet/</link>
		
		<dc:creator><![CDATA[Joe Webb]]></dc:creator>
		<pubDate>Wed, 12 Jun 2024 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[Script Library]]></category>
		<category><![CDATA[Sero]]></category>
		<category><![CDATA[Sero Group]]></category>
		<category><![CDATA[Serogroup]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[SQL Conference]]></category>
		<category><![CDATA[SQL Consultant]]></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[SQL Training]]></category>
		<category><![CDATA[The Sero Group]]></category>
		<guid isPermaLink="false">https://theserogroup.com/?p=6014</guid>

					<description><![CDATA[<p>No one wants a slow, unreliable SQL Server that leaks data like a sieve. No, they want a fast, reliable, and secure database environment. However, they may not want it right now. Creating a better SQL environment can wait until later, right? It might seem that way, but the risks will only grow while you&#8230; <br /> <a class="read-more" href="https://theserogroup.com/dba/we-want-a-better-sql-environment-just-not-yet/">Read more</a></p>
<p>The post <a href="https://theserogroup.com/dba/we-want-a-better-sql-environment-just-not-yet/">&#8220;We Want a Better SQL Environment, Just Not Yet.&#8221;</a> appeared first on <a href="https://theserogroup.com">The SERO Group</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">No one wants a slow, unreliable SQL Server that leaks data like a sieve. No, they want a fast, reliable, and secure database environment. However, they may not want it right now. Creating a better SQL environment can wait until later, right?</p>



<p class="wp-block-paragraph">It might seem that way, but the risks will only grow while you wait.  </p>



<p class="wp-block-paragraph">So, why do so many businesses delay making essential improvements to their SQL Servers?</p>



<h2 class="wp-block-heading" id="h-roadblocks-to-creating-a-better-sql-environment-and-how-to-navigate-them">Roadblocks to creating a better SQL environment (and how to navigate them)</h2>



<p class="wp-block-paragraph">Budget is frequently an issue. However, there are likely other factors compounding that barrier. Let&#8217;s look at some common reasons companies choose to delay making changes that would help to create a more stable and secure SQL Server environment.</p>



<ol class="wp-block-list">
<li>&#8220;That&#8217;s part of a future project.&#8221;</li>



<li>&#8220;We don&#8217;t know where to start.&#8221;</li>



<li>&#8220;We don&#8217;t know what we don&#8217;t know.&#8221;</li>



<li>&#8220;We just can&#8217;t.&#8221;</li>



<li>&#8220;We&#8217;re not sure who owns those.&#8221;</li>
</ol>



<h3 class="wp-block-heading" id="h-that-s-part-of-a-future-project">&#8220;That&#8217;s part of a future project.&#8221;</h3>



<p class="wp-block-paragraph">Sometimes companies will postpone tackling an issue with their SQL Server environment because it gets lumped into a much larger project. </p>



<p class="wp-block-paragraph">For example, a company may recognize the need to regularly test their SQL Server backups. It&#8217;s important, and they know that. After all, an untested SQL Server backup file and process is only a hope that they can restore. (See <a href="https://theserogroup.com/the-sero-group/how-often-should-i-test-my-sql-server-backups/">How Often Should I Test My SQL Server Backups?</a> for some background here.)</p>



<p class="wp-block-paragraph">Creating a process to regularly test SQL Server backups may still be deferred because &#8220;that will be part of the Disaster Recovery initiative.&#8221; However, if that DR initiative isn&#8217;t budgeted and doesn&#8217;t have a start date, that means delaying improvements indefinitely. </p>



<h4 class="wp-block-heading" id="h-so-what-can-you-do">So, what can you do? </h4>



<p class="wp-block-paragraph">Start small. Take baby steps that lead you in the right direction. Often those baby steps will contribute to the larger project anyway.</p>



<p class="wp-block-paragraph">In our backup example, check the status of your backup jobs every day. Schedule a job or another process to verify the backup files. Create reminders to periodically restore a key database to another server and run an integrity check on it.</p>



<p class="wp-block-paragraph">Is this a perfect solution? No. But it&#8217;s far better than ignoring the gap until the larger project is funded.</p>



<h3 class="wp-block-heading" id="h-we-don-t-know-where-to-start">&#8220;We don&#8217;t know where to start.&#8221;</h3>



<p class="wp-block-paragraph">Sometimes, the hardest part is knowing where to start. Even worse, not knowing where to start can make getting started seemingly insurmountable. </p>



<p class="wp-block-paragraph">For example, let&#8217;s say a company has 15 SQL Server instances and they&#8217;d like to get that down to 8 or 10 through a consolidation project. But before they begin, they have questions. </p>



<ul class="wp-block-list">
<li>Which application databases can be moved to another SQL Server? </li>



<li>Which ones will play nicely together, and which will compete for limited resources? </li>



<li>Are there security considerations that require some applications to remain separate? </li>



<li>Will we have to add resources to the target instances?</li>



<li>And what haven&#8217;t we thought about that we should? </li>
</ul>



<p class="wp-block-paragraph">Those unknowns can seem overwhelming, especially if you don&#8217;t know how to go about finding the answers.</p>



<h4 class="wp-block-heading" id="h-so-what-can-you-do-0">So, what can you do? </h4>



<p class="wp-block-paragraph">Start small, build momentum, and keep your eye on the end-goal while making incremental progress. </p>



<p class="wp-block-paragraph">In our SQL Server Consolidation Project example, can you build a high-level project plan with only the most basic steps? Then you can drill down into the details, step by step.</p>



<p class="wp-block-paragraph">For example, the first step is to get a list of all of the SQL Servers that may be candidates for the consolidation project. Then, determine what applications use these SQL Servers. Then, identify the applications&#8217; requirements, and so on. </p>



<p class="wp-block-paragraph">We know projects like this can become dauntingly complex if you&#8217;re not used to doing them. As with most anything, breaking things down into smaller, more manageable steps will help. </p>



<h3 class="wp-block-heading" id="h-we-don-t-know-what-we-don-t-know">&#8220;We don&#8217;t know what we don&#8217;t know.&#8221;</h3>



<p class="wp-block-paragraph">This one is common and can take many forms. As an example, let&#8217;s say IT wants to decommission a SQL Server, but they&#8217;re unsure whether it&#8217;s being used. It&#8217;s got a dozen databases on it, but some are from older applications that may not be used anymore. Maybe the guy who created the database isn&#8217;t even with the company anymore.</p>



<p class="wp-block-paragraph">Another example: IT would like to do a side-by-side upgrade of a SQL Server. They know there are a lot of data pipelines that rely on that SQL Server. However, do they know how many pipelines? Who owns them? Will they have to be redeployed? Are there any other aspects they&#8217;ve overlooked?</p>



<p class="wp-block-paragraph">What should be a relatively simple request can become a larger issue. It can seem safer not to upset the apple cart when there are so many unknowns at play.</p>



<h4 class="wp-block-heading" id="h-so-what-can-you-do-1">So, what can you do? </h4>



<p class="wp-block-paragraph">Having a long list of open questions with no clear path to find the answers can feel paralyzing. To find your way forward, focus on your goal and your reasons for wanting it. In the upgrade example, your goal is to upgrade your SQL Server. Why? Using an older, unsupported SQL Server version could cause serious issues; an upgrade would improve security, compliance, and supportability, which means you&#8217;re less likely to encounter problems.</p>



<p class="wp-block-paragraph">Once you&#8217;re clear on your motivation, determine how you can begin to answer the first unknown. Then the next one. Then the one after that. Incremental progress will help you grow in confidence about your ability to improve the environment in addition to answering those unknowns. </p>



<h3 class="wp-block-heading" id="h-we-just-can-t">&#8220;We just can&#8217;t.&#8221;</h3>



<p class="wp-block-paragraph">Sometimes limitations are self-imposed. Other times, limitations are implicitly imposed by stakeholders, even if they don&#8217;t have the authority to make the call outright.</p>



<p class="wp-block-paragraph">This can happen with patching. As an example, vocal and influential stakeholders may insist that a SQL Server cannot go down for maintenance, period. IT may accept that limitation rather than fight it. As a result, things may progress until neither the SQL Server nor the Operating System have been patched in over two years. Not good!</p>



<h4 class="wp-block-heading" id="h-so-what-can-you-do-2">So, what can you do? </h4>



<p class="wp-block-paragraph">This one can become overly politicized or personalized. Look for and emphasize common ground. </p>



<p class="wp-block-paragraph">In the patching example, the common ground may be that everyone wants the SQL Server to be available and secure. From there, you can communicate how patching will help achieve that common goal. Planned downtime is always better than unplanned downtime, and reminding stakeholders of that can help put things in perspective. </p>



<p class="wp-block-paragraph">Sometimes, IT has a reputation for implementing technology for technology&#8217;s sake, regardless of what&#8217;s in the best interest of the business or its stakeholders. Keep that in mind. Present your points so that the other party can see how they&#8217;ll benefit. </p>



<h3 class="wp-block-heading" id="h-we-re-not-sure-who-owns-those">&#8220;We&#8217;re not sure who owns those.&#8221;</h3>



<p class="wp-block-paragraph">Sometimes there&#8217;s no clear owner of your SQL Servers. No one wants to make decisions about them, even if it helps to create better SQL environment. This can happen after an acquisition, during a re-org, or when responsibilities are not clearly spelled out.</p>



<p class="wp-block-paragraph">For example, IT may become aware of some new SQL Servers. However, the team isn&#8217;t sure if those instances fall within their purview or the responsibility of another team or department. Spoiler alert: if something happens to one of the SQL Servers or its databases, IT almost always ends up having to fix it. </p>



<h4 class="wp-block-heading" id="h-so-what-can-you-do-3">So, what can you do? </h4>



<p class="wp-block-paragraph">Uncertainty in areas of responsibility can lead to big problems. Get clear on who is responsible for SQL Servers (and any other assets) as soon as possible. Otherwise, those SQL Servers will become increasingly vulnerable to breaches or data loss.</p>



<h2 class="wp-block-heading" id="h-moving-forward-to-create-a-better-sql-server-environment">Moving forward to create a better SQL Server environment</h2>



<p class="wp-block-paragraph">I&#8217;m sure this list of roadblocks isn&#8217;t comprehensive. There are likely other reasons companies don&#8217;t improve their SQL environment. Many of them may even be good and valid reasons.</p>



<p class="wp-block-paragraph">However, in cases where creating a better SQL environment would be in everyone&#8217;s interest, don&#8217;t let the perfect be the enemy of the good. Look for ways to make incremental progress, however small, toward a more reliable and more secure SQL environment that performs.</p>



<p class="wp-block-paragraph">If you&#8217;re not sure where to start, we can help. Helping clients overcome barriers to create better SQL environments is what we do for a living. <a href="https://theserogroup.com/#contact" target="_blank" rel="noreferrer noopener">Schedule a call</a>&nbsp;to see if working with our team of DBAs makes sense for you.</p>
<p>The post <a href="https://theserogroup.com/dba/we-want-a-better-sql-environment-just-not-yet/">&#8220;We Want a Better SQL Environment, Just Not Yet.&#8221;</a> appeared first on <a href="https://theserogroup.com">The SERO Group</a>.</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">6014</post-id>	</item>
		<item>
		<title>SQL Server Settings: Memory Configuration</title>
		<link>https://theserogroup.com/sql-server/sql-server-settings-memory-configuration/</link>
		
		<dc:creator><![CDATA[Eric Cobb]]></dc:creator>
		<pubDate>Wed, 29 May 2024 12:00:00 +0000</pubDate>
				<category><![CDATA[SQL Server]]></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 Audit]]></category>
		<category><![CDATA[SQL Conference]]></category>
		<category><![CDATA[SQL Events]]></category>
		<category><![CDATA[SQL Server Management]]></category>
		<guid isPermaLink="false">https://theserogroup.com/?p=5890</guid>

					<description><![CDATA[<p>SQL Server is designed to efficiently manage memory on its own. It requests memory when it&#8217;s needed and releases memory back to the system when it&#8217;s not. However, the default settings may not be ideal for your situation. An experienced database administrator will usually fine-tune these settings to optimize performance and server stability. Minimum server&#8230; <br /> <a class="read-more" href="https://theserogroup.com/sql-server/sql-server-settings-memory-configuration/">Read more</a></p>
<p>The post <a href="https://theserogroup.com/sql-server/sql-server-settings-memory-configuration/">SQL Server Settings: Memory Configuration</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 is designed to efficiently manage memory on its own. It requests memory when it&#8217;s needed and releases memory back to the system when it&#8217;s not. However, the default settings may not be ideal for your situation. An experienced database administrator will usually fine-tune these settings to optimize performance and server stability.</p>



<h2 class="wp-block-heading" id="h-minimum-server-memory">Minimum server memory</h2>



<p class="wp-block-paragraph">The minimum server memory setting in SQL Server determines the smallest amount of RAM that SQL Server will grab. SQL Server will always have at least this much memory available to use, even when the system is under heavy load. The default setting for minimum server memory is usually very low, and SQL Server dynamically adjusts its memory usage based on its workload.</p>



<h2 class="wp-block-heading" id="h-maximum-server-memory">Maximum server memory</h2>



<p class="wp-block-paragraph">The maximum server memory setting in SQL Server limits how much of your computer&#8217;s memory SQL Server can access. By default, SQL Server grabs as much memory as possible, which can lead to problems. If SQL Server takes up all the available RAM, it slows down other programs running on the same server (such as SSIS, SSRS, or SSAS), making everything feel sluggish. </p>



<h2 class="wp-block-heading" id="h-configuring-minimum-server-memory">Configuring minimum server memory</h2>



<p class="wp-block-paragraph">Configuring minimum server memory is usually easy because, in most cases, it&#8217;s best to leave it set to the default. Sometimes people will set the minimum and maximum server memory settings to the same value to &#8220;lock in&#8221; the memory. I&#8217;ve seen this in virtualized environments as an attempt to prevent the hypervisor from &#8220;ballooning&#8221; and taking away the resources that are supposed to be allocated to SQL Server. The risk with this type of configuration is that during a restart, SQL Server will not come online until it has claimed all of the RAM listed in the minimum server memory setting.</p>



<p class="wp-block-paragraph">You can configure your server&#8217;s minimum server memory setting in SQL Server Management Studio. Find the server properties section, then look for the minimum server memory option.</p>



<p class="wp-block-paragraph">You can also make this change by running the following script:</p>



<pre class="wp-block-code has-medium-font-size"><code>sp_configure 'min server memory', &lt;desired memory amount (mb)&gt;;
GO</code></pre>



<h2 class="wp-block-heading" id="h-configuring-maximum-server-memory">Configuring maximum server memory</h2>



<p class="wp-block-paragraph">The default maximum server memory<strong> </strong>setting can sometimes cause performance issues. By limiting the RAM SQL Server uses, you can ensure there&#8217;s enough memory for the operating system and other applications to run smoothly.</p>



<p class="wp-block-paragraph">Honing in on the exact number can be tricky, as it depends greatly on the load your SQL Server is under, as well as any other applications that may be running on it. However, configuring the maximum server memory appropriately ensures SQL Server has enough memory to perform efficiently without starving the operating system or other applications of the resources they need. This balance helps maintain system stability and performance.</p>



<p class="wp-block-paragraph">For example, if you have SSAS installed on the SQL Server, by default it will claim 20% of the RAM on the server, leaving only 80% available for SQL. I&#8217;ve seen scenarios where SQL Server crashed with an &#8220;insufficient system memory&#8221; error every time it tried to go above 80% RAM usage because SSAS refused to release its 20%.</p>



<p class="wp-block-paragraph">To configure maximum server memory, start by following the same steps as you did above. You can configure your server&#8217;s minimum server memory setting in SQL Server Management Studio. Find the server properties section, then look for the maximum server memory option.</p>



<p class="wp-block-paragraph">You can also make this change by running the following script:</p>



<pre class="wp-block-code has-medium-font-size"><code>sp_configure 'max server memory', &lt;desired memory amount (mb)&gt;;
GO</code></pre>



<h2 class="wp-block-heading" id="h-final-thoughts-and-next-steps">Final thoughts and next steps</h2>



<p class="wp-block-paragraph">Although SQL Server will manage its memory dynamically right out of the box, its default settings may not suit every scenario. Fine-tuning minimum and maximum memory settings means efficient server performance without depriving the operating system and other applications of resources. Careful memory configuration can help you achieve an optimized and balanced server environment.</p>



<h3 class="wp-block-heading" id="h-further-reading">Further reading</h3>



<ul class="wp-block-list">
<li><a href="https://www.brentozar.com/archive/2018/11/how-much-memory-is-normal-for-sql-servers/">How Much Memory is “Normal” for SQL Servers? &#8211; Brent Ozar</a></li>



<li><a href="https://learn.microsoft.com/en-us/sql/relational-databases/memory-management-architecture-guide?view=sql-server-ver16">Memory management architecture guide &#8211; Microsoft Learn</a></li>
</ul>



<h3 class="wp-block-heading" id="h-previously-in-this-series">Previously in this series</h3>



<ul class="wp-block-list">
<li><a href="https://theserogroup.com/sql-server/sql-server-settings-maxdop/">SQL Server Settings: MAXDOP</a></li>



<li><a href="https://theserogroup.com/sql-server/sql-server-settings-optimize-for-ad-hoc-workloads/">SQL Server Settings: Optimize For Ad-hoc Workloads</a></li>
</ul>



<h3 class="wp-block-heading" id="h-work-with-us">Work with us</h3>



<p class="wp-block-paragraph">Want help optimizing your SQL Servers? <a href="https://theserogroup.com/#testimonials">Schedule a free call with us</a> to learn more and get started!</p>
<p>The post <a href="https://theserogroup.com/sql-server/sql-server-settings-memory-configuration/">SQL Server Settings: Memory Configuration</a> appeared first on <a href="https://theserogroup.com">The SERO Group</a>.</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">5890</post-id>	</item>
		<item>
		<title>Should I Use VM Snapshots to Backup SQL Server? A Webinar</title>
		<link>https://theserogroup.com/events/should-i-use-vm-snapshots-to-backup-sql-server/</link>
		
		<dc:creator><![CDATA[Joe Webb]]></dc:creator>
		<pubDate>Wed, 07 Feb 2024 13:00:00 +0000</pubDate>
				<category><![CDATA[Events]]></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 Audit]]></category>
		<category><![CDATA[SQL Conference]]></category>
		<category><![CDATA[SQL Consultant]]></category>
		<category><![CDATA[SQL Events]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[SQL Server Consultant]]></category>
		<category><![CDATA[SQL Server Management]]></category>
		<category><![CDATA[SQL Training]]></category>
		<category><![CDATA[The Sero Group]]></category>
		<guid isPermaLink="false">https://theserogroup.com/?p=5719</guid>

					<description><![CDATA[<p>&#8220;Should I Use VM Snapshots to Backup SQL Server?&#8221; Like so many SQL Server related questions, the answer is &#8220;It depends.&#8221; However, most often the ultimate answer will be no. And, in this upcoming webinar we&#8217;ll share 8 questions you should ask before using VM snapshots as your approach to backing up SQL Server. RTO&#8230; <br /> <a class="read-more" href="https://theserogroup.com/events/should-i-use-vm-snapshots-to-backup-sql-server/">Read more</a></p>
<p>The post <a href="https://theserogroup.com/events/should-i-use-vm-snapshots-to-backup-sql-server/">Should I Use VM Snapshots to Backup SQL Server? A Webinar</a> appeared first on <a href="https://theserogroup.com">The SERO Group</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">&#8220;Should I Use VM Snapshots to Backup SQL Server?&#8221; Like so many SQL Server related questions, the answer is &#8220;It depends.&#8221; However, most often the ultimate answer will be no. And, in this upcoming webinar we&#8217;ll share 8 questions you should ask before using VM snapshots as your approach to backing up SQL Server. </p>



<h2 class="wp-block-heading">RTO and RPO considerations webinar</h2>



<p class="wp-block-paragraph">Many companies take virtual machine snapshots. They snapshot their web servers and their file servers. They snapshot before software patching, before server upgrades, and before other configuration changes. </p>



<p class="wp-block-paragraph">And with good reason. Snapshotting can be a great way to ensure you can recover the VM if something goes wrong. </p>



<p class="wp-block-paragraph">What about SQL Server? Should you use VM snapshots to backup SQL Server? Are there RTO and RPO considerations of using snapshots instead of other approaches to backups?</p>



<p class="wp-block-paragraph">In an <a href="https://www.eventbrite.com/e/virtual-machine-backups-rto-and-rpo-considerations-for-your-sql-server-tickets-820412605187" target="_blank" rel="noreferrer noopener">upcoming webinar</a>, we’ll discuss using VM snapshots as part of your backup strategy. We’ll pose eight important questions you should ask before adopting the snapshot approach.</p>



<h3 class="wp-block-heading" id="h-here-s-what-we-ll-cover">Here’s what we&#8217;ll cover:</h3>



<ul class="wp-block-list">
<li>Why backup?</li>



<li>RPOs and RTOs</li>



<li>8 questions to ask</li>



<li>Best practices</li>



<li>Frequently Asked Questions</li>
</ul>



<h3 class="wp-block-heading" id="h-who-should-attend">Who should attend:</h3>



<p class="wp-block-paragraph">This webinar will provide a discussion for those responsible for setting backup and recovery policies. It will benefit those who work with key stakeholders to understand the organization&#8217;s Recovery Point Objectives, and Recovery Time Objectives.</p>



<h2 class="wp-block-heading">Want to attend?</h2>



<p class="wp-block-paragraph">The webinar is Wednesday, February 28 at&nbsp;11:00 AM – 12:30 PM CDT. That&#8217;s 18:00 UTC. </p>



<p class="wp-block-paragraph">To register, visit the <a href="https://www.eventbrite.com/e/virtual-machine-backups-rto-and-rpo-considerations-for-your-sql-server-tickets-820412605187" target="_blank" rel="noreferrer noopener">Eventbrite page</a>, or complete the embedded version below. </p>


<div id="eventbrite-widget-1" class="wp-block-jetpack-eventbrite wp-block-jetpack-eventbrite--embed"><a href="https://www.eventbrite.com/e/virtual-machine-backups-rto-and-rpo-considerations-for-your-sql-server-tickets-820412605187" rel="noopener noreferrer" target="_blank" class="eventbrite__direct-link" >Register on Eventbrite</a></div>


<h2 class="wp-block-heading" id="h-have-some-specific-questions">Have some specific questions? </h2>



<p class="wp-block-paragraph">Backups are good. But it’s the ability to restore that is important. How confident are you that you can restore a critical database? Are you sure that your backup strategy meets your RTO&#8217;s and RPO&#8217;s? </p>



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



<ul class="wp-block-list">
<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/hadr-options-for-sql-server/">High Availability and Disaster Recovery in SQL Server</a></li>



<li><a href="https://theserogroup.com/sql-server/sql-server-recovery-models/">What is a SQL Server Recovery Model?</a></li>



<li><a href="https://theserogroup.com/sql-server/script-how-long-until-my-sql-server-backup-restore-completes/">Script: How Long Until My SQL Server Backup/Restore Completes?</a></li>



<li><a href="https://theserogroup.com/azure/how-to-test-sql-server-backups-using-dbatools/">How to Test SQL Server Backups Using dbatools</a></li>



<li><a href="https://theserogroup.com/the-sero-group/how-often-should-i-test-my-sql-server-backups/">How Often Should I Test My SQL Server Backups?</a></li>
</ul>



<p class="wp-block-paragraph">We help a lot of companies configure their SQL Server environment so that when a disaster strikes, they’ll be prepared. Want to learn more? <a href="https://theserogroup.com/#contact">Schedule a call</a> and let&#8217;s talk.</p>
<p>The post <a href="https://theserogroup.com/events/should-i-use-vm-snapshots-to-backup-sql-server/">Should I Use VM Snapshots to Backup SQL Server? A Webinar</a> appeared first on <a href="https://theserogroup.com">The SERO Group</a>.</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">5719</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>Webinar: Virtual Machine Backups &#8211; RTO and RPO Considerations for you SQL Server</title>
		<link>https://theserogroup.com/events/webinar-virtual-machine-backups-rto-and-rpo-considerations-for-you-sql-server/</link>
		
		<dc:creator><![CDATA[Joe Webb]]></dc:creator>
		<pubDate>Wed, 15 Mar 2023 21:27:27 +0000</pubDate>
				<category><![CDATA[Events]]></category>
		<category><![CDATA[Database Administration]]></category>
		<category><![CDATA[Database Development]]></category>
		<category><![CDATA[IT Manager]]></category>
		<category><![CDATA[Public Speaking]]></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 Conference]]></category>
		<category><![CDATA[SQL Consultant]]></category>
		<category><![CDATA[SQL Events]]></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=5021</guid>

					<description><![CDATA[<p>Some companies take virtual machine snapshots of their web servers, their file servers, and their Citrix servers. They regularly snapshot before software patching, before server upgrades, and before other configuration changes. Snapshotting a good way to ensure they can recover the VM if something goes wrong. So, that begs the question: should you use VM&#8230; <br /> <a class="read-more" href="https://theserogroup.com/events/webinar-virtual-machine-backups-rto-and-rpo-considerations-for-you-sql-server/">Read more</a></p>
<p>The post <a href="https://theserogroup.com/events/webinar-virtual-machine-backups-rto-and-rpo-considerations-for-you-sql-server/">Webinar: Virtual Machine Backups &#8211; RTO and RPO Considerations for you 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">Some companies take virtual machine snapshots of their web servers, their file servers, and their Citrix servers. They regularly snapshot before software patching, before server upgrades, and before other configuration changes. Snapshotting a good way to ensure they can recover the VM if something goes wrong. So, that begs the question: should you use VM snapshots to backup a SQL Server? What are the RTO and RPO considerations of using snapshots instead of other approaches to backups?</p>



<h2 class="wp-block-heading">RTO and RPO considerations webinar</h2>



<p class="wp-block-paragraph">In an upcoming webinar and in-person session for the <a href="https://engage.isaca.org/middletennessee/home" target="_blank" rel="noreferrer noopener">Middle Tennessee Chapter</a> of <a href="https://www.isaca.org/" target="_blank" rel="noreferrer noopener">ISACA</a>, we’ll discuss discuss using VM snapshots as part of your backup strategy. We&#8217;ll pose eight important questions you should ask before adopting the snapshot approach. </p>



<p class="wp-block-paragraph">Here&#8217;s the agenda: </p>



<div class="wp-block-group is-vertical is-layout-flex wp-container-core-group-is-layout-4fc3f8e1 wp-block-group-is-layout-flex">
<ul class="wp-block-list">
<li>Why backup?</li>



<li>RPOs and RTOs</li>



<li>8 questions to ask</li>



<li>Best practices</li>



<li>Frequently Asked Questions</li>
</ul>
</div>



<h2 class="wp-block-heading">How to attend?</h2>



<p class="wp-block-paragraph">The webinar is Tuesday, April 11, 2023, 11:00 AM – 12:30 PM CDT</p>



<p class="wp-block-paragraph">Interesting in joining us for the webinar? If you&#8217;re in the Middle Tennessee area and would like to attend the event in-person, we&#8217;d love to have you. Just click <a href="http://bit.ly/3yG0guP" target="_blank" rel="noreferrer noopener">here</a> to register. The location is:  <strong>Vaco Nashville</strong> 5501 Virginia Way #Suite 120 Brentwood, TN 37027. </p>



<p class="wp-block-paragraph">If you would like to attend the webinar presentation, you can register <a href="http://bit.ly/3JhQJix" target="_blank" rel="noreferrer noopener">here</a>.</p>



<p class="wp-block-paragraph">If you&#8217;re not able to attend, here&#8217;s some additional information that may help. You can also <a href="mailto: joew@theserogroup.com">email me</a> and I&#8217;ll send the slide deck presentation. </p>



<div class="wp-block-group is-vertical is-layout-flex wp-container-core-group-is-layout-4fc3f8e1 wp-block-group-is-layout-flex">
<ul class="wp-block-list">
<li><a href="https://bit.ly/42g8qYz">How Often Should I Test My SQL Server Backups?</a></li>



<li><a href="http://bit.ly/3ZUnc5K">How to Test SQL Server Backups Using dbatools</a> </li>



<li><a href="http://bit.ly/3Jj3r0p">What’s in This SQL Server Backup File?</a></li>



<li><a href="Script: How Long Until My SQL Server Backup/Restore Completes?">Script: How Long Until My SQL Server Backup/Restore Completes?</a></li>



<li><a href="http://bit.ly/3mM4JJD">Schedule DBCC CHECKDB</a> </li>



<li><a href="http://bit.ly/3ZPuAPz">Where to Start with Disaster Recovery in SQL Server</a></li>



<li><a href="http://bit.ly/3FnWRoe">High Availability and Disaster Recovery in SQL Server</a></li>
</ul>
</div>



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



<p class="wp-block-paragraph">Backups are good. But it&#8217;s the ability to restore that is important. </p>



<p class="wp-block-paragraph">We help a lot of companies prepare their SQL Server environment so that when a disaster strikes, they&#8217;ll be prepared. They know they have good backups. They know they can restore in a timely manner (RTO) and to a point-in-time (RPO) that is important to them. </p>



<p class="wp-block-paragraph">Want to learn more? We can help. <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/events/webinar-virtual-machine-backups-rto-and-rpo-considerations-for-you-sql-server/">Webinar: Virtual Machine Backups &#8211; RTO and RPO Considerations for you 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">5021</post-id>	</item>
	</channel>
</rss>
