FreedomDev
TeamAssessmentThe Systems Edge616-737-6350
FreedomDev Logo

Your Dedicated Dev Partner. Zero Hiring Risk. No Agency Contracts.

201 W Washington Ave, Ste. 210

Zeeland MI

616-737-6350

[email protected]

FacebookLinkedIn

Company

  • About Us
  • Culture
  • Our Team
  • Careers
  • Portfolio
  • Technologies
  • Contact

Core Services

  • All Services
  • Custom Software Development
  • Systems Integration
  • SQL Consulting
  • Database Services
  • Software Migrations
  • Performance Optimization

Specialized

  • QuickBooks Integration
  • ERP Development
  • Mobile App Development
  • Business Intelligence / Power BI
  • Business Consulting
  • AI Chatbots

Resources

  • Assessment
  • Blog
  • Resources
  • Testimonials
  • FAQ
  • The Systems Edge ↗

Solutions

  • Data Migration
  • Legacy Modernization
  • API Integration
  • Cloud Migration
  • Workflow Automation
  • Inventory Management
  • CRM Integration
  • Customer Portals
  • Reporting Dashboards
  • View All Solutions

Industries

  • Manufacturing
  • Automotive Manufacturing
  • Food Manufacturing
  • Healthcare
  • Logistics & Distribution
  • Construction
  • Financial Services
  • Retail & E-Commerce
  • View All Industries

Technologies

  • React
  • Node.js
  • .NET / C#
  • TypeScript
  • Python
  • SQL Server
  • PostgreSQL
  • Power BI
  • View All Technologies

Case Studies

  • Innotec ERP Migration
  • Great Lakes Fleet
  • Lakeshore QuickBooks
  • West MI Warehouse
  • View All Case Studies

Locations

  • Michigan
  • Ohio
  • Indiana
  • Illinois
  • View All Locations

Affiliations

  • FreedomDev is an InnoGroup Company
  • Located in the historic Colonial Clock Building
  • Proudly serving Innotec Corp. globally

Certifications

Proud member of the Michigan West Coast Chamber of Commerce

Gov. Contractor Codes

NAICS: 541511 (Custom Computer Programming)CAGE CODE: oYVQ9UEI: QS1AEB2PGF73
Download Capabilities Statement

© 2026 FreedomDev Sensible Software. All rights reserved.

HTML SitemapPrivacy & Cookies PolicyPortal
  1. Home
  2. /
  3. Technologies
  4. /
  5. SQL Server
Core Technology Stack

SQL Server Consulting & Development Services

SQL Server performance tuning, cloud migration, SSIS/SSRS/SSAS development, and Always On high availability — from a team with 20+ years of production SQL Server experience. FreedomDev is based in Zeeland, Michigan. We fix slow queries, migrate on-premise databases to Azure SQL, and build the ETL pipelines and reporting infrastructure that enterprises depend on. Projects range from $10K tuning engagements to $500K+ full-stack database modernizations.

SQL Server
20+ Years SQL Server & .NET
Zeeland, Michigan (Grand Rapids Metro)
Performance Tuning & Execution Plan Analysis
Azure SQL Migration Specialists
Always On AG & Disaster Recovery

SQL Server Is the Engine Behind Your Business. Treat It Like One.

SQL Server runs the transactional backbone of more enterprises than any other commercial database engine. Your ERP processes orders through it. Your CRM stores every customer interaction in it. Your BI dashboards query it. Your compliance reports pull from it. When SQL Server is healthy, nobody thinks about it. When it is not, the entire business feels it — slow page loads, timeout errors, nightly ETL jobs that run past morning, reports that take 40 minutes to render.

The problem is rarely SQL Server itself. SQL Server 2022 is a mature, high-performance database engine with columnstore indexes, intelligent query processing, query store for regression detection, and native JSON support. The problem is what has accumulated around it over the years: stored procedures written by developers who left a decade ago, missing indexes that the missing index DMV has been begging for since 2018, parameter sniffing causing query plans that flip between 200ms and 200 seconds depending on which customer ID runs first, and tempdb contention from a single data file configuration that was never corrected after the initial install.

FreedomDev has been inside enterprise SQL Server environments for over two decades. We are not a generic cloud consultancy that treats SQL Server as one checkbox among many. We are the team that opens Activity Monitor at 2 AM when your overnight batch window blew past its deadline. We read execution plans the way a mechanic reads engine diagnostics — not just the estimated plan, but the actual plan with runtime statistics, looking for the implicit conversions, the key lookups, the hash spills to tempdb that explain why a query that should take 3 seconds takes 3 minutes.

This page covers the core areas of our SQL Server practice: performance tuning for slow databases, on-premise to cloud migration (Azure SQL Database, Azure SQL Managed Instance, SQL Server on Azure VMs), SSIS/SSRS/SSAS development and migration, high availability with Always On Availability Groups, and the specific project types we handle. If you are a DBA overwhelmed by a growing environment, a CTO evaluating Azure migration, or a developer fighting query performance, this is the practical breakdown of what we do and what it costs.

$10K–$40K
Typical SQL Server performance tuning engagement
80–95%
Query execution time reduction from systematic tuning
20+ Years
FreedomDev SQL Server & .NET experience
<30s
Always On AG automatic failover time (synchronous commit)
35-Day
Azure SQL point-in-time recovery retention
$150–$300/hr
US-based senior SQL Server consultant rate range

Need to rescue a failing SQL Server project?

Our SQL Server Capabilities

SQL Server Performance Tuning for Slow Databases

Performance tuning is where most engagements start. A database that was fine two years ago is now slow — queries that ran in seconds now take minutes, batch jobs overrun their window, users complain about timeouts. We start with the wait statistics (sys.dm_os_wait_stats) to identify the bottleneck category: is it CPU-bound, IO-bound, memory pressure, blocking, or network? Then we dig into the specifics. Missing index DMVs (sys.dm_db_missing_index_details) reveal indexes SQL Server has been requesting. Query Store shows plan regressions — queries that suddenly got worse because the optimizer chose a different execution plan. We analyze the top resource-consuming queries, look at actual execution plans for implicit conversions (the varchar-to-nvarchar comparison that kills index seeks), key lookups that should be eliminated with covering indexes, and parameter sniffing problems where a cached plan optimized for one parameter value performs catastrophically for another. Fixes range from simple index creation and statistics updates to query rewrites, plan guides, OPTIMIZE FOR hints, and sometimes schema changes. Typical engagement: 2-4 weeks, $10K-$40K, with measurable before/after metrics on every query we touch.

SQL Server Performance Tuning for Slow Databases
01

SQL Server Migration: On-Premise to Cloud

Three target options, each with different tradeoffs. Azure SQL Database is fully managed PaaS — no patching, automatic backups, built-in high availability — but it does not support cross-database queries, SQL Agent jobs, CLR assemblies, or linked servers. Azure SQL Managed Instance is near-100% compatible with on-premise SQL Server, supports cross-database queries and SQL Agent, and is the right choice for lift-and-shift when your application uses features that Azure SQL Database does not support. SQL Server on Azure VMs gives you full control and full compatibility but you own the patching and backups. We run Azure Database Migration Service (DMS) assessments to identify compatibility issues before any migration starts, then execute the migration with minimal downtime using transactional replication or log shipping for cutover. Pricing reality: Azure SQL Database starts at roughly $5/month for basic tier but enterprise workloads typically run $500-$3,000/month for business-critical tier. Managed Instance starts around $350/month for 4 vCores. We help you right-size so you do not overpay on day one or hit performance walls on day thirty.

SQL Server Migration: On-Premise to Cloud
02

SSIS, SSRS & SSAS Development

SQL Server Integration Services (SSIS) is still the ETL workhorse for Microsoft-centric enterprises. We build SSIS packages for data warehouse loading, cross-system data synchronization, file processing, and API-to-database ingestion. For organizations migrating to Azure, we handle SSIS-to-Azure Data Factory (ADF) migration — converting SSIS packages to ADF pipelines or running them in Azure-SSIS Integration Runtime when direct conversion is not practical. SQL Server Reporting Services (SSRS) is being sunset after SQL Server 2022 — we migrate SSRS reports to Power BI Report Server or Power BI Service, converting paginated RDL reports and reconfiguring subscriptions. SQL Server Analysis Services (SSAS) tabular and multidimensional models power enterprise BI — we build semantic models, optimize DAX calculations, and migrate on-premise SSAS to Azure Analysis Services when cloud is the target.

SSIS, SSRS & SSAS Development
03

SQL Server High Availability and Disaster Recovery

Always On Availability Groups (AGs) are the production HA standard for SQL Server 2016+. We architect and deploy Always On configurations — synchronous replicas for automatic failover within a datacenter, asynchronous replicas for disaster recovery across regions, read-only secondary replicas to offload reporting workloads from the primary. The architecture includes a Windows Server Failover Cluster (WSFC), proper quorum configuration (cloud witness for Azure hybrid, file share witness for on-premise), listener configuration for transparent client redirection, and connection string setup so your application fails over without code changes. Beyond Always On, we implement log shipping for simpler DR scenarios, transactional replication for distributing data to reporting servers, and backup strategies with point-in-time recovery testing — because a backup you have never restored is not a backup.

SQL Server High Availability and Disaster Recovery
04

SQL Server Projects We Handle

Database design and schema optimization for new applications. Stored procedure and T-SQL code review and refactoring. tempdb contention resolution (trace flags 1117/1118, multiple data files, memory-optimized tempdb metadata in SQL Server 2019+). Database consolidation — merging 15 SQL Server instances onto 3, right-sizing, licensing optimization. Version upgrades (SQL Server 2012/2014/2016 to 2022) with compatibility level testing. Security hardening — TDE implementation, row-level security, dynamic data masking, audit logging for compliance. Deadlock analysis and resolution using Extended Events. Capacity planning and growth forecasting based on historical resource consumption.

SQL Server Projects We Handle
05

Query Store & Intelligent Query Processing

Query Store is the single most impactful feature added to SQL Server since 2016. It captures query plans and runtime statistics over time, making plan regression detection trivial — when a query suddenly gets slow, Query Store shows you exactly when the plan changed and lets you force the previous good plan while you investigate. We enable and configure Query Store on every SQL Server 2016+ database we touch: setting appropriate retention periods, configuring capture modes, establishing baselines, and training your team to use the built-in reports. SQL Server 2022 extends this with intelligent query processing — adaptive joins, memory grant feedback, interleaved execution for multi-statement table-valued functions, and parameter sensitivity plan optimization that generates multiple plans for parameter-sniffing-prone queries. These features work automatically when you set the right compatibility level, but understanding when they help and when they interfere requires the kind of execution plan analysis experience we bring.

Query Store & Intelligent Query Processing
06

Need Senior Talent for Your Project?

Skip the recruiting headaches. Our experienced developers integrate with your team and deliver from day one.

  • Senior-level developers, no juniors
  • Flexible engagement — scale up or down
  • Zero hiring risk, no agency contracts
“
Our ERP database had gotten so slow that order entry took 20 seconds and month-end reports ran all night. FreedomDev spent three weeks analyzing execution plans and wait stats, created missing indexes, fixed parameter sniffing in our core stored procedures, and reconfigured tempdb. Order entry dropped to under 2 seconds. Month-end reports finish in 45 minutes. We should have called them two years ago.
IT Director—West Michigan Manufacturing Company

Perfect Use Cases for SQL Server

Manufacturing ERP Database Performance Recovery

A West Michigan manufacturer running a custom ERP on SQL Server 2016. The system had grown from 50GB to 800GB over eight years. Order entry screens took 15-20 seconds to load. Month-end close reports ran for 6 hours. The nightly ETL to the data warehouse failed three nights a week due to timeout. Root causes: 43 missing indexes identified by the missing index DMV that had been accumulating suggestions for years, a critical order lookup stored procedure suffering from parameter sniffing (the plan cached for customer ID 1 with 12 orders was being reused for customer ID 5000 with 2.4 million orders), and tempdb configured with a single data file on a server with 16 CPUs causing allocation contention. We created the missing indexes with proper included columns, applied OPTIMIZE FOR UNKNOWN to the parameter-sniffing procedures, reconfigured tempdb with 16 data files, and updated statistics across all tables. Order entry dropped to under 2 seconds. Month-end reports completed in 45 minutes. ETL has not failed since.

On-Premise SQL Server to Azure SQL Managed Instance Migration

A financial services company with three SQL Server 2014 instances (total 1.2TB) running in their own datacenter. Hardware was end-of-life, SQL Server 2014 extended support was expiring, and they wanted to eliminate datacenter costs. We ran Azure Database Migration Service assessments against all three instances, identified 14 compatibility issues (mostly deprecated syntax and cross-database queries), remediated the application code, and migrated to Azure SQL Managed Instance using online migration with log replay for near-zero downtime cutover. Post-migration: implemented geo-replication for DR, configured Azure Defender for SQL threat detection, and set up automated performance recommendations. Monthly infrastructure cost went from $8,500 (hardware amortization + datacenter fees + DBA time for patching) to $4,200 (Managed Instance Business Critical tier with reserved capacity pricing). More importantly, they eliminated the patching burden and gained automatic backups with 35-day point-in-time recovery.

SSIS to Azure Data Factory ETL Migration

An enterprise with 120+ SSIS packages running on a dedicated SQL Server Integration Services server. Packages handled everything from flat-file imports and FTP pulls to complex data warehouse loading with slowly changing dimensions. Moving to Azure meant the on-premise SSIS server had to go. We categorized the packages: 40 were simple source-to-destination loads that converted directly to ADF Copy Activities with minimal effort. 55 were complex transformations that we rebuilt as ADF Data Flows (the Spark-based transformation engine). 25 used custom Script Tasks with .NET code that had no direct ADF equivalent — for these we deployed Azure-SSIS Integration Runtime, which runs actual SSIS packages in the cloud without modification. The hybrid approach (native ADF + Azure-SSIS IR for the complex packages) was pragmatic: it eliminated the on-premise server while avoiding a 6-month rewrite of legacy .NET transformation logic.

Always On Availability Group Deployment for Healthcare System

A healthcare organization running patient records and billing on SQL Server 2019 with no high availability — a single server with nightly full backups to a network share. Any server failure meant up to 24 hours of data loss and 4-8 hours of recovery time. We deployed a two-node Always On Availability Group with synchronous commit for zero data loss automatic failover, plus an asynchronous replica in a secondary datacenter for disaster recovery. Configured a cloud witness in Azure for quorum, set up the AG listener so the application connection string did not need to change, and offloaded reporting workloads to the read-only secondary replica — which also resolved the locking contention that had been slowing down the billing application during report generation. RPO went from 24 hours to zero. RTO went from 4-8 hours to under 30 seconds for automatic failover.

We Integrate SQL Server With:

Azure SQL DatabaseAzure SQL Managed InstanceAzure Data FactorySSIS (SQL Server Integration Services)SSRS (SQL Server Reporting Services)SSAS (SQL Server Analysis Services)Power BIDynamics 365.NET / C#Azure DevOpsWindows Server Failover ClusteringActive Directory / KerberosOracle (cross-platform migration)PostgreSQL (migration target/source)

Talk to a SQL Server Architect

Schedule a technical scoping session to review your app architecture.

Frequently Asked Questions

How do I fix slow SQL Server queries?
Start with the actual execution plan, not the estimated plan. In SSMS, press Ctrl+M before running the query to capture the actual plan with runtime statistics. Look for the operators with the highest cost percentage, but more importantly look for discrepancies between estimated and actual row counts — when SQL Server estimates 100 rows but processes 2 million, it chose the wrong join strategy and the wrong memory grant, and everything downstream suffers. Common culprits: missing indexes (check sys.dm_db_missing_index_details for what SQL Server is requesting), implicit type conversions (a WHERE clause comparing a varchar column to an nvarchar parameter forces a table scan because the conversion prevents index seeking), parameter sniffing (the plan cached for one parameter value is catastrophic for another — fix with OPTIMIZE FOR UNKNOWN, plan guides, or RECOMPILE hints on specific statements), and stale statistics (run UPDATE STATISTICS on tables where auto-stats has not triggered because the table is large and the modification counter threshold has not been met). Also check for key lookups — when SQL Server finds a row via a nonclustered index but then must look up additional columns from the clustered index, adding those columns as INCLUDE columns to the nonclustered index eliminates the extra IO. Query Store is invaluable here: it shows you the historical performance of every query, identifies plan regressions, and lets you force a known-good plan while you investigate. FreedomDev typically reduces problematic query execution time by 80-95% through this systematic analysis — not by guessing, but by reading what the execution plan is telling us.
Should I migrate SQL Server to Azure SQL?
It depends on which Azure SQL target you are evaluating, because they are three very different products. Azure SQL Database is fully managed PaaS with automatic patching, built-in HA, and intelligent performance tuning — but it does not support SQL Agent jobs, cross-database queries, CLR assemblies, linked servers, Service Broker, or Database Mail. If your application uses any of those features, Azure SQL Database requires application changes. Azure SQL Managed Instance supports nearly 100% of on-premise SQL Server features including SQL Agent, cross-database queries, and CLR — it is the closest to lift-and-shift. SQL Server on Azure VMs gives you full compatibility with complete OS and instance control, but you own the patching, backups, and HA configuration. Cost comparison: a General Purpose Azure SQL Database with 4 vCores and 100GB storage runs roughly $450/month. A comparable Managed Instance is roughly $700/month. The same spec on an Azure VM is roughly $400/month plus your DBA time for maintenance. For most enterprises migrating from on-premise, Managed Instance is the sweet spot — nearly zero application changes, no patching burden, and 35-day automatic point-in-time recovery. Run Azure Database Migration Service (DMS) assessment first to get a compatibility report specific to your databases before making the decision. FreedomDev provides a fixed-price migration assessment ($5K-$15K depending on instance count) that gives you a concrete compatibility report, target recommendation, cost projection, and migration plan.
What is SQL Server Always On availability?
Always On Availability Groups (AGs) are SQL Server's enterprise high availability and disaster recovery solution, available in Standard and Enterprise editions since SQL Server 2016. An AG is a group of databases that fail over together as a unit. The primary replica handles all read-write traffic. Secondary replicas receive transaction log records and apply them continuously. In synchronous-commit mode, the primary waits for the secondary to harden the log before acknowledging the transaction to the client — this guarantees zero data loss on failover but adds a small latency penalty (typically 1-3ms within the same datacenter). In asynchronous-commit mode, the primary does not wait, which means failover may lose the most recent transactions but has no performance impact on the primary — this mode is used for disaster recovery replicas across geographically distant datacenters. The AG listener is a virtual network name that your application connects to. When failover occurs, the listener automatically redirects connections to the new primary, so your application connection string does not change. Secondary replicas can be configured as read-only to offload reporting and analytics workloads from the primary, which is one of the most practical benefits in real-world deployments — your SSRS reports and Power BI DirectQuery connections hit the secondary while OLTP transactions run uncontested on the primary. Enterprise edition supports up to 8 secondary replicas and automatic seeding. Standard edition supports a basic AG with one database and one secondary replica. FreedomDev deploys Always On AGs for production workloads including the underlying Windows Server Failover Cluster, quorum configuration, listener setup, and application connection string configuration.
How much does SQL Server consulting cost?
US-based SQL Server consultants with senior-level expertise charge $150-$300 per hour. The rate reflects specialization depth — a generalist DBA who also happens to manage SQL Server is at the low end; a consultant who reads actual execution plans, tunes Query Store, resolves parameter sniffing, and architects Always On Availability Group deployments is at the upper end. For project-based work, here is what FreedomDev typically sees across our engagement types: Performance tuning engagement (audit top resource-consuming queries using wait statistics and execution plan analysis, identify bottlenecks, implement index and query fixes with measured before/after metrics on every change) runs $10,000-$40,000 over 2-4 weeks. A single-instance cloud migration to Azure SQL — including DMS compatibility assessment, application code remediation for any breaking changes, migration execution with minimal downtime, and post-migration validation — runs $15,000-$50,000 depending on database size, number of compatibility issues, and target platform (Azure SQL Database vs. Managed Instance vs. VM). SSIS/SSRS migration projects range from $20,000 for a small package inventory to $150,000+ for enterprises with 100+ SSIS packages or hundreds of SSRS reports requiring conversion to Power BI. Always On AG deployment (including Windows Server Failover Cluster setup, synchronous and asynchronous replica configuration, listener setup, application connection string updates, and failover testing) runs $15,000-$30,000. Full database modernization — performance tuning, cloud migration, ETL migration, HA setup, and security hardening combined — can reach $200,000-$500,000+ for large multi-instance environments. We provide fixed-price estimates after a discovery phase so there are no hourly billing surprises. A 1-2 week discovery engagement ($5,000-$15,000) maps your entire SQL Server environment and produces a concrete project plan with cost breakdowns for each phase.

Official Resources

Microsoft SQL Server →

Explore More

Database ServicesSQL ConsultingData MigrationCloud MigrationBusiness IntelligenceCustom Software DevelopmentAzureDotnetPower BISsisSsrsSsasPostgresqlOracle Db

Need Senior SQL Server Talent?

Whether you need to build from scratch or rescue a failing project, we can help.