RDBMS

RDBMS #

Shredding Splitting an entity into multiple relationshsips [Person, Education, Experience]

Schema on Write #

Strict enforcement of schema unlike NoSQL databases that has loose schema (Schema on Read).

Schema Changes #

Schema changes are hard to change without downtime. Database migration tools must be used for easier maintance and roll backs.

  • Liquibase
  • Flyway