<?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>Database Development Archives - The SERO Group</title>
	<atom:link href="https://theserogroup.com/tag/database-development/feed/" rel="self" type="application/rss+xml" />
	<link>https://theserogroup.com/tag/database-development/</link>
	<description>SQL Servers Healthy, Secure, And Reliable</description>
	<lastBuildDate>Tue, 20 Jan 2026 19:40:14 +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>Database Development Archives - The SERO Group</title>
	<link>https://theserogroup.com/tag/database-development/</link>
	<width>32</width>
	<height>32</height>
</image> 
<site xmlns="com-wordpress:feed-additions:1">121220030</site>	<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>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>SQL Server Maturity Curve: How Banks Move from Reactive Risk to Strategic Advantage</title>
		<link>https://theserogroup.com/data-strategy/sql-server-maturity-curve-how-banks-move-from-reactive-risk-to-strategic-advantage/</link>
		
		<dc:creator><![CDATA[Joe Webb]]></dc:creator>
		<pubDate>Wed, 29 Oct 2025 12:00:56 +0000</pubDate>
				<category><![CDATA[Data Strategy]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[Database Administration]]></category>
		<category><![CDATA[Database Development]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[SQL Assessment]]></category>
		<category><![CDATA[SQL Audit]]></category>
		<category><![CDATA[SQL Consultant]]></category>
		<category><![CDATA[SQL Security]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[SQL Server Consultant]]></category>
		<category><![CDATA[SQL Server Management]]></category>
		<guid isPermaLink="false">https://theserogroup.com/?p=7600</guid>

					<description><![CDATA[<p>When I talk with companies, whether they be community banks or healthcare companies, about their SQL Server environments, I find that most aren’t intentionally and proactively managing their SQL Server environment&#8211;they’re reacting to it. Things run fine until they don’t. Then, suddenly, IT teams are dealing with performance issues, failed backups, or questions from auditors&#8230; <br /> <a class="read-more" href="https://theserogroup.com/data-strategy/sql-server-maturity-curve-how-banks-move-from-reactive-risk-to-strategic-advantage/">Read more</a></p>
<p>The post <a href="https://theserogroup.com/data-strategy/sql-server-maturity-curve-how-banks-move-from-reactive-risk-to-strategic-advantage/">SQL Server Maturity Curve: How Banks Move from Reactive Risk to Strategic Advantage</a> appeared first on <a href="https://theserogroup.com">The SERO Group</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>When I talk with companies, whether they be community banks or healthcare companies, about their SQL Server environments, I find that most aren’t intentionally and proactively managing their SQL Server environment&#8211;they’re reacting to it. Things run fine until they don’t. Then, suddenly, IT teams are dealing with performance issues, failed backups, or questions from auditors that need answers.</p>



<p>A reactive approach may get you through the day, but it doesn’t build long-term stability, security, or confidence.</p>



<h3 class="wp-block-heading" id="h-what-is-the-sql-server-maturity-curve">What is the SQL Server Maturity Curve?</h3>



<p>Over the years, we’ve found that every SQL Server environment naturally falls somewhere along a <strong>maturity curve</strong>. Understanding where your SQL Server environment is today and where you want it to be helps you move from firefighting to foresight. SQL Server maturity can be best understood in four stages: <strong>reactive, managed, optimized, and strategic.</strong></p>



<figure class="wp-block-image size-large"><a href="https://theserogroup.com/wp-content/uploads/2025/10/sql_server_maturity_curve.png"><img decoding="async" width="1024" height="614" src="https://theserogroup.com/wp-content/uploads/2025/10/sql_server_maturity_curve-1024x614.png" alt="The SQL Server Maturity Curve" class="wp-image-7602" srcset="https://theserogroup.com/wp-content/uploads/2025/10/sql_server_maturity_curve-1024x614.png 1024w, https://theserogroup.com/wp-content/uploads/2025/10/sql_server_maturity_curve-300x180.png 300w, https://theserogroup.com/wp-content/uploads/2025/10/sql_server_maturity_curve-768x461.png 768w, https://theserogroup.com/wp-content/uploads/2025/10/sql_server_maturity_curve-1536x922.png 1536w, https://theserogroup.com/wp-content/uploads/2025/10/sql_server_maturity_curve-1800x1080.png 1800w, https://theserogroup.com/wp-content/uploads/2025/10/sql_server_maturity_curve.png 2000w" sizes="(max-width: 1024px) 100vw, 1024px" /></a></figure>



<p>Let&#8217;s look at each stage.</p>



<h4 class="wp-block-heading" id="h-1-reactive-firefighting"><strong>1. Reactive: Firefighting</strong></h4>



<p>At the lowest level of maturity, we have what we call the <strong>reactive stage</strong>. This is where SQL Server environments are managed more in a ‘break/fix’ mode. Something goes wrong—an outage, a performance issue, maybe even a regulatory problem—and the team jumps in to fix it. Since the problem usually catches them by surprise, they then have to spend time figuring out how to address the issue before they can start to fix it. </p>



<p>Banks in this stage tend to rely heavily on manual processes and have very little automation in place. There might be some monitoring, but it’s often not tailored to SQL Server and effectively too generic (maybe something like SolarWinds Orion). So, leaders don’t have a clear picture of what’s healthy, what’s risky, or what’s about to break.</p>



<p>A second indicator for this stage is an environment where no one person is truly accountable for SQL Server. It’s a shared responsibility, which really means no one’s watching it closely. It’s just one of many systems all lumped in together. In these environments, small problems slip through the cracks until they turn into something big.</p>



<p>A third indication is the assumption that the vendor or core provider is handling all necessary SQL Server maintenance. In reality, they’re not watching it nearly as closely as the bank thinks they are.</p>



<p>From a business standpoint, this leads to high operational costs, more regulatory findings, and frustrated employees and customers when things go down.</p>



<p>Most of the SQL-related budget at this stage goes toward putting out fires instead of preventing them. Unfortunately, this is still where a lot of community banks find themselves today—operating in a reactive state, vulnerable to risk, and always one incident away from disruption.</p>



<h4 class="wp-block-heading"><strong>2. Managed: Gaining Control</strong></h4>



<p>The next stage up in the curve is the <strong>managed stage</strong>. In this stage banks start putting some structure in place.</p>



<p>Backups are running consistently. And I know what you might be thinking: ‘Of course they are.’ But you’d be surprised how often we hear that, only to find something very different once we dig in during an SQL Health Check.</p>



<p>Monitoring is usually turned on so the team gets alerted before things get out of hand, and patching is scheduled instead of done haphazardly.</p>



<p>You’ve probably heard the phrase people, processes, and technology. At this stage, banks are making solid progress on two of those: processes and technology. And there’s usually someone in IT who’s been given responsibility for SQL Server, though it’s often just one of the many things they take care of.</p>



<p>But the results are noticeable. Incidents are happening less often, performance is steadier, and compliance is easier to manage. There’s even some separation of duties starting to take shape.</p>



<p>Here, most of the SQL-related budget is still going toward maintenance, but now, instead of pure firefighting, a little bit of that time and money is shifting toward planning and improvement.</p>



<p>So the managed stage is a big step forward. Things are more stable, there are fewer surprises, and the environment is definitely safer. But it’s still not efficient—and it’s not yet resilient. That’s usually when the question shifts from ‘Are we stable?’ to ‘How can we do this better?’</p>



<h4 class="wp-block-heading"><strong>3. Optimized: Running Proactively</strong></h4>



<p>Third is the <strong>optimized stage</strong>; things start to look and feel different. We’re no longer spending most of our time just keeping the lights on; the focus shifts from maintenance to <em>efficiency</em>.</p>



<p>Routine tasks like backups and testing the backups, patching, and monitoring are automated and standardized across the SQL Server environment. The team’s not reinventing the wheel on every server anymore. Builds are standardized and perhaps even automated.</p>



<p>Performance is managed <em>proactively</em>—indexes, queries, and resource usage are being reviewed on a regular basis. The bank finally has real visibility into capacity, performance trends, and risks over time.</p>



<p>And all that optimization pays off literally.</p>



<p>At this stage, banks start saving real money. They’re doing proactive performance tuning, right-sizing their environments, and consolidating where it makes sense. That means fewer servers, lower licensing costs, and less wasted hardware.</p>



<p>We worked with one client who was able to save about $2,000 a month—$24,000 a year—on just one of their Azure SQL Servers, simply by tuning and optimizing the setup.</p>



<p>And another bank we work with was able to cut their SQL footprint in half through consolidation and decommissioning efforts. That saves on licensing costs, management costs, etc.</p>



<p>But it’s not <em>just</em> about cost savings. This is also where security gets stronger. Misconfigurations get closed off, permissions are tightened, and the environment starts aligning with best practices like the CIS benchmarks and the principle of least privilege.</p>



<p>The payoff is easy to see. Customers experience faster, more reliable systems. Inside the bank, IT teams aren’t scrambling to fix the latest outage—they’re staying ahead of it. They identify and resolve issues before they impact operations or audits. SQL Server becomes a reliable foundation that actively supports business goals.</p>



<h4 class="wp-block-heading" id="h-4-strategic-turning-data-into-advantag-e"><strong>4. Strategic: Turning Data into Advantag</strong>e</h4>



<p>In the final stage, the <strong>strategic stage</strong>, SQL Server isn’t just stable or secure; it’s <em>resilient by design.</em></p>



<p>High availability is built in. Disaster recovery plans aren’t just written; they’re tested and refined. Security is strong and consistent across the environment, and compliance isn’t something the team scrambles to prove once a year; it’s woven into daily operation.</p>



<p>Auditing and monitoring tools are in place. There’s clear separation of duties. And reporting infrastructure is mature enough to shift workloads where they make the most sense.</p>



<p>But what really sets this stage apart is how <strong>SQL Server starts to enable the business.</strong></p>



<p>At this point, it’s not just about avoiding risk; it’s about driving strategy.</p>



<p>Data becomes a competitive advantage. Executives have access to real-time insights through analytics and reporting. They can spot trends, understand customer behavior, and make better decisions—faster.</p>



<p>And IT? It’s no longer seen as a cost center. It’s a business enabler—helping drive efficiency, innovation, and growth.</p>



<h3 class="wp-block-heading"><strong>Moving Up the Curve</strong></h3>



<p>Wherever your institution is today, the goal isn’t perfection overnight. It’s steady progress. Moving even one stage up the maturity curve can dramatically reduce risk, improve audit readiness, and free up your team to focus on higher-value initiatives.</p>



<p>The key is to be intentional, to assess, document, and continually refine your SQL Server management practices.</p>



<p>Because in business, in banking, and in healthcare, SQL Server maturity isn’t just an IT milestone; it’s a business advantage.</p>



<h3 class="wp-block-heading" id="h-further-resources"><strong>Further Resources</strong></h3>



<ul class="wp-block-list">
<li>Curious where your environment stands today? We’ve created a short <strong><a href="https://40117694.fs1.hubspotusercontent-na1.net/hubfs/40117694/SERO_SQL_Server_Maturity_Checklist.pdf">SQL Server Maturity Checklist</a></strong> to help you identify which stage your organization is in and where to focus next. It’s a quick, practical way to assess your current practices and start planning your path forward. <a href="https://40117694.fs1.hubspotusercontent-na1.net/hubfs/40117694/SERO_SQL_Server_Maturity_Checklist.pdf" target="_blank" rel="noreferrer noopener">Download the SQL Server Maturity Checklist</a> to see where you stand and how to move from risk to advantage.</li>
</ul>



<ul class="wp-block-list">
<li>For a deeper dive on this subject, you can watch our <a href="https://youtu.be/ml12K6kWMaY"><strong>free, on-demand webinar, “Navigating the SQL Server Maturity Curve,”</strong></a> on YouTube.</li>
</ul>



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



<p>If your SQL Server environment feels more reactive than strategic, or if you’re ready to strengthen reliability, improve security, and become more audit-ready, we can help.</p>



<p>We specialize in helping institutions move up the SQL Server maturity curve with proven processes and a proactive approach. Let’s start a conversation about where you are today and where you want to be. <a href="https://theserogroup.com/contact-us/" target="_blank" rel="noreferrer noopener">Schedule a brief call</a> with us today. </p>
<p>The post <a href="https://theserogroup.com/data-strategy/sql-server-maturity-curve-how-banks-move-from-reactive-risk-to-strategic-advantage/">SQL Server Maturity Curve: How Banks Move from Reactive Risk to Strategic Advantage</a> appeared first on <a href="https://theserogroup.com">The SERO Group</a>.</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">7600</post-id>	</item>
		<item>
		<title>4 Key Performance Benefits of Enabling Query Store</title>
		<link>https://theserogroup.com/dba/4-key-performance-benefits-of-enabling-query-store/</link>
		
		<dc:creator><![CDATA[Lee Markum]]></dc:creator>
		<pubDate>Wed, 15 Oct 2025 12:00:00 +0000</pubDate>
				<category><![CDATA[DBA]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[Database Administration]]></category>
		<category><![CDATA[Database Development]]></category>
		<category><![CDATA[IT Manager]]></category>
		<category><![CDATA[Query Store]]></category>
		<category><![CDATA[Script Library]]></category>
		<category><![CDATA[Sero]]></category>
		<category><![CDATA[Sero Group]]></category>
		<category><![CDATA[Serogroup]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[SQL Consultant]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[SQL Server Consultant]]></category>
		<category><![CDATA[SQL Server Management]]></category>
		<category><![CDATA[The Sero Group]]></category>
		<guid isPermaLink="false">https://theserogroup.com/?p=7565</guid>

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



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



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



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



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



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



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



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



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



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



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



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



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



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



<p>Want to learn more about how The SERO Group helps organizations take the guesswork out of managing their SQL Servers? <a href="https://theserogroup.com/contact-us/" target="_blank" rel="noreferrer noopener">Schedule a no-obligation discovery call</a>&nbsp;with us to get started.</p>
<p>The post <a href="https://theserogroup.com/dba/4-key-performance-benefits-of-enabling-query-store/">4 Key Performance Benefits of Enabling Query Store</a> appeared first on <a href="https://theserogroup.com">The SERO Group</a>.</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">7565</post-id>	</item>
		<item>
		<title>Webinar: Where Is Your Bank on the Risk-to-Advantage Spectrum?</title>
		<link>https://theserogroup.com/events/where-is-your-bank-on-the-risk-to-advantage-spectrum/</link>
		
		<dc:creator><![CDATA[Joe Webb]]></dc:creator>
		<pubDate>Wed, 03 Sep 2025 12:00:03 +0000</pubDate>
				<category><![CDATA[Events]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[Database Administration]]></category>
		<category><![CDATA[Database Development]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[SQL Events]]></category>
		<category><![CDATA[SQL Security]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[SQL Server Management]]></category>
		<guid isPermaLink="false">https://theserogroup.com/?p=7546</guid>

					<description><![CDATA[<p>Updated: November 3, 2025: Missed the live event? You can now watch the full recording on our YouTube channel. Why SQL Server Maturity Matters In banking, SQL Server isn’t just a technology platform—it’s the backbone of customer trust, regulatory compliance, and operational resilience. But many institutions operate in reactive, risk-heavy environments that lead to outages,&#8230; <br /> <a class="read-more" href="https://theserogroup.com/events/where-is-your-bank-on-the-risk-to-advantage-spectrum/">Read more</a></p>
<p>The post <a href="https://theserogroup.com/events/where-is-your-bank-on-the-risk-to-advantage-spectrum/">Webinar: Where Is Your Bank on the Risk-to-Advantage Spectrum?</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-updated-november-3-2025-missed-the-live-event-you-can-now-watch-the-full-recording-on-our-youtube-channel"><em>Updated: November 3, 2025: </em>Missed the live event? You can now watch <a href="https://youtu.be/ml12K6kWMaY" target="_blank" rel="noreferrer noopener">the full recording</a> on our YouTube channel.</h3>



<h3 class="wp-block-heading">Why SQL Server Maturity Matters</h3>



<p>In banking, SQL Server isn’t just a technology platform—it’s the backbone of customer trust, regulatory compliance, and operational resilience. But many institutions operate in reactive, risk-heavy environments that lead to outages, security gaps, and missed opportunities.</p>



<p>Our webinar introduced the SQL Server Maturity Curve, a framework that helps banks understand where they are today and how to move from risk-prone management to proactive, business-enabling excellence.</p>



<h3 class="wp-block-heading">What You’ll Learn</h3>



<h4 class="wp-block-heading" id="h-the-four-stages-of-sql-server-maturity"><strong>The Four Stages of SQL Server Maturity</strong></h4>



<ul class="wp-block-list">
<li>Reactive (High Risk): Frequent outages and compliance vulnerabilities.</li>



<li>Managed (Controlled Risk): Basic monitoring for acceptable performance.</li>



<li>Optimized (Competitive Edge): Proactive management for reliability and scalability.</li>



<li>Strategic (Business Enabler): Databases as drivers of growth and innovation.</li>
</ul>



<h4 class="wp-block-heading" id="h-financial-impact"><strong>Financial Impact</strong></h4>



<ul class="wp-block-list">
<li>Hidden costs of downtime and data breaches.</li>



<li>ROI models for investing in maturity.</li>



<li>Budget planning frameworks that align with long-term goals.</li>
</ul>



<h4 class="wp-block-heading" id="h-risk-amp-compliance"><strong>Risk &amp; Compliance</strong></h4>



<ul class="wp-block-list">
<li>How database maturity affects FFIEC, GLBA, and other regulatory requirements.</li>



<li>Governance and audit readiness strategies.</li>



<li>Building resilient infrastructure to ensure business continuity.</li>
</ul>



<h4 class="wp-block-heading" id="h-strategic-roadmap"><strong>Strategic Roadmap</strong></h4>



<ul class="wp-block-list">
<li>Tools to assess your current maturity stage.</li>



<li>How to prioritize the right next steps.</li>



<li>Resource allocation strategies to minimize disruption.</li>
</ul>



<h3 class="wp-block-heading" id="h-who-should-watch">Who Should Watch?</h3>



<p>This session is tailored for:</p>



<ul class="wp-block-list">
<li>CIOs and IT Executives</li>



<li>VP of Information Technology</li>



<li>Directors of Infrastructure</li>



<li>Database Administrators with strategic influence</li>



<li>Risk Management and Compliance Officers</li>
</ul>



<h3 class="wp-block-heading">Why This Webinar?</h3>



<p>This wasn’t a tactical training—it’s a strategic briefing for leaders who want to understand the financial and regulatory impact of their SQL Server maturity. You’ll gain clarity on your institution’s current state and a roadmap to move from risk to advantage. We hope you&#8217;ll enjoy this high-value webinar and please <a href="https://theserogroup.com/contact-us/#schedule-a-call" target="_blank" rel="noreferrer noopener">reach out to us</a> if you have any questions.</p>
<p>The post <a href="https://theserogroup.com/events/where-is-your-bank-on-the-risk-to-advantage-spectrum/">Webinar: Where Is Your Bank on the Risk-to-Advantage Spectrum?</a> appeared first on <a href="https://theserogroup.com">The SERO Group</a>.</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">7546</post-id>	</item>
		<item>
		<title>5 SQL Server Security Priorities Every Bank CIO Must Address</title>
		<link>https://theserogroup.com/data-security/5-sql-server-security-priorities-every-bank-cio-must-address/</link>
		
		<dc:creator><![CDATA[Joe Webb]]></dc:creator>
		<pubDate>Wed, 20 Aug 2025 12:00:10 +0000</pubDate>
				<category><![CDATA[Data Security]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[Database Administration]]></category>
		<category><![CDATA[Database Development]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[SQL Events]]></category>
		<category><![CDATA[SQL Security]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[SQL Server Management]]></category>
		<guid isPermaLink="false">https://theserogroup.com/?p=7535</guid>

					<description><![CDATA[<p>If you’re a new CIO at a bank or financial institution, chances are your organization relies heavily on Microsoft SQL Server. From core banking systems to regulatory data, SQL Server often holds your most critical and most targeted information. However, over time, many SQL Server environments quietly drift out of alignment with security best practices.&#8230; <br /> <a class="read-more" href="https://theserogroup.com/data-security/5-sql-server-security-priorities-every-bank-cio-must-address/">Read more</a></p>
<p>The post <a href="https://theserogroup.com/data-security/5-sql-server-security-priorities-every-bank-cio-must-address/">5 SQL Server Security Priorities Every Bank CIO Must Address</a> appeared first on <a href="https://theserogroup.com">The SERO Group</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>If you’re a new CIO at a bank or financial institution, chances are your organization relies heavily on Microsoft SQL Server. From core banking systems to regulatory data, SQL Server often holds your most critical and most targeted information.</p>



<p>However, over time, many SQL Server environments quietly drift out of alignment with security best practices. Configurations age. Backups go untested. Access privileges expand without oversight. Multiple vendors are granted elevated access. And without a clear owner, risks grow quietly until something breaks.</p>



<h2 class="wp-block-heading" id="h-5-sql-server-security-actions-to-take">5 SQL Server Security Actions to Take</h2>



<p>Here are five simple, high-impact actions you can take to reduce SQL Server risk and strengthen your institution’s security posture:</p>



<h3 class="wp-block-heading" id="h-1-know-what-sql-servers-you-actually-have"><strong>1. Know What SQL Servers You Actually Have</strong></h3>



<p>Untracked or “orphaned” SQL Server instances are more common than you think. Over time, shadow IT, legacy systems, or test environments can go unnoticed. As CIO, make sure you have an up-to-date inventory of all SQL Server instances. Get a comprehensive list, along with who’s responsible for maintaining each one.</p>



<h3 class="wp-block-heading"><strong>2. Review Who Has Access—and Why</strong></h3>



<p>Access control is one of your biggest areas of exposure. Application vendors often want elevated permissions, especially during the initial installation. Developers or business analysts may have been granted elevated permissions in the past to troubleshoot a query for an important report. The same is true for data engineers.</p>



<p>To check just how many hands are in the cookie jar, ask your team to provide a list of:</p>



<ul class="wp-block-list">
<li>All logins with sysadmin or elevated privileges</li>



<li>All databases owned by someone other than sa or another designated account</li>



<li>Any use of shared or generic SQL accounts</li>
</ul>



<p>Restrict access to only what users need, and tie access to individual, auditable accounts.</p>



<h3 class="wp-block-heading" id="h-3-make-sure-backups-are-encrypted-and-verified"><strong>3. Make Sure Backups Are Encrypted</strong> and Verified</h3>



<p>A backup strategy isn’t just about having copies of your data—it’s about knowing those backups will work when you need them most. Ask your team how often backups are tested and whether they’re encrypted. Encryption ensures that sensitive financial data isn’t exposed if backup files fall into the wrong hands. </p>



<p>Equally important is regular verification using tools like RESTORE VERIFYONLY or full restore tests and integrity checks. A corrupted or incomplete backup doesn’t help you during a crisis. </p>



<p>Confirm there’s a clear retention policy in place that aligns with regulatory and business requirements. Backup success logs should be reviewed, and failed jobs should never go unnoticed. Don’t wait until something breaks to find out your recovery plan has holes.</p>



<p>Ask your team:</p>



<ul class="wp-block-list">
<li>Are backups encrypted to protect sensitive data?</li>



<li>Are they tested regularly using tools like VERIFYONLY or, better yet, with complete test restores followed by an integrity check?</li>



<li>What’s the retention policy, and is it enforced?</li>
</ul>



<p>One bad backup can turn a small incident into a costly disaster.</p>



<h3 class="wp-block-heading" id="h-4-confirm-that-audit-logs-are-running-and-secure"><strong>4. Confirm That Audit Logs Are Running and Secure</strong></h3>



<p>Audit logs can be an invaluable tool for spotting suspicious activity and proving compliance. However, since audit logs are helpful only if they’re complete, accessible, and protected, make sure that:</p>



<ul class="wp-block-list">
<li><strong>Auditing is enabled</strong> on all production servers.</li>



<li>Logs are <strong>stored securely and encrypted</strong>.</li>



<li>Someone is <strong>reviewing logs regularly</strong> to flag unusual activity.</li>
</ul>



<h3 class="wp-block-heading"><strong>5. Assign Clear Ownership for SQL Server Security</strong></h3>



<p>Securing your SQL Server is a key component of a multi-layered approach to security. But SQL Server security isn’t a “set it and forget it” project. It needs ongoing attention. </p>



<p>If your team doesn’t have a dedicated DBA, consider bringing in outside help. A trusted SQL Server partner (like The SERO Group) can help you monitor, maintain, and secure your environment without adding headcount.</p>



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



<p>SQL Server often holds your institution’s most sensitive data. These five actions can help improve your data security posture and reduce risk. </p>



<p>If you’re unsure where your SQL Server environment stands, or if your team is simply stretched too thin, we can help. </p>



<p>At The SERO Group, we specialize in helping banks and financial institutions reduce risk, improve reliability, and maintain compliance without the cost of a full-time DBA. Let’s schedule a quick call to talk through your current setup and see where we can support you. <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/data-security/5-sql-server-security-priorities-every-bank-cio-must-address/">5 SQL Server Security Priorities Every Bank CIO Must Address</a> appeared first on <a href="https://theserogroup.com">The SERO Group</a>.</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">7535</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>
		<item>
		<title>SQL Server Disaster Recovery: 6 Ways to Stress-Test Your Plan</title>
		<link>https://theserogroup.com/sql-server/sql-server-disaster-recovery-6-ways-to-stress-test-your-plan/</link>
		
		<dc:creator><![CDATA[Joe Webb]]></dc:creator>
		<pubDate>Wed, 02 Jul 2025 12:00:00 +0000</pubDate>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[Database Administration]]></category>
		<category><![CDATA[Database Development]]></category>
		<category><![CDATA[IT Manager]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[SQL 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=7513</guid>

					<description><![CDATA[<p>If disaster struck your data center right now, how quickly—and how cleanly—could your SQL Server environment recover? It’s a question too many teams avoid until it’s too late. But between rising cybersecurity threats, growing compliance expectations, and increasing reliance on real-time data, a solid SQL Server disaster recovery (DR) plan is no longer optional. Here’s&#8230; <br /> <a class="read-more" href="https://theserogroup.com/sql-server/sql-server-disaster-recovery-6-ways-to-stress-test-your-plan/">Read more</a></p>
<p>The post <a href="https://theserogroup.com/sql-server/sql-server-disaster-recovery-6-ways-to-stress-test-your-plan/">SQL Server Disaster Recovery: 6 Ways to Stress-Test Your Plan</a> appeared first on <a href="https://theserogroup.com">The SERO Group</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>If disaster struck your data center right now, how quickly—and how cleanly—could your SQL Server environment recover?</p>



<p>It’s a question too many teams avoid until it’s too late. But between rising cybersecurity threats, growing compliance expectations, and increasing reliance on real-time data, a solid SQL Server disaster recovery (DR) plan is no longer optional.</p>



<p>Here’s how to assess your plan’s strength—and where to start if you’re not sure you’d pass the test.</p>



<h3 class="wp-block-heading" id="h-1-do-you-know-your-rpo-and-rto">1. Do You Know Your RPO and RTO?</h3>



<p>Your Recovery Point Objective (RPO) defines how much data you’re willing to lose. Your Recovery Time Objective (RTO) defines how quickly you need to be back online.</p>



<p>Together, these two metrics set the target for your disaster recovery plan. But we’ve seen organizations that think they have a DR plan—only to realize they’ve never clarified what “acceptable loss” actually means to the business.</p>



<p>Start by working with your business stakeholders to define these values. Then validate whether your current backups, logs, and failover strategies can actually meet them.</p>



<h3 class="wp-block-heading" id="h-2-nbsp-are-your-backups-frequent-verified-and-offsite">2.&nbsp;<strong>Are Your Backups Frequent, Verified, and Offsite?</strong></h3>



<p>Most SQL Server environments have <em>some</em> backup process in place. But that doesn’t mean the backup strategy is effective.</p>



<p>Ask yourself:</p>



<ul class="wp-block-list">
<li>Are backups scheduled frequently enough to meet your RPO?</li>



<li>Are you testing your ability to restore from backups regularly?</li>



<li>Are copies stored securely offsite (or in a different cloud region) in case of catastrophic failure?</li>
</ul>



<p>In our SQL Health Checks, we’ve seen corrupted backups, failed jobs, and local-only storage that would all fail under real-world disaster conditions. A good DR plan doesn’t just back up data—it proves you can get it back.</p>



<h3 class="wp-block-heading" id="h-3-nbsp-have-you-tested-your-disaster-recovery-plan-recently">3.&nbsp;<strong>Have You Tested Your Disaster Recovery Plan Recently?</strong></h3>



<p>You can’t consider your disaster recovery plan “ready” if you’ve never run a test failover.</p>



<p>Tabletop exercises are a great start—especially for small teams—but ideally, you should test end-to-end failover and recovery at least once a year. That means</p>



<ul class="wp-block-list">
<li>Simulating a system failure</li>



<li>Measuring time to recovery</li>



<li>Evaluating data loss</li>



<li>Reviewing stakeholder communication plans</li>
</ul>



<p>Don’t forget to test <em>people</em>, too. Everyone involved should know their role and how to execute it under pressure.</p>



<h3 class="wp-block-heading" id="h-4-nbsp-does-your-dr-plan-include-all-critical-dependencies">4.&nbsp;<strong>Does Your DR Plan Include All Critical Dependencies?</strong></h3>



<p>Even if your SQL Server environment comes back online quickly, that won’t matter if key application servers, file shares, or authentication systems are down.</p>



<p>A strong SQL Server disaster recovery plan takes into account all supporting systems:</p>



<ul class="wp-block-list">
<li>Application and web servers</li>



<li>Reporting tools (like SSRS or Power BI gateways)</li>



<li>Authentication (like Active Directory or Azure AD)</li>



<li>Networking and firewall configurations</li>
</ul>



<p>Your DR plan should address each of these and ensure that your failover environment mirrors production closely enough to support full functionality.</p>



<h3 class="wp-block-heading" id="h-5-nbsp-are-you-leveraging-the-right-technology">5.&nbsp;<strong>Are You Leveraging the Right Technology?</strong></h3>



<p>SQL Server offers multiple high-availability and disaster recovery (HADR) features, but they’re not all created equal. The best choice depends on your budget, environment size, and RPO/RTO needs.</p>



<p>Your options include</p>



<ul class="wp-block-list">
<li>Log shipping: Simple and reliable, but with slower failover requiring manual intervention.</li>



<li>Database mirroring: Deprecated but still in use in some legacy systems.</li>



<li>Always On Failover Cluster Instances (FCI): Protects against server failure.</li>



<li>Always On Availability Groups: Great for fast failover and readable secondaries, but more complex to set up and manage.</li>
</ul>



<p>The right SQL Server consulting partner can help you match your business needs to the most appropriate technology stack—and make sure it’s implemented correctly.</p>



<h3 class="wp-block-heading" id="h-6-nbsp-have-you-documented-and-updated-your-plan">6.&nbsp;Have You Documented and Updated Your Plan?</h3>



<p>Even the best disaster recovery setup won’t help you if no one knows how to use it, or it walks out the door in the head of your DBA or sysadmin. A strong DR plan is</p>



<ul class="wp-block-list">
<li>Written and version-controlled</li>



<li>Stored in a location accessible even during an outage</li>



<li>Reviewed and updated at least annually</li>



<li>Understood by all relevant stakeholders</li>
</ul>



<p>You want more than just a technical diagram—you want a full playbook your team can follow under stress.</p>



<h2 class="wp-block-heading" id="h-final-thoughts-dr-is-a-process-not-a-project"><strong>Final Thoughts: DR Is a Process, Not a Project</strong></h2>



<p>Disaster recovery isn’t a one-time task. As your environment evolves, so should your plan.</p>



<p>Make SQL Server disaster recovery a regular part of your IT operations—not just a compliance checkbox. Need help strengthening your DR plan? <a href="#https://theserogroup.com/contact-us/#schedule-a-call" target="_blank" rel="noreferrer noopener">Schedule a call with us</a>.</p>
<p>The post <a href="https://theserogroup.com/sql-server/sql-server-disaster-recovery-6-ways-to-stress-test-your-plan/">SQL Server Disaster Recovery: 6 Ways to Stress-Test Your Plan</a> appeared first on <a href="https://theserogroup.com">The SERO Group</a>.</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">7513</post-id>	</item>
	</channel>
</rss>
