Schema (SQL) vs Schema-less (NoSQL) Databases

The dilemma of choosing schema or schema-less databases. This post aims to simplify this key design decision.

Origins of Schema and Schema-less

The schema based databases has stood the test of time, in fact Relational Database Management Systems (RDBMS), have been a pioneer in this area.

Since the 1980s, and to the time of of this post, this type of database has been harnessed for:

And many other applications.

However, schema based databases are not perfect, in fact they did encounter issues during there time, which we continue to battle today. These issues include, the object-relational impedance mismatch between relational database and the object-oriented applications and many others that I will expand on later.

Additionally, there were attempts to address object-relational impedance mismatch issue with schema based databases, with the introduction of object database managements systems, which alleviated this issue particularly. An example of this is Object Relational Mapping (ORM) which in Java this is called the Java Persistence API, that is used for many enterprise Java applications.

Whilst this had success, the expanse of technology and challenges continued, such as horizontal scaling of node clusters. This resulted in the birth of NoSQL (schema-less databases).

The rise of NoSQL was during the 21st century and this gained popularity with the NoSQL hashtag, generally this was for those whom wanted to discuss new types of databases.

Furthermore, it is important to note that NoSQL databases are generally implemented with partial schemas, that are enforced by the Database Management System (DBMS) on a write basis, whilst with the integration of the application acting as an externalised schema on reads.

Although the name NoSQL does not have a direct connotations to what it is, it does however require it to be schema-less and typically the data store to be accessible using key value pairs.

Schema-less (NoSQL) Advantages