Senior Database Administrator
Octagos Health
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.
- 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.
- 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.
- 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.
- 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.
- 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.
- 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.
- 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.
- 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.
- Paid Time Off
- Health, dental, and vision insurance
- Competitive salary commensurate with experience
- Opportunity to shape a critical function at a growing healthcare technology company
- ...care is delivered. Role Summary We are looking for a hands-on Database Administrator to own performance, reliability, and observability for our... ...Required Qualifications 10+ years of experience as a DBA or Senior DBA, with at least 2 years managing Azure SQL Database or Azure...SeniorTemporary workWork at officeRemote workFlexible hours
- ...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
- ...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
- ...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
- NAVA Software solutions is looking for a Sr. Oracle EBS Consultant Details: Sr Oracle EBS Consultant Location: Houston, TX. Hybrid Duration: 6-12 months Skills: Oracle EBS Procurement & Financial Expertise Oracle Order...Senior
$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- ...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
- 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
- ...Senior Director, Principal Gifts About the Company Philanthropic organization supporting Indigenous culture & individuals Industry Non-Profit Organization Management Type Non Profit Founded 2017 Employees 11-50 Categories ~ Non-Profit & Philanthropy...Senior
- ...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
- ...Job Description Job Description A database administrator (DBA) isresponsible 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...
- ...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
- ...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...
- ..., 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 FINBOAs databases across both client-facing...Flexible hours
- ...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...
- 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
- We are seeking a skilled and detail-oriented Database Administrator to join our IT team. The ideal candidate will be responsible for the performance, integrity, and security of our databases. This role includes planning, development, and troubleshooting, as well as ensuring...
$113k - $165k
...Database Administrator Specialist Eaton's Corporate Sector division is currently seeking a Database Administrator Specialist. The expected annual salary range for this role is $113000 - $165000 a year. Please note the salary information shown above is a general...Permanent employmentRelocation- ...MS SQL Database Administrator Location: Houston, TX Duration: 6 Months CTH This is a W2 position that requires candidates to be onsite for 3 days in a week (Hybrid role). Job description: Architects advanced, strategic DBMS solutions, supports development...3 days per week
- ...Database Administrator We are seeking a citizen, perm resident or green card holder with excellent communication in Houston in or near North West Houston. Candidate must be in Houston, Texas and must be able to travel into the office 2 days a week with no restrictions...Permanent employmentWork at office2 days per week
- ~8 to 10 years of hands-on experience in JDE Sales & Distribution (S&D) modules. ~ Strong understanding of Order Management, Pricing, ATP, and Inventory processes in JDE. ~ Prior experience in integration projects involving external quoting or CRM systems...
- Job Title 10-12 years of experience working with Oracle Fusion HCM, with a focus on Core HR modules. In-depth understanding of Core HR processes, configurations, and best practices. Strong troubleshooting and problem-solving skills, with the ability to analyze ...
$85 per hour
...CNC roles Strong understanding of JDE architecture tools and application updates Experience with Oracle and SQL databases Familiarity with operating systems such as Linux Windows and AS400 Knowledge of cloud platforms like Oracle Cloud...Work at office- ...Electrical Engineer (Senior - Principal) Location: TX, US We are looking for the right people — people who want to innovate, achieve, grow and lead. We attract and retain the best talent by investing in our employees and empowering them to develop themselves and...SeniorFull time
$131k - $174k
...responsibility for assigned ERP Kittyhawk and bolt-on applications' databases and platforms and responsibility for ERP Kittyhawk related... ...security controls. Partner with vendors, service providers, and senior leaders to select and manage database hardware, software, and...SeniorPermanent employmentContract workFor contractorsRemote workVisa sponsorshipWork visaRelocation packageWeekend work
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
- remote dba Houston, TX
- data administrator Houston, TX
- remote database administrator Houston, TX
- database manager Houston, TX
- senior game producer Houston, TX
- senior manager process engineering Houston, TX
- senior manager clinical operations Houston, TX

