Introduction of PostgreSQL


Introduction of PostgreSQL
PostgreSQL introduction
PostgreSQL is an object-relational database management system and the most advanced open-source database system. PostgreSQL has active development of more than 15 years and a proven architecture which has earned it a strong reputation for reliability, data integrity, and accuracy. It was developed based in POSTGRES 4.2 at the Berkeley Computer Science Department, University of California. PostgreSQL supports almost all the platforms Linux, UNIX (AIX, BSD, HP-UX, SGI IRIX, Mac OS X, Solaris, Tru64), and Windows.
In this article, we will cover the following topics:
1-   A Brief History of PostgreSQL
2-   PostgreSQL features
3-   What makes PostgreSQL stand out
4-   Who is using PostgreSQL

A Brief History of PostgreSQL
PostgreSQL, originally called Postgres, was created at UCB by a computer science professor named Michael Stonebraker. Stonebraker started Postgres in 1986 as a follow-up project to its predecessor, Ingres, now owned by Computer Associates.

1977-1985 − A project called INGRES was developed.
·         Proof-of-concept for relational databases
·         Established the company, Ingres, in 1980
·         Bought by Computer Associates in 1994

1986-1994 − POSTGRES
·         Development of the concepts in INGRES with a focus on object orientation and the query language - Quel
·         The code base of INGRES was not used as a basis for POSTGRES
·         Commercialized as Illustra (bought by Informix, acquired by IBM)

1994-1995 − Postgres95
·         Support for SQL was added in 1994
·         Released as Postgres95 in 1995
·         Re-released as PostgreSQL 6.0 in 1996
·         Establishment of the PostgreSQL Global Development Team

PostgreSQL features
PostgreSQL has many advanced features that other enterprise database management systems offer, such as:
·         User-defined types
·         Table inheritance
·         Sophisticated locking mechanism
·         Foreign key referential integrity
·         Views, rules, subquery
·         Nested transactions (savepoints)
·         Multi-version concurrency control (MVCC)
·         Asynchronous replication
The recent versions of PostgreSQL support the following features:
·         Native Microsoft Windows Server version
·         Tablespaces
·         Point-in-time recovery

What makes PostgreSQL stand out?
PostgreSQL is the first database management system that implements a multi-version concurrency control (MVCC) feature, even before Oracle. The MVCC feature is known as snapshot isolation in Oracle.
PostgreSQL is a general-purpose object-relational database management system. It allows you to add custom functions developed using different programming languages such as C/C++, Java, etc.
PostgreSQL is designed to be extensible. In PostgreSQL, you can define your own data types, index types, functional languages, etc. If you don’t like any part of the system, you can always develop a custom plugin to enhance it to meet your requirements, e.g., adding a new optimizer.
If you need any support, an active community is available to help. You can always find the answers from the PostgreSQL’s community for the issues that you may have when working with PostgreSQL. Many companies offer commercial support services in case you need one.

Who is using PostgreSQL
Many companies have built products and solutions using PostgreSQL. Some featured companies are Apple, Fujitsu, Red Hat, Cisco, Juniper Network, etc. Check out the PostgreSQL’s featured users section for the complete list of organizations that are using PostgreSQL.

Related Posts

What is the Use of isNaN Function in JavaScript? A Comprehensive Explanation for Effective Input Validation

In the world of JavaScript, input validation is a critical aspect of ensuring that user-provided data is processed correctly. One indispensa...