<?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 Server Archives - The SERO Group</title>
	<atom:link href="https://theserogroup.com/category/sql-server/feed/" rel="self" type="application/rss+xml" />
	<link>https://theserogroup.com/category/sql-server/</link>
	<description>SQL Servers Healthy, Secure, And Reliable</description>
	<lastBuildDate>Tue, 17 Mar 2026 02:32:48 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9</generator>

<image>
	<url>https://theserogroup.com/wp-content/uploads/2024/07/cropped-Canister-only-1-32x32.png</url>
	<title>SQL Server Archives - The SERO Group</title>
	<link>https://theserogroup.com/category/sql-server/</link>
	<width>32</width>
	<height>32</height>
</image> 
<site xmlns="com-wordpress:feed-additions:1">121220030</site>	<item>
		<title>SQL Server Monitoring: Why It Matters and What You Should Track</title>
		<link>https://theserogroup.com/sql-server/sql-server-monitoring-why-it-matters-and-what-you-should-track/</link>
					<comments>https://theserogroup.com/sql-server/sql-server-monitoring-why-it-matters-and-what-you-should-track/#respond</comments>
		
		<dc:creator><![CDATA[Lee Markum]]></dc:creator>
		<pubDate>Wed, 18 Mar 2026 12:00:49 +0000</pubDate>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[Database Administration]]></category>
		<category><![CDATA[IT Manager]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[SQL Server Management]]></category>
		<guid isPermaLink="false">https://theserogroup.com/?p=7751</guid>

					<description><![CDATA[<p>Why should you monitor your SQL Servers? You can’t manage what you don’t know about. You can’t improve what you’re not measuring. If you have SQL Servers installed somewhere that people have forgotten about, and you probably do if you haven’t used an automated tool to scan for them, then you can’t manage them. You&#8230; <br /> <a class="read-more" href="https://theserogroup.com/sql-server/sql-server-monitoring-why-it-matters-and-what-you-should-track/">Read more</a></p>
<p>The post <a href="https://theserogroup.com/sql-server/sql-server-monitoring-why-it-matters-and-what-you-should-track/">SQL Server Monitoring: Why It Matters and What You Should Track</a> appeared first on <a href="https://theserogroup.com">The SERO Group</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<h3 class="wp-block-heading" id="h-why-should-you-monitor-your-sql-servers">Why should you monitor your SQL Servers?</h3>



<p>You can’t manage what you don’t know about. You can’t improve what you’re not measuring. If you have SQL Servers installed somewhere that people have forgotten about, and you probably do if you haven’t used an automated tool to scan for them, then you can’t manage them. You certainly can’t monitor those SQL Servers. This means that you also don’t know how well, or badly, they are performing or what bad practices and habits are lurking, just waiting to cause problems.&nbsp;</p>



<p>All of this can lead to:&nbsp;</p>



<ul class="wp-block-list">
<li>Lost time because your team is fighting performance problems that can’t be identified due to the right data being unavailable. </li>



<li>Lost revenue from outages that could have been prevented or shortened with the right data. </li>



<li>Poor practices and bad habits stay hidden because there isn’t anything to surface the issues. </li>
</ul>



<h3 class="wp-block-heading" id="h-what-should-you-monitor-on-your-sql-servers">What should you monitor on your SQL Servers?</h3>



<p>We could debate this topic ad nauseam, so instead, I&#8217;ll provide a list of foundational things to consider.</p>



<h4 class="wp-block-heading" id="h-common-server-and-database-settings">Common server and database settings:</h4>



<p>Whatever is used to monitor and manage SQL Servers in your environment would do well to have a section where you can see how instance and database settings are configured. Review this information about your environment and compare what you find to known best practices. </p>



<h4 class="wp-block-heading" id="h-host-and-instance-memory-usage">Host and instance memory usage:</h4>



<p>This includes not just a raw number about percentage of RAM used or free, like you can get from the Available Bytes counter, but also things like other Performance Monitor counters such as Free List Stalls/second, Lazy Writes/second, Page Life Expectancy per NUMA Node, and Memory Grants Pending. Taken together, these metrics can help identify memory pressure. </p>



<h4 class="wp-block-heading" id="h-host-and-instance-cpu-usage">Host and instance CPU usage: </h4>



<p>This one is fairly straightforward but still worth mentioning. </p>



<h4 class="wp-block-heading" id="h-iops-input-output-second">IOPs (Input/Output/second): </h4>



<p>You need some measurement of the number of reads and writes occurring on your storage and whether those IOPs are experiencing any latency. Ideally, the metrics will also surface when the latency is happening. If latency is detected, inevitably, the next questions are, “When is it happening?” or “What queries are causing it?” </p>



<h4 class="wp-block-heading" id="h-queries-and-associated-waits">Queries and associated waits: </h4>



<p>You need to be able to see what queries were running during a certain time and what wait types those queries experienced. You need this same information for what is running at this moment so you can troubleshoot live issues. Without this, it’s really difficult to know what the problem is, or even if the problem is on the SQL Server side versus somewhere else. </p>



<h4 class="wp-block-heading" id="h-blocking-deadlock-metrics">Blocking/Deadlock metrics: </h4>



<p>Monitoring should include the number of blocking sessions and deadlocks. This is critical information to have because simply looking at the duration of queries may not tell you the whole story. A query, or set of queries, may be running long because they are experiencing blocking and not because the queries themselves are poorly constructed. Deadlock metrics will help point in the direction of needed application changes, index changes, or both.  </p>



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



<p>Want to learn more about how The SERO Group helps organizations take the guesswork out of managing their SQL Servers? <a href="https://theserogroup.com/contact-us/" target="_blank" rel="noreferrer noopener">Schedule a no-obligation discovery call</a> with us to get started.</p>
<p>The post <a href="https://theserogroup.com/sql-server/sql-server-monitoring-why-it-matters-and-what-you-should-track/">SQL Server Monitoring: Why It Matters and What You Should Track</a> appeared first on <a href="https://theserogroup.com">The SERO Group</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://theserogroup.com/sql-server/sql-server-monitoring-why-it-matters-and-what-you-should-track/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">7751</post-id>	</item>
		<item>
		<title>5 Reasons Why Restarting SQL Server Can Make Performance Problems Worse</title>
		<link>https://theserogroup.com/sql-server/5-reasons-why-restarting-sql-server-can-make-performance-problems-worse/</link>
		
		<dc:creator><![CDATA[Lee Markum]]></dc:creator>
		<pubDate>Wed, 18 Feb 2026 13:00:31 +0000</pubDate>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[Database Administration]]></category>
		<category><![CDATA[IT Manager]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[SQL Server Management]]></category>
		<guid isPermaLink="false">https://theserogroup.com/?p=7732</guid>

					<description><![CDATA[<p>I understand that people are busy and just need things to work. So, when there&#8217;s a performance problem with SQL Server, it can seem like the best, fastest way to get things working again is to restart the SQL Server service, or even reboot the machine. This is an even more attractive option when you&#8217;re&#8230; <br /> <a class="read-more" href="https://theserogroup.com/sql-server/5-reasons-why-restarting-sql-server-can-make-performance-problems-worse/">Read more</a></p>
<p>The post <a href="https://theserogroup.com/sql-server/5-reasons-why-restarting-sql-server-can-make-performance-problems-worse/">5 Reasons Why Restarting SQL Server Can Make Performance Problems Worse</a> appeared first on <a href="https://theserogroup.com">The SERO Group</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>I understand that people are busy and just need things to work. So, when there&#8217;s a performance problem with SQL Server, it can seem like the best, fastest way to get things working again is to restart the SQL Server service, or even reboot the machine. This is an even more attractive option when you&#8217;re a small shop with little or no database expertise. But what if what you&#8217;re doing is causing more harm than good?</p>



<p>Here are five reasons not to restart to solve a performance problem.</p>



<h3 class="wp-block-heading" id="h-1-restarting-sql-server-only-covers-up-the-problem"><strong>1. Restarting SQL Server only covers up the problem.</strong></h3>



<p>Restarting SQL Server is only a short-term fix, because whatever caused the problem is likely to recur. For example, if the problem you&#8217;re facing is blocking, it&#8217;s fairly likely that the queries involved will run at the same time again and cause the same issue again. As another example, if some of the queries have large memory grants, those queries will run again and will likely also consume large amounts of memory the next time they run. Do you have certain queries that use a lot of CPU? Restarting won&#8217;t help any of these issues in the long term.</p>



<h3 class="wp-block-heading" id="h-2-restarting-clears-the-sql-server-cache"><strong>2. Restarting clears the SQL Server cache.</strong></h3>



<p>This can cause issues with CPU usage to recompile plans. Plan recompilation can cause its own performance problem called parameter sniffing. This cache clearing effect also means more IO on the disks to read data back into memory. For SQL Server instances running 2017 and 2019 Enterprise Edition, there is a feature called Memory Grant Feedback. This feature helps with the size of memory grants for queries. The catch in 2017/2019 is that it does not persist. The memory Grant Feedback process is all in memory. So, when the SQL Server is restarted, the feedback process starts over.</p>



<h3 class="wp-block-heading" id="h-3-restarting-sql-server-clears-out-helpful-troubleshooting-metrics"><strong>3. Restarting SQL Server clears out helpful troubleshooting metrics.</strong></h3>



<p>SQL Server keeps track of a variety of metrics, like wait statistics and index usage information. Wait statistics are SQL Server&#8217;s way of keeping track of what resources are either being consumed or are needed for queries to run. This data can be very helpful at the server level and the query level. At the server level, certain patterns are classic indicators of certain kinds of workload problems. At the query level, wait statistics can be used to guide performance tuning efforts for individual T-SQL statements or entire stored procedures. When SQL Server restarts, this data is lost.</p>



<p>The same is true with index usage information from the missing index dynamic management views. A restart clears these statistics.</p>



<h3 class="wp-block-heading" id="h-4-restarting-sql-server-kills-all-sessions-that-were-running-instead-of-just-dealing-with-the-problematic-sessions"><strong>4. Restarting SQL Server kills all sessions that were running, instead of just dealing with the problematic sessions.</strong></h3>



<p>For example, if the problem is blocking, then there may be as few as 2 sessions involved in the performance problem. Restarting the SQL Server kills all sessions, causing rollback of work for many sessions instead of just the two involved in the issue. The SQL Server restart creates downtime by killing more sessions than is needed.</p>



<h3 class="wp-block-heading" id="h-5-restarting-sql-server-triggers-the-crash-recovery-process"><strong>5. Restarting SQL Server triggers the crash recovery process.</strong></h3>



<p>If you restart SQL Server, this can mean long, single-threaded rollback for long-running transactions. I’ve seen this take up to 45 to 60 minutes in some cases. If the instance is older, then the modern feature called Accelerated Database Recovery can&#8217;t save you from a long rollback, and the database will be inaccessible until crash recovery completes. This means the outage will last even longer.</p>



<h3 class="wp-block-heading" id="h-a-better-approach">A Better Approach</h3>



<p>So, what else can you do if you are experiencing performance problems? I’d suggest that you</p>



<ol class="wp-block-list">
<li>Run and examine the output of sp_whoisactive</li>



<li>Run and examine the output of sp_BlitzFirst</li>



<li>Run and examine the output of sp_QuickieStore<br>or</li>



<li>Contact a SQL Server consultant and ask for help if you don&#8217;t know how to do those first three things.</li>
</ol>



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



<p>Want to learn more about how The SERO Group helps organizations take the guesswork out of managing their SQL Servers? <a href="https://theserogroup.com/contact-us/" target="_blank" rel="noreferrer noopener">Schedule a no-obligation discovery call</a>&nbsp;with us to get started.</p>
<p>The post <a href="https://theserogroup.com/sql-server/5-reasons-why-restarting-sql-server-can-make-performance-problems-worse/">5 Reasons Why Restarting SQL Server Can Make Performance Problems Worse</a> appeared first on <a href="https://theserogroup.com">The SERO Group</a>.</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">7732</post-id>	</item>
		<item>
		<title>How to Find Queries Causing RESOURCE_SEMAPHORE Waits in SQL Server</title>
		<link>https://theserogroup.com/sql-server/how-to-find-queries-causing-resource_semaphore-waits-in-sql-server/</link>
		
		<dc:creator><![CDATA[Lee Markum]]></dc:creator>
		<pubDate>Wed, 21 Jan 2026 13:00:54 +0000</pubDate>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[Database Administration]]></category>
		<category><![CDATA[Database Development]]></category>
		<category><![CDATA[IT Manager]]></category>
		<category><![CDATA[Query Store]]></category>
		<category><![CDATA[Script Library]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[SQL Server Management]]></category>
		<guid isPermaLink="false">https://theserogroup.com/?p=7713</guid>

					<description><![CDATA[<p>The resource_semaphore wait can have devastating consequences for SQL Server performance. This wait essentially means that some of the queries in your workload have memory grants that are larger than the memory for the server can support. When that happens, the SQL Server feels like it is frozen and unresponsive. Queries are likely running, but&#8230; <br /> <a class="read-more" href="https://theserogroup.com/sql-server/how-to-find-queries-causing-resource_semaphore-waits-in-sql-server/">Read more</a></p>
<p>The post <a href="https://theserogroup.com/sql-server/how-to-find-queries-causing-resource_semaphore-waits-in-sql-server/">How to Find Queries Causing RESOURCE_SEMAPHORE Waits in SQL Server</a> appeared first on <a href="https://theserogroup.com">The SERO Group</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>The resource_semaphore wait can have devastating consequences for SQL Server performance. This wait essentially means that some of the queries in your workload have memory grants that are larger than the memory for the server can support. When that happens, the SQL Server feels like it is frozen and unresponsive. Queries are likely running, but this wait causes a queue to build up while submitted queries wait for memory to run.</p>



<h1 class="wp-block-heading" id="h-what-is-the-resource-semaphore-wait">What is the resource_semaphore wait?</h1>



<p>A wait type of resource_semaphore means that there isn&#8217;t enough available memory to grant for queries to run. At a high level, here is what is happening. A query is submitted to the SQL Server engine for execution. As part of the pre-execution phase, SQL Server estimates how much memory it thinks a query will need to run. Several factors influence this memory estimation. Assuming there is free memory to grant to the query, then the query moves along the execution phases and starts running.</p>



<p>But let’s say you have a server with 128 GB of RAM allocated to SQL Server. A series of queries are submitted to the SQL Server database engine that are each granted 15 GB of RAM. At most, SQL Server can handle 8 of those queries before it runs out of memory to allocate. The next query that comes along and needs another 15 GB of RAM is prevented from starting its execution because 8 X 15 = 120 GB of RAM. This 9th query, if granted memory, would cause a total of 135 GB to be allocated. The server doesn’t have that much RAM allocated for queries. So, it has to wait.</p>



<p>As other queries are submitted, they wait behind this 9th query that needs the additional 15 GB of RAM. If the other 8 queries that are already executing are long-running queries, it might be several minutes, or longer, before memory is available. Queries start stacking up behind each other. Users start noticing that the app is slow, pages aren’t refreshing, and reports aren’t completing. Soon, everyone is hitting F5 on the web app to resubmit queries because nothing is happening. Immediately following this, your phone or your Slack messages start blowing up!</p>



<h2 class="wp-block-heading" id="h-how-to-find-queries-with-large-memory-grants">How to find queries with large memory grants</h2>



<p>First, you can use sp_whoisactive to find the queries and the offending wait in real-time. This is very useful for the scenario above, where users feel the pain and start entering tickets and messaging people for help.</p>



<p>However, let’s say, for example, that your server is just teetering on the edge with the memory allocation. Memory grants are occasionally high enough that SQL Server is registering the resource_semaphore wait, but it isn’t happening for long enough, or frequently enough, that users really notice and start complaining. Your SQL Server is experiencing slowness, at times, it’s just not causing excruciating pain. This may show up by this wait appearing low in the result set from Paul Randall’s wait stats query. Maybe it’s only causing a few seconds of wait, on average, when it happens. Users might notice this because their report or application screen completes after a brief wait, so they assume this is “normal.” Consequently, they don’t report it. This doesn’t mean you can or should ignore what the wait stats information is telling you. Act now before this becomes a full-blown emergency.</p>



<p>Second, in the above scenario, you can use Extended Events to find queries with large memory grants. Extended Events are light-weight trace objects that allow for the capture of far more events than Profiler or a server-side trace. They also work differently by only firing and capturing when an event defined in the session happens, versus capturing everything and then filtering like Profiler does.</p>



<h2 class="wp-block-heading" id="h-setting-up-the-extended-events-session">Setting Up The Extended Events Session</h2>



<p>After some poking around and some experimenting, I was able to arrive at the T-SQL below to create the extended event session. This code will capture any query with a memory grant greater than 1 GB. Adjust this higher or lower as makes sense for your environment. The session stores the database ID, plan handle, session ID, and the T-SQL text for the offending query in a file. It will write to as many as 5 files, each 1 GB in size. When the 5th file is full, it will delete the oldest files and start writing a new file.</p>



<p>One thing to be aware of is the path for the file that will hold the data. That path must exist first. I&#8217;m using C:\XE\NameofExtendedEventSession.xel. Be sure to update that path to a location that your SQL Server instance can access. </p>



<pre class="wp-block-code"><code>CREATE EVENT SESSION &#91;TrackHighMemoryGrants] ON SERVER 
ADD EVENT sqlserver.query_memory_grant_usage(
ACTION(sqlserver.database_id,sqlserver.plan_handle,sqlserver.session_id,sqlserver.sql_text)
    WHERE (&#91;granted_memory_kb]&gt;(1024000))),
ADD EVENT sqlserver.query_memory_grant_wait_end(
    ACTION(sqlserver.database_id,sqlserver.session_id,sqlserver.sql_text)
    WHERE (&#91;sqlserver].&#91;database_id]=(8) AND &#91;granted_memory_kb]&gt;(1024000)))
ADD TARGET package0.event_file(SET filename=N'C:\XE\HighMemoryGrants.xel',max_file_size=(1024),max_rollover_files=(5))
WITH (MAX_MEMORY=51200 KB,EVENT_RETENTION_MODE=ALLOW_SINGLE_EVENT_LOSS,MAX_DISPATCH_LATENCY=5 SECONDS,MAX_EVENT_SIZE=0 KB,MEMORY_PARTITION_MODE=NONE,TRACK_CAUSALITY=ON,STARTUP_STATE=OFF)
GO</code></pre>



<p>To start the Extended Events session, run the following T-SQL:</p>



<pre class="wp-block-code"><code>ALTER EVENT SESSION &#91;TrackingHighMemoryGrants]
ON SERVER
STATE = START;</code></pre>



<p>This can also be done from SSMS. Traverse the UI under the SQL instance name to Management &gt; Extended Events &gt; “TrackingHighMemoryGrants”, right click and select the “Start Session” option.</p>



<h2 class="wp-block-heading" id="h-how-to-query-extended-events-files">How to query Extended Events files</h2>



<p>The extended event is gathering data. The query below can parse the collected files to show which queries have the highest memory grants on average.</p>



<pre class="wp-block-code"><code>
WITH ParsedEvents AS (
SELECT 
event_data.value('(event/action&#91;@name="sql_text"]/value)&#91;1]', 'nvarchar(max)') AS sql_text,
event_data.value('(event/data&#91;@name="granted_memory_kb"]/value)&#91;1]', 'bigint') / 1024.0 AS granted_mb
FROM (
    SELECT CAST(event_data AS XML) AS event_data
    FROM sys.fn_xe_file_target_read_file('C:\XE\HighMemoryGrants*.xel', NULL, NULL, NULL)
    ) AS x
)

SELECT 
sql_text,
COUNT(*) AS execution_count,
AVG(granted_mb) AS avg_granted_mb,
MAX(granted_mb) AS max_granted_mb,
MIN(granted_mb) AS min_granted_mb
FROM ParsedEvents
GROUP BY sql_text
ORDER BY avg_granted_mb DESC;
</code></pre>



<p><br>Now you can start dealing with the queries involved in that pesky wait before the problem brings your server to a screeching halt! By the way, the queries may lead you to a design problem in your tables that can cause high memory grants. More about that in a future post!<br></p>



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



<p>Want to learn more about how The SERO Group helps organizations take the guesswork out of managing their SQL Servers? <a href="https://theserogroup.com/contact-us/" target="_blank" rel="noreferrer noopener">Schedule a no-obligation discovery call</a>&nbsp;with us to get started.</p>
<p>The post <a href="https://theserogroup.com/sql-server/how-to-find-queries-causing-resource_semaphore-waits-in-sql-server/">How to Find Queries Causing RESOURCE_SEMAPHORE Waits in 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">7713</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>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>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>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>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>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>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>Instead, I thought about the relationships we strengthened. The trust we built with clients. The problems we solved before they became crises.</p>



<p>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>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>This year reminded me of something Eisenhower once said: <strong>&#8220;Plans are worthless, but planning is everything.&#8221;</strong></p>



<p>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><strong>The plan itself wasn&#8217;t the point. The thinking I did while creating the plan was the point.</strong></p>



<p>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>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>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>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>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>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>There&#8217;s a third option: fractional DBA services that give you expert oversight without the full-time price tag. </p>



<p>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>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>Here&#8217;s the thing about those early Saturday morning moments: they&#8217;re rare. And precious. </p>



<p>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>Strategic work requires space. It requires stepping back from the urgent to focus on the important.</p>



<p>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>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>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>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>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>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>How Query Store Drives Progress Along the SQL Server Maturity Curve</title>
		<link>https://theserogroup.com/sql-server/how-query-store-drives-progress-along-the-sql-server-maturity-curve/</link>
		
		<dc:creator><![CDATA[Lee Markum]]></dc:creator>
		<pubDate>Wed, 10 Dec 2025 13:00:07 +0000</pubDate>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[Database Administration]]></category>
		<category><![CDATA[IT Manager]]></category>
		<category><![CDATA[Query Store]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[SQL Server Management]]></category>
		<guid isPermaLink="false">https://theserogroup.com/?p=7678</guid>

					<description><![CDATA[<p>We&#8217;ve been learning about SQL Server Query Store lately. We&#8217;ve delved into a few benefits of the feature, as well as how to enable it. In today&#8217;s post, we&#8217;ll discover how this feature can play a role in maturing your SQL Server environment. A Refresher on the SQL Server Maturity Curve First, let’s remind ourselves&#8230; <br /> <a class="read-more" href="https://theserogroup.com/sql-server/how-query-store-drives-progress-along-the-sql-server-maturity-curve/">Read more</a></p>
<p>The post <a href="https://theserogroup.com/sql-server/how-query-store-drives-progress-along-the-sql-server-maturity-curve/">How Query Store Drives Progress Along the SQL Server Maturity Curve</a> appeared first on <a href="https://theserogroup.com">The SERO Group</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>We&#8217;ve been learning about SQL Server Query Store lately. We&#8217;ve delved into a few <a href="https://theserogroup.com/dba/4-key-performance-benefits-of-enabling-query-store/" target="_blank" rel="noreferrer noopener">benefits</a> of the feature, as well as how to <a href="https://theserogroup.com/sql-server/how-to-enable-query-store-in-sql-server-a-step-by-step-guide/" target="_blank" rel="noreferrer noopener">enable</a> it. In today&#8217;s post, we&#8217;ll discover how this feature can play a role in maturing your SQL Server environment.</p>



<h3 class="wp-block-heading" id="h-a-refresher-on-the-sql-server-maturity-curve">A Refresher on the SQL Server Maturity Curve</h3>



<p>First, let’s remind ourselves of what the progression of the SQL Server maturity curve looks like, as discussed in <a href="https://theserogroup.com/data-strategy/sql-server-maturity-curve-how-banks-move-from-reactive-risk-to-strategic-advantage/">this</a> blog.</p>



<ol class="wp-block-list">
<li>Reactive—Firefighting</li>



<li>Managed—Gaining control</li>



<li>Optimized—Running proactively</li>



<li>Strategic—Turning data into advantage</li>
</ol>



<h3 class="wp-block-heading" id="h-how-sql-server-query-store-helps-businesses-take-control">How SQL Server Query Store Helps Businesses Take Control</h3>



<p>Query Store’s features can help shift businesses away from break/fix firefighting. Because the Query Store collects runtime metrics for query performance, as well as query plans, businesses aren’t running blind anymore.</p>



<p>You want to know what was going on last Tuesday at 3:15PM when the app was slow? Look at Query Store to see what queries were running and what plans the queries were using. There may have been a change in the query plan, and after that is when people reported that the app was slow. Those query plans may also reveal missing indexes that can help performance.</p>



<p>Additionally, the Query Store report called “Top Resource Consuming Queries” will show how much CPU and RAM were involved in those queries. The Query Wait Statistics report will represent the resources that queries were waiting on as very visible bar graphs. This report enables IT professionals to see that issues like locks or disk IO are affecting their queries.</p>



<p>This type of data gives you the insight needed to start gaining control over your environment.</p>



<h3 class="wp-block-heading" id="h-moving-from-managed-to-strategic-with-query-store">Moving from Managed to Strategic with Query Store</h3>



<p>Now your business can move to the next stage of maturity, which is being proactive. For example, now you can start rewriting queries that were running when the application was slow.  Those missing index recommendations found in various query plans can be evaluated and compared to existing indexes. Perhaps a recommended and existing index can be combined into a single index that can be tested in a lower environment to see if it has a positive impact on the query plan, resulting in lower query durations or lower resource usage.</p>



<p>If the application is from a vendor, then you likely can’t make changes to the queries or indexing, but you now have data to provide the vendor when approaching them with performance problems.</p>



<p>Additionally, you can do things like forcing certain query plans, and in SQL Server 2022, you can apply query hints within Query Store so that even if an application is from a 3<sup>rd</sup> party vendor, you can still make improvements without changing the application code. Query Hints are stored within the Query Store and applied after the code is submitted to SQL Server.</p>



<p>Query Store, then, empowers your business to be strategic. The team can see where the pain points are, test and prioritize issues and solutions, and hand over data to vendors when they can’t make changes themselves. This proactive, strategic work can literally save your business a lot of money by lowering resource usage, allowing for a smaller SQL Server instance. This saves money on licensing and, if you are in the cloud, saves money spent on the size of resources provisioned.</p>



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



<p>Want to learn more about how The SERO Group helps organizations take the guesswork out of managing their SQL Servers? <a href="https://theserogroup.com/contact-us/" target="_blank" rel="noreferrer noopener">Schedule a no-obligation discovery call</a>&nbsp;with us to get started.</p>
<p>The post <a href="https://theserogroup.com/sql-server/how-query-store-drives-progress-along-the-sql-server-maturity-curve/">How Query Store Drives Progress Along the SQL Server Maturity Curve</a> appeared first on <a href="https://theserogroup.com">The SERO Group</a>.</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">7678</post-id>	</item>
		<item>
		<title>SQL Server 2025: What Community Banks Need to Know Before Upgrading</title>
		<link>https://theserogroup.com/sql-server/sql-server-2025-what-community-banks-need-to-know-before-upgrading/</link>
		
		<dc:creator><![CDATA[Joe Webb]]></dc:creator>
		<pubDate>Wed, 26 Nov 2025 13:00:08 +0000</pubDate>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[Database Administration]]></category>
		<category><![CDATA[Database Development]]></category>
		<category><![CDATA[IT Manager]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[SQL Consultant]]></category>
		<category><![CDATA[SQL Security]]></category>
		<category><![CDATA[SQL Server Consultant]]></category>
		<category><![CDATA[SQL Server Management]]></category>
		<guid isPermaLink="false">https://theserogroup.com/?p=7664</guid>

					<description><![CDATA[<p>Microsoft SQL Server 2025 has officially reached general availability, and it&#8217;s being called the most significant release for SQL developers in a decade. For IT leaders in community banking and financial services, this release brings meaningful improvements to performance, security, and licensing that deserve your attention. Whether you&#8217;re planning an upgrade from an aging SQL&#8230; <br /> <a class="read-more" href="https://theserogroup.com/sql-server/sql-server-2025-what-community-banks-need-to-know-before-upgrading/">Read more</a></p>
<p>The post <a href="https://theserogroup.com/sql-server/sql-server-2025-what-community-banks-need-to-know-before-upgrading/">SQL Server 2025: What Community Banks Need to Know Before Upgrading</a> appeared first on <a href="https://theserogroup.com">The SERO Group</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p><a href="https://www.microsoft.com/en-us/evalcenter/evaluate-sql-server-2025" target="_blank" rel="noreferrer noopener">Microsoft SQL Server 2025</a> has officially reached general availability, and it&#8217;s being called the most significant release for SQL developers in a decade. For IT leaders in community banking and financial services, this release brings meaningful improvements to performance, security, and licensing that deserve your attention.</p>



<p>Whether you&#8217;re planning an upgrade from an aging SQL Server instance or simply staying informed about where the platform is headed, here&#8217;s what you need to know about SQL Server 2025 and how it might affect your institution.</p>



<h2 class="wp-block-heading" id="h-what-s-new-in-sql-server-2025">What’s New in SQL Server 2025?</h2>



<h3 class="wp-block-heading">Major Changes to SQL Server Editions</h3>



<p>Let&#8217;s start with the news that will matter most to budget-conscious institutions: SQL Server 2025 Standard Edition now supports up to 32 CPU cores and 256 GB of RAM. This is a substantial increase from previous limits and could significantly affect your licensing decisions.</p>



<p>For many community banks, this expanded capacity means Standard Edition can now handle workloads that previously required Enterprise Edition licensing. Given the price difference between editions, this change alone could translate into meaningful cost savings on your next upgrade or new deployment.</p>



<p>Express Edition also received an upgrade, with the maximum database size increasing to 50 GB. While Express isn&#8217;t typically used for core banking systems, this expanded limit makes it more viable for development environments, smaller branch applications, or testing scenarios.</p>



<p>Microsoft also introduced a new Standard Developer Edition that offers full feature parity with Standard Edition. This allows your development and testing environments to mirror production limitations more accurately, reducing surprises when you deploy.</p>



<h3 class="wp-block-heading">Performance Improvements That Require No Code Changes</h3>



<p>SQL Server 2025 includes over 50 enhancements to the database engine, with several performance improvements that take effect automatically—no application changes required.</p>



<p>The most significant is optimized locking, which uses Transaction ID locking and lock-after-qualification features to improve concurrency. In practical terms, this means reduced row and page locks during data modifications, which translates to better performance for high-transaction environments like core banking systems.</p>



<p>For institutions that have struggled with unpredictable tempdb growth, SQL Server 2025 introduces tempdb resource governor options that let you control how much tempdb space individual users or processes can consume. This provides better resource management and helps prevent runaway queries from affecting other workloads.</p>



<p>The release also includes a new ZSTD backup compression algorithm, which is particularly valuable for large database backups. Faster, more efficient backups mean shorter maintenance windows and reduced storage costs—both welcome improvements for institutions managing growing data volumes.</p>



<h3 class="wp-block-heading">Security Enhancements for Regulated Industries</h3>



<p>Security remains a top priority for SQL Server, and the 2025 release continues that focus with several enhancements relevant to financial institutions.</p>



<p>SQL Server 2025 integrates with Microsoft Entra for identity and access management, supporting multi-factor authentication, role-based access control, and condition-based policies. For institutions already using Microsoft&#8217;s identity services, this provides a more unified security posture across your environment.</p>



<p>The release also introduces enhanced password protection using a password-based key derivation function that follows NIST SP 800-63b compliance guidelines. Additionally, security cache improvements reduce the performance impact of permission changes in high-concurrency environments—a common scenario in banking applications with thousands of active connections.</p>



<p>For institutions running SQL Server on Linux, version 2025 adds TLS 1.3 support, custom password policies, and signed container images. Platform support also expands to include RHEL 10 and Ubuntu 24.04.</p>



<h3 class="wp-block-heading">Built-In AI Capabilities</h3>



<p>Microsoft is positioning SQL Server 2025 as the &#8220;AI-ready enterprise database,&#8221; and this release includes native support for AI workloads directly within the database engine.</p>



<p>New features include a native vector data type, built-in vector search capabilities, and integrated model definitions that can be defined directly within T-SQL. The new sp_invoke_external_rest_endpoint stored procedure allows you to call AI services like Azure OpenAI or ChatGPT directly from your database.</p>



<p>For financial institutions, these capabilities open possibilities for fraud detection, customer service automation, document processing, and other AI-driven applications without requiring separate infrastructure for vector databases or AI model hosting. However, as with any new technology in regulated environments, careful evaluation and appropriate governance will be essential before production deployment.</p>



<h3 class="wp-block-heading">Developer Productivity Enhancements</h3>



<p>SQL Server 2025 brings several features that streamline development and reduce code complexity. Native JSON support now handles documents up to 2 GB per row with dedicated JSON indexes for improved query performance. Regular expression support is now built directly into T-SQL, eliminating the need for third-party tools or workarounds.</p>



<p>Change Event Streaming allows real-time, event-driven applications by streaming changes directly from the transaction log to Azure Event Hubs or Kafka. Native REST API support through system stored procedures enables richer integrations with external services.</p>



<p>These enhancements make SQL Server more capable for modern application architectures while maintaining the reliability and security that regulated industries require.</p>



<h2 class="wp-block-heading" id="h-key-takeaways-and-institutional-impact">Key Takeaways and Institutional Impact</h2>



<p>SQL Server 2025 delivers meaningful gains for community banks and financial institutions, combining expanded Standard Edition limits, stronger security aligned with compliance expectations, and automatic performance improvements that benefit high-transaction environments. These enhancements can reduce licensing costs, improve reliability, and support more modern workloads without major application changes.</p>



<h2 class="wp-block-heading" id="h-planning-your-upgrade-path">Planning Your Upgrade Path</h2>



<p>SQL Server 2025 supports in-place upgrades from SQL Server 2014 or later, and migration methods work all the way back to SQL Server 2008. With SQL Server 2016 reaching the end of its extended support in July of 2026, now is a good time to evaluate your upgrade timeline.</p>



<p>Before upgrading production systems, thoroughly test your applications against the new version. While SQL Server releases rarely include major breaking changes, version 2025 does adopt TDS 8.0 with TLS 1.3 support, which can affect linked servers and replication configurations. Identify these dependencies early to avoid surprises. You’ll also want to verify support from vendor-provided applications.</p>



<h2 class="wp-block-heading" id="h-considering-a-sql-server-upgrade">Considering a SQL Server Upgrade?</h2>



<p>Planning a SQL Server upgrade or wondering how SQL Server 2025&#8217;s new features apply to your environment? <a href="https://theserogroup.com/contact-us/">Let&#8217;s talk</a>. Reach out to schedule a 15-minute conversation about your database strategy.</p>
<p>The post <a href="https://theserogroup.com/sql-server/sql-server-2025-what-community-banks-need-to-know-before-upgrading/">SQL Server 2025: What Community Banks Need to Know Before Upgrading</a> appeared first on <a href="https://theserogroup.com">The SERO Group</a>.</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">7664</post-id>	</item>
		<item>
		<title>How to Enable Query Store in SQL Server: A Step-by-Step Guide</title>
		<link>https://theserogroup.com/sql-server/how-to-enable-query-store-in-sql-server-a-step-by-step-guide/</link>
		
		<dc:creator><![CDATA[Lee Markum]]></dc:creator>
		<pubDate>Wed, 12 Nov 2025 13:00:05 +0000</pubDate>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[Database Administration]]></category>
		<category><![CDATA[Database Development]]></category>
		<category><![CDATA[IT Manager]]></category>
		<category><![CDATA[Query Store]]></category>
		<category><![CDATA[Script Library]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[SQL Script Library]]></category>
		<category><![CDATA[SQL Server Management]]></category>
		<guid isPermaLink="false">https://theserogroup.com/?p=7614</guid>

					<description><![CDATA[<p>In my previous post about Query Store, I wrote about the four key benefits to enabling Query Store. Now that I&#8217;ve convinced you to turn it on, how do you do that? One thing to point out is that in SQL Server 2022 and above, when creating a new database from the SSMS GUI or&#8230; <br /> <a class="read-more" href="https://theserogroup.com/sql-server/how-to-enable-query-store-in-sql-server-a-step-by-step-guide/">Read more</a></p>
<p>The post <a href="https://theserogroup.com/sql-server/how-to-enable-query-store-in-sql-server-a-step-by-step-guide/">How to Enable Query Store in SQL Server: A Step-by-Step Guide</a> appeared first on <a href="https://theserogroup.com">The SERO Group</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>In <a href="https://theserogroup.com/dba/4-key-performance-benefits-of-enabling-query-store/" target="_blank" rel="noreferrer noopener">my previous post about Quer</a><a href="https://theserogroup.com/dba/4-key-performance-benefits-of-enabling-query-store/">y Store</a>, I wrote about the four key benefits to enabling Query Store. Now that I&#8217;ve convinced you to turn it on, how do you do that?</p>



<p>One thing to point out is that in SQL Server 2022 and above, when creating a new database from the SSMS GUI or by simply using the CREATE DATABASE MyNewDB syntax, the Query Store option will be on by default. For databases restored to SQL Server 2016 or later, the Query Store&#8217;s status from the original system will remain unchanged when the database is restored on the new instance.</p>



<p>Let&#8217;s go through the three ways to enable Query Store.</p>



<ol class="wp-block-list">
<li>Manually in SQL Server Management Studio</li>



<li>Using T-SQL</li>



<li>Using PowerShell</li>
</ol>



<h3 class="wp-block-heading" id="h-1-enabling-query-store-using-sql-server-management-studio">1. Enabling Query Store using SQL Server Management Studio:</h3>



<p>Since you’re likely already comfortable using SQL Server Management Studio for queries and database maintenance, SMSS does offer a convenient, familiar method for getting started with Query Store.</p>



<h4 class="wp-block-heading" id="h-steps-to-enable-query-store-using-ssms">Steps to Enable Query Store using SSMS</h4>



<ol class="wp-block-list">
<li>Connect to a SQL Server instance running SQL Server 2016 or higher.</li>



<li>Click the &#8216;+&#8217; sign next to the Databases folder to expand and see the list of databases.</li>



<li>Right-click on the database name and select &#8220;Properties.&#8221;</li>



<li>Left-click the &#8220;Query Store&#8221; option on the left-hand side of the GUI.</li>



<li>Change the Operation Mode(Requested) option from &#8220;Off&#8221; to &#8220;Read write.&#8221;</li>



<li>Click OK to apply the change and enable Query Store.</li>
</ol>



<h4 class="wp-block-heading" id="h-further-details">Further Details</h4>



<p>Here is what you will see after step 3. The Query Store option mentioned in step 4 is at the bottom of the list of options, like the below.</p>



<figure class="wp-block-image size-full"><a href="https://theserogroup.com/wp-content/uploads/2025/11/SelectingQueryStoreOptionInSelectAPage.png"><img decoding="async" width="172" height="216" src="https://theserogroup.com/wp-content/uploads/2025/11/SelectingQueryStoreOptionInSelectAPage.png" alt="" class="wp-image-7617"/></a></figure>



<p>Left-clicking that Query Store option will cause the below to show up on the right of the SSMS GUI.</p>



<p>What you see when you do that are the existing defaults on 2019 and above. If you are enabling Query Store on versions 2016 or 2017, you will want to adjust additional defaults. Prior to 2019, the default for &#8220;Query Store Capture Mode&#8221; was &#8220;All.&#8221; Change this option to &#8220;Auto&#8221; instead.</p>



<p>Furthermore, the default for Max_Storage_Size_MB was far too low in 2016 and 2017 and could be better in 2019 as well. This value represents the maximum amount of space that Query Store data will occupy in the database in which it was enabled. A good default value to start with is 2048 MB. It may be necessary to adjust that to 4096 MB at the high end in order to capture queries for the entire length of the &#8220;Stale Query Threshold (Days)&#8221; value.</p>



<p>The &#8220;Stale Query Threshold (Days)&#8221; option controls how many days of Query Store data will be kept. If the max storage size is set too low for a retention value of 30 days, then Query Store will start deleting collected data in the system tables to keep Query Store below the max storage size. This could result in having less data available than you intend for troubleshooting.</p>



<p>The rest of the defaults are acceptable and so could be left alone without concern.</p>



<figure class="wp-block-image size-full"><a href="https://theserogroup.com/wp-content/uploads/2025/11/QueryStore2019DefaultsInSSMS-1.png"><img fetchpriority="high" decoding="async" width="699" height="488" src="https://theserogroup.com/wp-content/uploads/2025/11/QueryStore2019DefaultsInSSMS-1.png" alt="" class="wp-image-7621" srcset="https://theserogroup.com/wp-content/uploads/2025/11/QueryStore2019DefaultsInSSMS-1.png 699w, https://theserogroup.com/wp-content/uploads/2025/11/QueryStore2019DefaultsInSSMS-1-300x209.png 300w" sizes="(max-width: 699px) 100vw, 699px" /></a></figure>



<h3 class="wp-block-heading" id="h-2-enabling-query-store-using-t-sql">2. Enabling Query Store using T-SQL</h3>



<p>The T-SQL language is, of course, the language of SQL Server. It is often more flexible than the SSMS GUI. Notice in the screenshot up above that there is a “Script” button. If you click that instead of clicking &#8220;ok&#8221; in the UI, then SQL Server will script out the options in the GUI into a query window. This will allow you to see what the GUI does. Using T-SQL, it is easier to enable Query Store on multiple databases. You can use a construct like sp_msforeachdb to enable Query Store for multiple databases at once.</p>



<pre class="wp-block-code"><code>USE &#91;master]
GO
ALTER DATABASE &#91;MyDB] SET QUERY_STORE = ON
GO
ALTER DATABASE &#91;MyDB] SET QUERY_STORE (OPERATION_MODE = READ_WRITE, MAX_STORAGE_SIZE_MB = 2048)
GO</code></pre>



<h3 class="wp-block-heading" id="h-3-enabling-query-store-using-powershell">3. Enabling Query Store using PowerShell</h3>



<p>Many accidental DBAs, those folks who were “voluntold” to start managing SQL Server, are network engineers, sysadmins, or cloud admins. Automation is often music to their ears, and in the Windows universe, PowerShell is a go-to method for automating tasks. Consequently, using PowerShell to automate the enabling of Query Store may feel natural to accidental DBAs. For the below command, the DBATools module will be needed in your environment.</p>



<p>Below is how Query Store could be enabled on all user databases on an instance of SQL Server. If you only want to enable Query Store on a few select databases on an instance, then add the -Database parameter with a comma-separated list of databases.</p>



<pre class="wp-block-code"><code>Set-DbaDbQueryStoreOption -SqlInstance ServerA -State ReadWrite ​

-FlushInterval 900 -CollectionInterval 60 -MaxSize 4096 ​

-CaptureMode Auto -CleanupMode Auto -StaleQueryThreshold 30, -WaitStatsCaptureMode ON</code></pre>



<p>Also, if your SQL Server environment has the Registered Server feature set up, then PowerShell can be used to read the servers registered there, loop over them, and enable Query Store on all user databases across your environment. This would be done using the Get-DbaRegServer command in the DBATools module.</p>



<h3 class="wp-block-heading" id="h-trace-flags-for-query-store">Trace Flags for Query Store</h3>



<p>If you aren’t familiar with Trace Flags, these are numbers that Microsoft uses to enable certain kinds of behavior in the database engine. They are occasionally meant to be short-term fixes, and later the functionality in a trace flag is built into how the SQL Server database engine works. This is the case for trace flags and Query Store. There are two trace flags to know about and enable. Notice that flag 7752 isn’t needed on SQL Server 2019 and above.</p>



<p>Trace Flag 7745—This prevents Query Store data from writing to disk prior to shutdown or failover process so it doesn’t delay a shutdown or failover.​</p>



<p>Trace Flag 7752 – Loads Query Store data to memory asynchronously from query execution. This default is built into the engine in SQL Server 2019.​</p>



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



<p>Want to learn more about how The SERO Group helps organizations take the guesswork out of managing their SQL Servers? <a href="https://theserogroup.com/contact-us/" target="_blank" rel="noreferrer noopener">Schedule a no-obligation discovery call</a>&nbsp;with us to get started.</p>
<p>The post <a href="https://theserogroup.com/sql-server/how-to-enable-query-store-in-sql-server-a-step-by-step-guide/">How to Enable Query Store in SQL Server: A Step-by-Step Guide</a> appeared first on <a href="https://theserogroup.com">The SERO Group</a>.</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">7614</post-id>	</item>
		<item>
		<title>5 Signs Your SQL Server Environment Is Immature (and How Banks Can Reduce Risk)</title>
		<link>https://theserogroup.com/sql-server/5-signs-your-sql-server-environment-is-immature-and-how-banks-can-reduce-risk/</link>
		
		<dc:creator><![CDATA[Joe Webb]]></dc:creator>
		<pubDate>Wed, 01 Oct 2025 12:00:45 +0000</pubDate>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[Database Administration]]></category>
		<category><![CDATA[IT Manager]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[SQL Audit]]></category>
		<category><![CDATA[SQL Event]]></category>
		<category><![CDATA[SQL Server Management]]></category>
		<guid isPermaLink="false">https://theserogroup.com/?p=7579</guid>

					<description><![CDATA[<p>In banking, SQL Server isn’t just a piece of technology humming quietly in the background. It’s the backbone of customer trust, regulatory compliance, and day-to-day operations. Without it, transactions stall, reports can’t run, and auditors start asking uncomfortable questions. Yet in my conversations with CIOs and IT leaders, a common theme keeps coming up: many&#8230; <br /> <a class="read-more" href="https://theserogroup.com/sql-server/5-signs-your-sql-server-environment-is-immature-and-how-banks-can-reduce-risk/">Read more</a></p>
<p>The post <a href="https://theserogroup.com/sql-server/5-signs-your-sql-server-environment-is-immature-and-how-banks-can-reduce-risk/">5 Signs Your SQL Server Environment Is Immature (and How Banks Can Reduce Risk)</a> appeared first on <a href="https://theserogroup.com">The SERO Group</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>In banking, SQL Server isn’t just a piece of technology humming quietly in the background. It’s the backbone of customer trust, regulatory compliance, and day-to-day operations. Without it, transactions stall, reports can’t run, and auditors start asking uncomfortable questions.</p>



<p>Yet in my conversations with CIOs and IT leaders, a common theme keeps coming up: many institutions aren’t fully confident in how their SQL Servers are being managed. In fact, some don’t even realize how reactive their environments have become until an outage, audit, or breach forces the issue.</p>



<p>If that sounds familiar, you’re not alone. Here are five signs your SQL Server environment may be operating at an immature level—and why it matters.</p>



<h3 class="wp-block-heading" id="h-1-you-re-constantly-firefighting"><strong>1. You’re Constantly Firefighting</strong></h3>



<p>If your team spends more time putting out fires than moving forward with projects, that’s a red flag. When backups fail, jobs break, or users are the first to notice performance issues, you’re stuck in a cycle of reaction. Not only is this stressful, but it’s also expensive. Every hour spent firefighting is an hour not spent on strategic initiatives like digital transformation or customer experience improvements.</p>



<h3 class="wp-block-heading" id="h-2-backups-exist-but-restores-don-t"><strong>2. Backups Exist, but Restores Don’t</strong></h3>



<p>Most banks take backups. Fewer regularly test restores. The problem? A backup that hasn’t been tested is just a false sense of security. Imagine discovering in the middle of an outage that your backups are corrupt or incomplete. The financial cost of downtime for banks often runs into <strong>thousands of dollars per minute</strong>—not to mention reputational damage and potential regulatory penalties.</p>



<h3 class="wp-block-heading" id="h-3-outdated-versions-and-patch-levels"><strong>3. Outdated Versions and Patch Levels</strong></h3>



<p>SQL Server 2008, 2012, or even 2014 are still running in some banks today. If your institution is one of them, you’re carrying significant risk. Unsupported versions don’t receive security patches, leaving you exposed to known vulnerabilities. Regulators won’t accept “we meant to upgrade” as an excuse. And from a purely financial standpoint, the cost of staying current is far less than the potential cost of a breach.</p>



<h3 class="wp-block-heading" id="h-4-no-real-time-monitoring"><strong>4. No Real-Time Monitoring</strong></h3>



<p>Do you find out about problems because end users complain first? That’s a clear sign of immaturity. Mature environments have monitoring and alerts in place so issues can be addressed before they impact customers or regulators. Without that visibility, you’re operating blind—and hoping nothing goes wrong.</p>



<h3 class="wp-block-heading" id="h-5-audit-and-compliance-surprises"><strong>5. Audit and Compliance Surprises</strong></h3>



<p>If your last audit or exam felt like a fire drill, that’s another warning sign. Struggling to pull the right reports or demonstrate controls indicates maturity gaps. Regulatory compliance isn’t optional in banking, and weak database management practices make audits harder, slower, and more expensive than they need to be.</p>



<h3 class="wp-block-heading" id="h-the-roi-of-maturity"><strong>The ROI of Maturity</strong></h3>



<p>The case for maturing your SQL Server environment isn’t just about avoiding risk—it’s about return on investment.</p>



<ul class="wp-block-list">
<li><strong>Reduced downtime:</strong> With the average cost of downtime in banking estimated at $5,000–$10,000 per minute, even a single avoided outage more than pays for proactive monitoring and management.</li>



<li><strong>Lower compliance costs:</strong> Mature environments simplify audits, reduce remediation effort, and build examiner confidence.</li>



<li><strong>Staff efficiency:</strong> Instead of spending 60–80% of their time firefighting, IT staff can focus on projects that move the bank forward.</li>



<li><strong>Better decision-making:</strong> Reliable, secure databases mean your leaders can trust the reports and analytics driving strategy.</li>
</ul>



<p>Simply put: moving from reactive to mature doesn’t just save headaches—it strengthens the bottom line.</p>



<h3 class="wp-block-heading" id="h-moving-from-risk-to-advantage"><strong>Moving from Risk to Advantage</strong></h3>



<p>An immature SQL Server environment costs more than it saves. The good news is that maturity is a journey, and every step forward reduces risk, improves compliance, and frees up resources for growth.</p>



<p>Want to go deeper on this topic? <a href="https://youtu.be/ml12K6kWMaY" target="_blank" rel="noreferrer noopener">Watch the recording of our recent webinar, Navigating the SQL Server Maturity Curve</a>. We walk you through the four stages of maturity, what each means for banks, and how to take practical next steps.</p>



<figure class="wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<div class='embed-container'><iframe title="Navigating the SQL Server Maturity Curve" width="1920" height="1080" src="https://www.youtube.com/embed/ml12K6kWMaY?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></div>
</div></figure>



<h3 class="wp-block-heading" id="h-final-thought">Final Thought</h3>



<p>You don’t have to settle for firefighting, untested backups, or audit surprises. With the right approach, your SQL Server environment can shift from being a hidden liability to a true business enabler.</p>
<p>The post <a href="https://theserogroup.com/sql-server/5-signs-your-sql-server-environment-is-immature-and-how-banks-can-reduce-risk/">5 Signs Your SQL Server Environment Is Immature (and How Banks Can Reduce Risk)</a> appeared first on <a href="https://theserogroup.com">The SERO Group</a>.</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">7579</post-id>	</item>
		<item>
		<title>What My Mountain Biking Backpack Taught Me About SQL Server Management</title>
		<link>https://theserogroup.com/sql-server/what-my-mountain-biking-backpack-taught-me-about-sql-server-management/</link>
		
		<dc:creator><![CDATA[Joe Webb]]></dc:creator>
		<pubDate>Wed, 17 Sep 2025 12:00:23 +0000</pubDate>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[Database Administration]]></category>
		<category><![CDATA[IT Manager]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[SQL Audit]]></category>
		<category><![CDATA[SQL Server Management]]></category>
		<guid isPermaLink="false">https://theserogroup.com/?p=7561</guid>

					<description><![CDATA[<p>Last weekend, I hit the trails for a mountain bike ride. As I was packing my gear, it struck me how my pre-ride preparation is similar to managing our banking clients&#8217; SQL Server environment. Both require the right tools, proper planning, and backup systems when things go wrong. The Essential Backpack: Your SQL Server Toolkit&#8230; <br /> <a class="read-more" href="https://theserogroup.com/sql-server/what-my-mountain-biking-backpack-taught-me-about-sql-server-management/">Read more</a></p>
<p>The post <a href="https://theserogroup.com/sql-server/what-my-mountain-biking-backpack-taught-me-about-sql-server-management/">What My Mountain Biking Backpack Taught Me About SQL Server Management</a> appeared first on <a href="https://theserogroup.com">The SERO Group</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>Last weekend, I hit the trails for a mountain bike ride. As I was packing my gear, it struck me how my pre-ride preparation is similar to managing our banking clients&#8217; SQL Server environment. Both require the right tools, proper planning, and backup systems when things go wrong.</p>



<h2 class="wp-block-heading">The Essential Backpack: Your SQL Server Toolkit</h2>



<p>Just like I never hit the trails without my backpack, you shouldn’t manage SQL Server without the right tools. My pack contains everything I might need during a ride—and your SQL environment needs the same thoughtful preparation.</p>



<p><strong>Water Supply = Maintenance Plans</strong>.&nbsp;The water in my pack keeps me hydrated throughout the ride. In SQL Server, your maintenance plans serve the same vital function. They keep your databases healthy with regular backups, statistics maintenance, and consistency checks. Without proper hydration on the trail, I&#8217;ll struggle. Without solid maintenance plans, your database performance will suffer just as much.</p>



<p><strong>First Aid Kit = Disaster Recovery Plan</strong>. As a former Scoutmaster, the motto “Be prepared” is still deeply ingrained in my perspective. I always carry a robust first-aid kit, including bandages, antiseptic, a SAM Splint, and other emergency supplies. Hopefully, I never need them, but when disaster strikes on a remote trail, that first aid kit becomes invaluable. Your DR plan works exactly the same way. You invest time creating restore procedures, testing failover scenarios, and documenting recovery steps. When a disk fails or corruption hits, that preparation saves the day. Hopefully you never need it, but if you do, you’ll be prepared.</p>



<h2 class="wp-block-heading">Pre-Ride Check: Your Daily Monitoring Routine</h2>



<p>Before every ride, I check tire pressure, brake function, and chain lubrication. This five-minute routine prevents many mechanical issues. Similarly, your daily SQL Server health checks catch problems before they impact users.</p>



<p><strong>Strava App = Monitoring Tools.</strong>&nbsp;My Strava app tracks distance, elevation, time, and speed throughout the ride. It tracks trends, provides insights, and even predicts finish times. Your SQL monitoring tools serve the same purpose. They help track query performance, disk usage, and resource consumption. When something&#8217;s trending in the wrong direction, you get alerts before users start complaining.</p>



<h2 class="wp-block-heading">The Right Tools for the Job</h2>



<p>In mountain biking and in SQL Server, you need the right tools and the right resources to be successful.</p>



<p>My backpack toolkit includes a multi-tool, spare tubes, and a mini pump. Each is designed to help with specific problems I might encounter miles from the trailhead. Your SQL toolkit should be equally comprehensive: scripts for common tasks, backup utilities, performance analysis tools, and emergency procedures.</p>



<p>And, of course, I never ride without my phone. It can be a lifeline should I get stranded or worse, go OTB (over the bars). Likewise, your team needs to have someone to call when your key system has problems. Sure, they can Google for answers, but it’s far better to have an expert in the industry readily available to help.</p>



<h2 class="wp-block-heading">Plan for Success</h2>



<p>The key insight? Both mountain biking and database management require proactive thinking. Reactive approaches lead to painful experiences, whether you&#8217;re walking your bike home on a flat tire or explaining to executives why the core banking system is down.</p>



<p>After all, both mountain biking and database management are about reducing risk while maintaining peak performance. The difference is that when your SQL Server crashes, you can&#8217;t just walk home.</p>



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



<p>Don&#8217;t let database surprises derail your operations. The SERO Group specializes in helping financial services organizations build resilient SQL Server environments that perform when it matters most. Ready to strengthen your database infrastructure? <a href="https://theserogroup.com/contact-us/">Get started with a complimentary consultation</a>.</p>
<p>The post <a href="https://theserogroup.com/sql-server/what-my-mountain-biking-backpack-taught-me-about-sql-server-management/">What My Mountain Biking Backpack Taught Me About SQL Server Management</a> appeared first on <a href="https://theserogroup.com">The SERO Group</a>.</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">7561</post-id>	</item>
		<item>
		<title>SQL Server Managed Services: A CFO-Ready Business Case</title>
		<link>https://theserogroup.com/sql-server/sql-server-managed-services-a-cfo-ready-business-case/</link>
		
		<dc:creator><![CDATA[Joe Webb]]></dc:creator>
		<pubDate>Wed, 06 Aug 2025 12:00:19 +0000</pubDate>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[Database Administration]]></category>
		<category><![CDATA[Database Development]]></category>
		<category><![CDATA[IT Manager]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[SQL Consultant]]></category>
		<category><![CDATA[SQL Security]]></category>
		<category><![CDATA[SQL Server Consultant]]></category>
		<category><![CDATA[SQL Server Management]]></category>
		<guid isPermaLink="false">https://theserogroup.com/?p=7523</guid>

					<description><![CDATA[<p>SQL Server is mission-critical to your business. However, maintaining performance, reliability, security, and compliance demands ongoing attention and specialized expertise. SQL Server managed services can provide valuable support in these areas. Still, even if your technical team sees the need, it can be tough to make the business case to your CFO. Since managed services&#8230; <br /> <a class="read-more" href="https://theserogroup.com/sql-server/sql-server-managed-services-a-cfo-ready-business-case/">Read more</a></p>
<p>The post <a href="https://theserogroup.com/sql-server/sql-server-managed-services-a-cfo-ready-business-case/">SQL Server Managed Services: A CFO-Ready Business Case</a> appeared first on <a href="https://theserogroup.com">The SERO Group</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>SQL Server is mission-critical to your business. However, maintaining performance, reliability, security, and compliance demands ongoing attention and specialized expertise. SQL Server managed services can provide valuable support in these areas.</p>



<p>Still, even if your technical team sees the need, it can be tough to make the business case to your CFO. Since managed services would be an ongoing investment, how do you best convey their value?</p>



<p>Here’s how to frame that conversation to maximize your odds of getting buy-in from financial leadership.</p>



<h3 class="wp-block-heading" id="h-1-start-with-the-business-impact-not-the-tech">1. Start With the Business Impact, Not the Tech</h3>



<p>CFOs think in terms of financial risk, cost control, and business outcomes. So instead of leading with patching, query tuning, or Always On configuration, focus on:</p>



<ul class="wp-block-list">
<li>Avoiding costly downtime</li>



<li>Reducing licensing waste</li>



<li>Freeing up internal staff for higher-value work</li>



<li>Protecting customer data and ensuring compliance</li>
</ul>



<p><em>Example: “We had 4 hours of unplanned SQL Server downtime last year, which impacted billing, customer support, and payroll processing. Managed services would help us avoid that kind of disruption.”</em></p>



<h3 class="wp-block-heading" id="h-2-quantify-the-cost-of-doing-nothing">2. Quantify the Cost of Doing Nothing</h3>



<p>IT leaders often struggle to justify costs because the risk feels abstract. Make it real by putting numbers to:</p>



<ul class="wp-block-list">
<li><strong>Cost of downtime: </strong>How much are lost productivity and missed revenue costing you during each outage?</li>



<li><strong>Opportunity cost: </strong>What projects are delayed because your team is busy firefighting?</li>



<li><strong>Audit and compliance penalties: </strong>Noncompliance with data protection rules (e.g., SOX, HIPAA) can get expensive fast.</li>
</ul>



<p>If you&#8217;re not sure where to start, consider a health check or audit to quantify current gaps and risks. These numbers can make a compelling case.</p>



<h3 class="wp-block-heading" id="h-3-emphasize-cost-efficiency-over-hiring">3. Emphasize Cost Efficiency Over Hiring</h3>



<p>Hiring a full-time SQL Server DBA can cost over $120,000 per year between salary, benefits, and overhead. Even after this substantial investment, you&#8217;d still have only one person managing all of your business&#8217;s needs.</p>



<p>With managed services, you get a team of SQL Server experts for a fraction of the cost of building that capability in-house. That includes:</p>



<ul class="wp-block-list">
<li>24/7 monitoring and alert response</li>



<li>Proactive maintenance</li>



<li>Performance tuning</li>



<li>Disaster recovery support</li>



<li>License optimization</li>
</ul>



<p>It’s not just cheaper—it’s more scalable and more reliable.</p>



<h3 class="wp-block-heading" id="h-4-show-that-it-s-more-than-emergency-help">4. Show That It’s More Than Emergency Help</h3>



<p>Many CFOs assume managed services are only about putting out fires. Make sure they understand that  SQL Server managed services also work proactively. Here are a few examples of ways to highlight the potential benefits to your business:</p>



<ul class="wp-block-list">
<li>Preventive maintenance reduces long-term costs.</li>



<li>Regular reviews help improve system performance.</li>



<li>Guidance on upgrades, cloud strategy, and license optimization saves money over time.</li>
</ul>



<h3 class="wp-block-heading" id="h-5-tie-it-to-business-continuity">5. Tie It to Business Continuity</h3>



<p>When SQL Server goes down, so does the business, and CFOs understand the financial impact of disruption. Managed services ensure that:</p>



<ul class="wp-block-list">
<li>Your backups are actually restorable.</li>



<li>Failover mechanisms are in place and tested.</li>



<li>RPOs and RTOs align with business expectations.</li>
</ul>



<p>That kind of readiness can make or break a company in a crisis.</p>



<h3 class="wp-block-heading" id="h-6-provide-a-clear-roi-narrative">6. Provide a Clear ROI Narrative</h3>



<p>It can help to build a before-and-after picture:</p>



<ul class="wp-block-list">
<li><strong>Before: </strong>unplanned downtime, poor performance, reactive fixes</li>



<li><strong>After: </strong>stability, predictability, reduced risk</li>
</ul>



<p>Highlight cost savings from:</p>



<ul class="wp-block-list">
<li>Consolidating underused instances</li>



<li>Reducing overprovisioned licenses</li>



<li>Avoiding emergency consulting fees</li>
</ul>



<p>Then, present it using the CFO’s language: predictable monthly spend, reduced risk exposure, and higher operational efficiency.</p>



<h3 class="wp-block-heading" id="h-7-offer-a-pilot-or-assessment">7. Offer a Pilot or Assessment</h3>



<p>If your CFO is hesitant, suggest a low-risk starting point:</p>



<ul class="wp-block-list">
<li>A fixed-fee health check</li>



<li>A short-term pilot engagement</li>



<li>A time-boxed cost optimization review</li>
</ul>



<p>This allows them to see the value for themselves before committing.</p>



<h2 class="wp-block-heading" id="h-why-your-cfo-might-say-yes"><strong>Why Your CFO Might Say Yes</strong></h2>



<p>SQL Server managed services aren’t just an IT expense—they’re a strategic investment in uptime, security, and efficiency. When you frame the conversation in terms your CFO cares about—cost, risk, and business continuity—you’ll be much more likely to get buy-in.</p>



<p>Need help quantifying the value for your team? <a href="https://theserogroup.com/contact-us/#schedule-a-call" target="_blank" rel="noreferrer noopener">Let&#8217;s talk</a>.</p>
<p>The post <a href="https://theserogroup.com/sql-server/sql-server-managed-services-a-cfo-ready-business-case/">SQL Server Managed Services: A CFO-Ready Business Case</a> appeared first on <a href="https://theserogroup.com">The SERO Group</a>.</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">7523</post-id>	</item>
	</channel>
</rss>
