DBDB.io The Encyclopedia of Database Systems · Est. 2017
Database of Databases

Database Entry

NonStop SQL


NonStop SQL is a database management system designed for 24x7 availability, high scalability, and excellent performance of online transaction processing (OLTP). The availability is achieved by isolation -- the transactions affected by hardware or software failures will be recovered without affecting other transactions. As for scalability, NonStop SQL is able to scale up almost linearly. It's regarded as a base for highly parallel systems. The fast OLTP is due to the row-partition storage model and fine granularity. The lock on data can be at the individual row level.

NonStop SQL is widely used in stock exchanges, banks, and telecommunications.

Database Entry

NonStop SQL


NonStop SQL is a database management system designed for 24x7 availability, high scalability, and excellent performance of online transaction processing (OLTP). The availability is achieved by isolation -- the transactions affected by hardware or software failures will be recovered without affecting other transactions. As for scalability, NonStop SQL is able to scale up almost linearly. It's regarded as a base for highly parallel systems. The fast OLTP is due to the row-partition storage model and fine granularity. The lock on data can be at the individual row level. NonStop SQL is widely used in stock exchanges, banks, and telecommunications.

Data Model


NonStop SQL supports the basic features of relational database management systems. What distinguish it from many other relational DBMS are the additional features providing excellent OLTP performance, availability, and scalability.

Indexes


NonStop SQL supports B+ tree index. By default, the primary key is used as the index of a table. To speed up the non-primary key look up, an index table can be created based on selected columns.

Query Compilation


The query compiler transforms the SQL source commands into executable query plans in host language. The executable query plans and the SQL source commands are stored in a newly created object program file.

Query Execution


Storage Architecture


The data of every table is stored in one or more disk files. Each disk file has a label storing the name and catalog information of the associated table.

Storage Model


NonStop SQL uses the N-ary Storage Model, which is appropriate for heavy OLTP workloads.

Views


Whenever a view is created, NonStop SQL stores a view definition instead of the materialized table. Whenever a user selects data from a view, the data is directly retrieved from the underlying base tables.

Citations

3 sources
  1. https://www.hpe.com/us/en/servers/nonstop.html hpe.com Dead — Check Archive
  2. Introduction to NonStop SQL/MP hpe.com
  3. NonStop SQL - Wikipedia wikipedia.org
Revision #12