shared database termsmell
anti-pattern: multiple services hitting the same DB schema
When multiple services share a database schema, you've coupled them at the worst layer — schema changes ripple, transactions stretch across services, ownership becomes ambiguous. Sometimes a deliberate trade-off (early-stage simplicity), often an accidental drift. The opposite of database-per-service.