Senior Database Administrator
OCTAGOS HEALTH, INC.
Job Description Job Description:\n\n Octagos is modernizing remote cardiac monitoring with AI-powered automation, seamless EHR integrations, and accuracy proven in high-volume, real-world clinics. Atlas AI™ triages cardiac device transmissions to filter nonactionable alerts and highlights the events that need true clinical attention. Through our Two-Brain Approach™ – combining Atlas AI™ with IBHRE-certified oversight – Octagos delivers 99%+ accuracy, sensitivity, and specificity for near-perfect clinical performance. With fast bi-directional EHR integrations, and flexible, cost-effective implementation, Octagos helps clinics scale care efficiently without compromise. Recognized by TIME and Statista as one of the World’s Top HealthTech Companies 2025, Octagos is redefining how cardiac care is delivered. Role Summary We are looking for a hands-on Database Administrator to own performance, reliability, and observability for our Azure SQL Server environment. Our database tier spans multiple schemas (production, Power BI reporting, analytics, ETL procedures, audit, support, and watchtower), supports 300+ stored procedures and views, and runs scheduled Azure Elastic Jobs. This role will proactively monitor database health, diagnose regressions, and lead advanced SQL tuning and indexing efforts to keep clinical workflows fast and dependable. The ideal candidate is not someone who simply keeps the lights on. We need a DBA who designs for query performance from day one, establishes SQL standards that prevent tech debt, and partners with application engineers to keep the full stack (SQL to C# EF to Angular) aligned, performant, and maintainable. You will set the standard for how the team writes, reviews, and optimizes SQL, with a strong focus on database health monitoring and advanced performance tuning.This is an In-Office position based in Houston, Texas. Key Responsibilities Data Architecture and Modernization Drive data architecture improvements (table decomposition, normalization) across core entities (Clinic, Patient, Device, Transmission).Rationalize andoptimizeviews: remove redundancy, flatten view-on-view chains, and improve optimizer effectiveness.Design read/write separation strategies, including Redis caching for high-read, low-write data (settings, lookups, device metadata).Optimizeanalytics/ETL stored procedures and Azure Elastic Jobs that drive reporting.Conduct proof-of-concept testing for schema changes (e.g., extension tables vs. EAV patterns) and present data-driven recommendations to engineering leadership with migration paths and rollback plans.Manage schema evolution usingDbUpmigrations, ensuring backward compatibility, zero-downtime deployments, and a documented blast-radius assessment for every migration that touches dependent stored procedures, views, Entity Framework models/mappings, and Angular interfaces.Maintain a living data dictionary and entity relationship documentation covering all schemas (dbo,pbi, analytics, audit, support, watchtower), key tables, column-level lineage, and cross-schema dependencies. Performance Tuning and Query Optimization Lead continuous performance tuning and database health monitoring– Identify and resolve slow queries, blocking, deadlocks, and resource bottlenecks before they impact clinical operations. Analyze execution plans, leverage Query Store for regression detection, and maintain index health (rebuild/reorganize schedules, statistics freshness) across high-volume tables including Transmission,Transmission Status Map, Patient, and Patient Device Information.Develop and maintain an index strategy covering clustered, non-clustered, filtered, and covering indexes. Evaluate indexed views for high-read-frequency reporting views. Track index usage stats and remove unused indexes that add write overhead.Partner with .NET engineers to optimize Entity Framework (EF) data access patterns: review generated SQL,eliminateN+1 query patterns, tune projections and includes, and ensure parameterization/type alignment to preserve index seeks.Optimize Hangfire job-related queries and the analytics ETL pipeline to ensure scheduled jobs complete within their time windows without competing for resources with real-time portal queries.Enforces argable query patterns by identifying and refactoring anti-patterns such as functions on indexed columns in WHERE clauses, cursors used for row-by-row processing, SELECT * in stored procedures, and NOLOCK hints applied without DBA approval.Own tempdb contention management: identify procedures creating excessive temp table churn, recommend CTE or table variable alternatives for small datasets, and monitor tempdb allocation wait stats.Run periodic performance reviews (top queries, waits, plan regressions/parameter sniffing) and deliver actionable remediation plans. Standards, Best Practices and Governance Define and enforce stored procedure standards across the engineering team: SET NOCOUNT ON, SET XACT_ABORT ON with transactions, TRY/CATCH error handling, proper parameterization, pagination with OFFSET/FETCH or keyset, and the standards naming convention. Author and maintain a SQL development style guide covering naming conventions for all object types (stored procedures, views, functions, indexes, schemas), parameter design, error handling patterns, transaction scoping rules, and comment/documentation requirements. Enforce standard active-record filters across all data-access objects and build automated checks to detect missing filters in new or modified stored procedures. Establish code review standards for all SQL changes: require execution plan review for any query touching high-volume tables, mandate index impact assessment for schema migrations, and enforce consistent use of time zone conversion patterns (AT TIME ZONE) for SessionDate display. Implement anti-pattern detection as part of the CI/CD pipeline or periodic audit: flag cursors, SELECT *, missing SET NOCOUNT ON, string-concatenated dynamic SQL, functions on indexed columns in WHERE clauses, and transactions wrapping read-only queries. Enforce cross-layer data structure alignment: SQL column types/nullability must match C# DTO/entity properties, EF mappings must stay in sync with schema changes, and enum/lookup table values must remain synchronized across SQL, C#, and Angular. Govern the analytics schema pattern, create and maintain stored procedure and view templates that the engineering team can use as starting points, ensuring every new database object follows established patterns from day one. Database Operations and Reliability Administer and monitor MySQL and Azure SQL databases across development, staging, and production environments, ensuring 99.9%+ uptime for a platform that processes cardiac device transmissions around the clock. Manage capacity planning, elastic pool sizing, and Azure SQL tier optimization, balancing performance against cost as clinic onboarding accelerates. Own backup and restore strategies, point-in-time recovery testing, and disaster recovery runbook maintenance for databases containing PHI. Monitor and triage performance alerts using Azure Monitor, Application Insights, and custom OpenTelemetry telemetry dashboards. Coordinate maintenance windows for index rebuilds, statistics updates, and schema migrations with zero downtime to clinical operations. Security, Compliance, and Access Control Implement and enforce HIPAA-compliant data access controls, auditing, and encryption (TDE, Always Encrypted where applicable) across all schemas. Manage database-level permissions, row-level security, and service account credentials in alignment with SOC 2 Type II requirements. Ensure PHI never appears in stored procedure PRINT/RAISERROR messages, dynamic SQL trace outputs, plan cache, error messages, or URL parameters. Participate in security audits, vulnerability remediation, and PHI exposure assessments at the database tier. Security Data Quality and Observability Execute and extend the data quality playbook including automated SQL checks, KPIs, and remediation runbooks that monitor data integrity across the Clinic, Patient, Device, Transmission hierarchy. Build and maintain database health dashboards covering query performance, wait statistics, DTU/vCore utilization, job success rates, tempdb contention, and blocking/deadlock trends. Instrument custom telemetry events at the database layer integrated with the platform’s OpenTelemetry and Application Insights observability stack. Collaboration and Documentation Serve as the database subject-matter expert across the engineering organization, supporting US (Houston) and India development teams. Contribute to architecture decision records (ADRs) for database-impacting changes, including schema migrations, index strategies, and caching layer design. Document database objects, data flows, schema dependencies, stored procedure inventories, and operational runbooks in the team wiki (Azure DevOps Wiki / GitHub Wiki). Participate in sprint ceremonies, root-cause analysis (RCA) reviews, and cross-functional working sessions with application engineers, QA, and the data team. Required Qualifications 10+ years of experience as a DBA or Senior DBA, with at least 2 years managing Azure SQL Database or Azure SQL Managed Instance in a production SaaS environment. Proven track record of designing and evolving data architectures: table decomposition, schema normalization, denormalization strategies for reporting, and migration planning across hundreds of dependent database objects. Deep expertise in T-SQL performance tuning: execution plans, index strategies (clustered, non-clustered, filtered, covering, indexed views), wait statistics, Query Store, parameter sniffing diagnosis, and Resource Governor. Strong experience with stored procedure development following structured patterns (SET NOCOUNT ON, TRY/CATCH, parameterized queries, pagination with OFFSET/FETCH or keyset) and the ability to establish and enforce these standards across a team. Ability to optimize complex views with 10 to 15+ joins, diagnose nested view performance degradation, flatten view-on-view chains, and recommend indexed view strategies for high-read workloads. Experience authoring SQL development standards, style guides, and review checklists that are adopted by application engineering teams. Hands-on experience with Azure database services: elastic pools, geo-replication, automated backups, threat detection, auditing, and cost optimization. Solid understanding of HIPAA technical safeguards, encryption requirements, and audit logging for healthcare data at the database tier. Experience with CI/CD-based schema migrations (DbUp, Flyway, or similar) and the discipline to assess blast radius across dependent stored procedures, views, and application-layer DTOs before every migration. Experience partnering with .NET engineers using Entity Framework (EF) in production systems, including understanding how LINQ patterns translate to SQL and how to avoid common performance pitfalls (N+1 queries, over-fetching, missing indexes). Strong written and verbal communication skills; comfortable collaborating with a distributed engineering team across US and India time zones and presenting architecture recommendations to engineering leadership. Preferred Qualifications Experience in healthcare SaaS, particularly with cardiac remote monitoring, medical devices, or clinical data workflows involving PHI. Experience leading data architecture modernization projects: table decomposition, schema refactoring, ETL pipeline redesign, or data warehouse/reporting layer buildout. Track record of authoring and enforcing SQL development standards across a multi-team engineering organization. Familiarity with Power BI Embedded and writing DAX-optimized SQL views including CTE latest-run consumption patterns. Exposure to Hangfire or similar job scheduling frameworks and their database footprint (table locks, cleanup, dashboard queries). Experience administering databases that support RPA/automation workflows with high-frequency insert/update patterns. Azure certifications (AZ-900, DP-300, or AZ-500) are a plus. Experience with SOC 2 Type II audit preparation and evidence collection at the database tier. Technology Environment Layer Technologies Database Azure SQL Server (dbo, pbi, analytics, audit, support, watchtower schemas), SSMS, Azure Data Studio Backend API .NET 8 / C# with Entity Framework (EF), ASP.NET Core Web API Migrations DbUp, Azure Elastic Jobs ETL / Reporting Analytics, ETL patterns, Power BI Embedded Caching Redis Observability Azure Monitor, Application Insights, OpenTelemetry, custom dashboards CI/CD GitHub, Azure DevOps Auth Auth0 with role-based access control, clinic-level data isolation Compliance HIPAA, SOC 2 Type II Compensation and BenefitsPaid Time OffHealth, dental, and vision insuranceCompetitive salary commensurate with experienceOpportunity to shape a critical function at a growing healthcare technology company
- ...Overview: Role: Senior SQL DBA with AWS ( Architect Level ) Duration: 12 months... ...systems. Configure and maintain database servers and processes, including monitoring... ...and optimization SQL Server administration (Always On, Replication, Alerting)...Senior2 days per week
- We are seeking a Senior Analyst for Oracle E-Business Systems, release R12.2.10 and above. This person will work effectively under minimal supervision and provide technical support for developing and supporting customizations and extensions covering modules in Finance...SeniorLong term contractPermanent employment
- A global consulting firm located in Houston is seeking a Technology Analysis Senior to bridge business and technical solutions. This role involves analyzing business processes, client engagement, and delivering impactful revenue recognition strategies in a dynamic environment...Senior
- Oracle Database Administrator Responsibilities: Play a major role in Oracle database maintenance, monitoring, and tuning activities Install and configure new databases based on best practices Perform day‑to‑day database administration on existing databases, including...SeniorTemporary workLocal area
- LTM is seeking an experienced Oracle Database Administrator in Houston, Texas. The role includes responsibilities such as database maintenance, installation, tuning, and providing mentorship. Comprehensive benefits include medical plans, a 401(k) with company match, and...Senior
- ...Senior Oracle SCM Functional Consultant We are seeking an experienced Senior Oracle SCM Functional Consultant with deep expertise in Oracle SCM modules to lead design, implementation, and support of Supply Chain Management solutions. The ideal candidate will bring...Senior
$113k - $165k
Eaton is looking for a Database Administrator Specialist in Houston, Texas. This role involves leading technical projects, implementing security and compliance standards, and designing database architecture. The candidate should possess a Bachelor's degree and have over...Senior- A healthcare technology company is looking for a hands-on Database Administrator to enhance the performance and reliability of their Azure SQL Server environment in Houston, Texas. The successful candidate will monitor database health, optimize queries, and ensure compliance...SeniorWork at office
$113k - $165k
Eaton’s Corporate Sector division is currently seeking a Oracle APPS Database Administrator. The expected annual salary range for this role is $113000 - $165000 a year. Please note the salary information shown above is a general guideline only. Salaries are based upon...SeniorPermanent employmentLocal areaRelocation- ...Job Description Job Description Title: Senior Enterprise DBA Vulnerability Remediation Location... ...DBA experience Strong experience in database vulnerability remediation and patching Oracle Database administration (installations, upgrades, patching) Oracle...SeniorRemote workWork from homeFlexible hours
$77k - $202k
...provides transparency on the skills we need as individuals to be successful and progress in our careers, now and in the future. As a Senior Associate, you'll work as part of a team of problem solvers, helping to solve complex business issues from strategy to execution....SeniorFull timeWork experience placementH1b- A global consulting organization seeks a Senior Technology Analyst to support ERP projects and bridge the gap between business needs and technology solutions. You will analyze requirements, collaborate with teams, and ensure successful implementations of Oracle Financial...SeniorFlexible hours
- ...Sr. Staff Database Administrator We are a rapidly growing E&P company that presents a challenging and rewarding work environment for its personnel. We are looking for motivated self-starters with a background of driving value across the organization and a demonstrated...Senior
- NAVA Software solutions is looking for a Oracle Functional - Manufacturing consultant Details: Sr Oracle Manufacturing Functional consultant Location: Houston TX - 3 days/week onsite Duration: 6-12 months Client is looking for a consultant...Senior3 days per week
- NAVA Software solutions is looking for a Sr. Oracle Manufacturing Functional Consultant Details: Sr. Oracle Manufacturing Functional consultant Location: Houston TX - 3 days/week onsite Duration: 12+ months Details: Fully functional...Senior3 days per week
- NAVA Software solutions is looking for a Sr. Oracle Order Management/OTC Consultant Details: Sr. Oracle Order Management/OTC Consultant Location: Houston TX - 3 days/week onsite Duration: 12 months + Skills: Oracle SCM, Order Management...Senior3 days per week
- A prominent data management firm in Houston is seeking a Senior Data Management Specialist with 7-10 years of experience. The ideal candidate will provide quality data to support critical business decisions and ensure the integrity and consistency of data management processes...Senior
- Oracle Projects Sr Consultant Role: Oracle Projects Sr Consultant for Oracle Project Module Location: Houston, TX Duration: 8 Months Pay Rate: 65-75/hr plus expenses JD: 12+ years of experience in Oracle Projects. Experience with Oracle Project Modules such...Senior
- ...OCI Database Administrator (DBA) Location: Houston, TX [Hybrid] Type: Long term contract Job Description: Deploy and configure Oracle Autonomous Transaction Processing (ATP) databases within OCI. Manage and maintain ATP environments to ensure high availability...Long term contract
- ...Database Administrator A database administrator (DBA) is responsible for managing and maintaining an organization's databases to ensure they are secure, reliable, and perform efficiently. Key duties include installing and configuring database systems, monitoring performance...
- ...professional development (LOMA testing) and a company-wide wellness program. Scope and Purpose: We are seeking an experienced Database Administrator (DBA) to support mission-critical Health & Life insurance systems. This role is responsible for the reliability,...Work at officeImmediate startFlexible hours
- ...Multiskill - MongoDB, CosmosDB Administration DB Mgmt - Configure Azure CosmosDB/MongoDB for NoSQL database and containers. Move data into and out of Azure CosmosDB/MongoDB Database Management and maintenance activities - access, space, patching, deployment etc. Perform...
- ...Database Management: DBA Duration: 12 Months (CTH) Location: Houston, TX (60% onsite role: 2-3 days in a week onsite) This... ...IT infrastructure, with a background in systems and network administration ~ Strong development skills in a dynamic programming language...Work experience placement2 days per week3 days per week
- ...Responsibilities Kforce has a client that is seeking a Database Administrator in Houston, TX.About the Client:Our client is a long-... ...education, qualifications, certifications, experience, skills, seniority, location, performance, union contract and business needs....Hourly payContract workWork at office
- ...Provide strategic and operational support to ensure company databases run efficiently, securely, and reliably in support of business... ...and performance monitoring of all databases. Partner in the administration and upkeep of Unix/Linux servers hosting the databases and provide...
$89.68k - $117k
...operational excellence, and cutting-edge technology across the financial services industry. Position Overview The Database Administrator (DBA) is responsible for the performance, integrity, security, and availability of FINBOA's databases across both client-facing...Flexible hours$114.14k - $156.61k
Young World Physical Education is seeking a Principal Coach for School Improvement in Houston, Texas. The role involves coaching school principals to implement the Effective Schools Framework, aiming to advance learning environments and maximize student outcomes. Ideal ...Senior- A legal data intelligence platform is seeking a Technical Leader to drive the development of innovative cloud-native solutions. The role focuses on solving complex problems, shaping technical standards, and guiding teams in a fast-paced environment. Candidates should have...Senior
- ...strong CAD skills and relevant experience, along with the ability to interpret engineering instructions. Positions are available for Senior and Principal levels, requiring a background in various engineering disciplines. A standard 40-hour work week is scheduled, with...Senior
- A leading financial services firm in Houston, Texas, is seeking a skilled financial analyst with at least 5 years of experience in financial analysis and modeling. The ideal candidate will have excellent communication and negotiation skills, ability to solve complex problems...Senior
Do you want to receive more vacancies?
Subscribe and receive similar vacancies to Senior Database Administrator. Be the first to apply!
- database administrator Houston, TX
- senior database administrator Houston, TX
- database assistant Houston, TX
- data administrator Houston, TX
- database manager Houston, TX
- senior game producer Houston, TX
- senior manager process engineering Houston, TX
- senior manufacturing engineer Houston, TX
- senior manager clinical operations Houston, TX
- senior lead project manager Houston, TX

