Introduction of NewSQL | Set 2 Last Updated : 11 Jul, 2025 Comments Improve Suggest changes 2 Likes Like Report Prerequisite - Introduction to NoSQL, Difference between SQL and NoSQL The term NewSQL is not exactly as wide as NoSQL. NewSQL systems all begin with the relational data model and the SQL query language and they all attempt to cover portion of similar types of scalability, flexibility or lack-of-focus that has driven the NoSQL development. Many offer more grounded consistency guarantees. However, inside this group there are numerous distinctions. HANA was made to be a business reporting system which could handle a transactional load a perfect fit for deployment of SAP. In traditional Microsoft SQL server in-memory processing ability is added by Hekaton. Both the systems are designed in order to improve the OldSQL systems directly. NuoDB is first cluster based SQL database, which runs on multiple nodes over various datacenters and make underlying system manage data consistency and locality for you This comes at a cost in performance and consistency for arbitrary workloads. NuoDB is the closest to being called eventually consistent of the NewSQL systems. MemSQL focus on the clustered analytics, MemSQL provide faster analysis of OLAP as compared to Old SQL systems. VoltDB is most stable database system among these systems, which combines analysis of streaming data, native clustering and strong ACID guarantees. This permit VoltDB to be the system of record for the applications which are data intensive, while providing combine high throughput, low latency ingestion engine. Possibly you have huge amount of data which require high speed transactional access You have incoming data stream and require transactions to calculate responses and analysis in real time. The data analysis and decision making must be computed me request in batch processing scenario. In such case NewSQL systems become useful. The NewSQL Advantages Less complex applications, greater consistency. Convenient standard tooling. SQL influenced extensions. More traditional data and query models for NoSQL-style clustering. The NewSQL Disadvantages Less generalized as current SQL. For terabytes, memory architectures are inefficient. Access to the rich tooling of current SQL systems is rational. Create Quiz Comment R romin_vaghani Follow 2 Improve R romin_vaghani Follow 2 Improve Article Tags : SQL DBMS-SQL BigData Explore BasicsWhat is SQL?6 min readSQL Data Types3 min readSQL Operators5 min readSQL Commands | DDL, DQL, DML, DCL and TCL Commands4 min readSQL Database Operations3 min readSQL CREATE TABLE3 min readQueries & OperationsSQL SELECT Query3 min readSQL INSERT INTO Statement4 min readSQL UPDATE Statement3 min readSQL DELETE Statement3 min readSQL - WHERE Clause2 min readAliases in SQL2 min readSQL Joins & FunctionsSQL Joins (Inner, Left, Right and Full Join)4 min readSQL CROSS JOIN1 min readSQL | Date Functions3 min readSQL | String functions6 min readData Constraints & Aggregate FunctionsSQL NOT NULL Constraint2 min readSQL PRIMARY KEY Constraint5 min readSQL Count() Function4 min readSQL SUM() Function2 min readSQL MAX() Function3 min readAVG() Function in SQL2 min readAdvanced SQL TopicsSQL Subquery5 min readWindow Functions in SQL6 min readSQL Stored Procedures7 min readSQL Triggers5 min readSQL Performance Tuning6 min readSQL TRANSACTIONS6 min readDatabase Design & SecurityIntroduction of ER Model9 min readIntroduction to Database Normalization5 min readSQL Injection11 min readSQL Data Encryption5 min readSQL Backup4 min readWhat is Object-Relational Mapping (ORM) in DBMS?7 min read Like