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
- ...Role description Oracle Database Administrator Primary Skill Have Good experience ORACLE as DBA Play Major Role in Oracle database maintenance monitoring and tuning activities Install and configure new databases based on best practices Perform...Senior
- ...Senior Analyst for Oracle E-Business Systems 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...SeniorLong term contractPermanent employment
- ...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
- ...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
- ...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, troubleshooting...Suggested
- ...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...Senior
- Overview The 10 cities near Houston, TX that have the most job openings are: College Station Round Rock Pearland Waco Pasadena Killeen Corpus Christi Austin San Antonio League City The 10 most popular job searches in Houston, TX are: amazon work from home construction ...Hourly payFull timeTemporary workPart timeWork at officeLocal areaImmediate startWork from home
- ...service, 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
- ...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...Local area
- ...PostgreSQL Database Administrator – In Office (Houston, TX) Summary | ATSER is seeking a highly skilled and security-focused PostgreSQL Database Administrator with deep expertise in Azure PostgreSQL PaaS, replication, and Row-Level Security (RLS). This position plays...Work at office
$75.2k - $131.7k
...purposeful work and meaningful impact every day. Learn more about what makes us different and how you can make your mark as a Database Administrator at MMA. Marsh McLennan Agency (MMA) provides business insurance, employee health & benefits, retirement, and private...Minimum wagePermanent employmentLocal areaRemote workNight shift- ...Administrative Specialist (Senior - Principal) Date: Jun 17, 2026 Location: Houston, TX, US, 77032 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...SeniorFull timePart timeSecond jobWork at officeWork from home
- Job Description Job Description Enlist as a Soldier into the United States Army and become a certified Signals Collection Analyst (35S), you'll gather clues from radio frequencies and electronic signals to detect and collect coded foreign intelligence messages. ...Civilian ContractorPermanent employmentRelocation package
- ...Description Job Description We are looking for a Senior DataOps/Data Platform Administrator to manage and maintain our hybrid data ecosystem. This... ...Profile Experience: 5+ years in a Systems Admin, Database Admin (DBA), or DataOps role. Denodo Admin: Practical...SeniorOngoing contract
- ...operators to reduce non-productive time and maximize asset value. About the Role Under general supervision, the R&D Electronics Engineer (Senior) serves as a technical lead on development projects supporting next-generation downhole drilling technologies. This role...SeniorFull timePart timeWork from home
- ...Business Development (Rep. - Rep. Senior - Rep. Principal) Wireline and Perforating Date: Jul 9, 2026 Location: Houston, TX, US, 77032 We are looking for the right people — people who want to innovate, achieve, grow and lead. We attract and retain the best talent...SeniorFull timeContract workPart timeSecond jobWork from home
- The Houston East End Chamber of Commerce is seeking an Events Specialist to plan and execute impactful events. This role requires exceptional organizational skills, attention to detail, and a proactive mindset. The ideal candidate will have experience in event planning...Senior
- A logistics company is hiring an HL/OOG Specialist for their Houston branch. This role involves technical solutions development for project logistics, managing client relationships, and negotiating with suppliers. Candidates should have over 5 years of relevant experience...Senior
- ...Senior Tax Manager Houston, Texas, United States Or refer someone Job Openings Senior Tax Manager About the Job Senior Tax Manager Senior Tax Manager Minimum Requirements: ~5 Years working in Public Accounting ~ CPA licence or CPA Candidate....Senior
- ...R&D Pulse Power Engineer (Senior - Principal) Sperry Drilling Date: Jun 13, 2026 Location: Houston, TX, US, 77032 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...SeniorFull timePart timeWork from home
- kept.pro is seeking an experienced accounting professional in Houston, Texas, to become a vital team player. Candidates should have over 4 years of experience in accounting, proficiency in QuickBooks Online, and a strong analytical mindset. The role includes performing...Senior
- A telecommunication construction company is seeking a detail-oriented Warehouse and Logistics Manager to oversee the efficient movement and storage of materials. This critical role involves managing all aspects of warehouse operations, inventory control, and logistics ...Senior
- A public healthcare provider in Texas is seeking a Sterile Processing Technician III to manage decontamination, assembly, and sterilization of surgical instruments. The role demands a minimum of three years of experience in central sterile processing and relevant certifications...SeniorFlexible hours
- ...Clearwater at the Heights in Houston is seeking a dedicated Maintenance Assistant to ensure the upkeep and maintenance of a premier senior living community. The role involves general maintenance tasks, problem-solving, and supervising staff to maintain a safe and...Senior
- Pennington Partners & Co. in Houston, TX, is seeking a Health & Wellness Specialist (Functional Medicine Nutritionist) dedicated to advancing client wellness through expert nutrition guidance. You will have the opportunity to provide personalized coaching and develop engaging...Senior
- Senior Loan Closer Job Description JOB SUMMARY : The Senior Loan Closer is primarily responsible for coordinating, assigning, reviewing and verifying loan documentation and closing needs for diverse and complex consumer, commercial and industrial loans, including real...SeniorFull timeImmediate start
- Division: Neurology Work Arrangement: Location: Houston, TX Salary Range: FLSA Status: Exempt Work Schedule: Summary The Department of Neurology at Baylor College of Medicine is seeking a qualified physician...Senior
- ...Encompass Health is seeking a Senior Clinical Rehab Liaison in Houston, Texas. This role requires a clinical license and at least 3-5 years of experience. The chosen candidate will provide community education, develop marketing strategies, and assist in referrals. Employees...Senior
- Texas-Capital-Bank in Houston is looking for a seasoned banking professional with at least 10 years of relevant experience. The role involves managing client relationships and providing tailored wealth management solutions. The ideal candidate will possess strong communication...Senior
- ...Our client, a National Third-Party Administrator, is looking for a Senior Workers' Compensation Adjuster for their Direct Hire opening. This is a hybrid position, reporting to their Houston office 2 days a week. Requirements: 5+ years handling Lost Time Workers Compensation...SeniorWork at office2 days per week
Do you want to receive more vacancies?
Subscribe and receive similar vacancies to Senior Database Administrator. Be the first to apply!
- data administrator Houston, TX
- database administrator Houston, TX
- database assistant Houston, TX
- database manager Houston, TX
- senior game producer Houston, TX
- senior electronic design engineer Houston, TX
- senior robotics software engineer Houston, TX
- senior specialist Houston, TX
- sr project engineer Houston, TX
- senior electrical designer Houston, TX



