Drop Down MenusCSS Drop Down MenuPure CSS Dropdown Menu

PostgreSQL UnderStanding Of Objects

  • A PostgreSQL database cluster contains one or more named databases. 
  • Users and groups of users are shared across the entire cluster and tablespace, but no other data is shared across databases. 
  • Any given client connection to the server can access only the data in a single database, the one specified in the connection request. 
  • Furthermore, database is collection of database objects such as schema, which contains table, view, sequence, functions and other database objects.
  • A database cluster is a collection of databases that is stored at a common file system location (the "data area"). Or A database cluster is a collection of databases that are managed by a single server instance. 
  • It is possible to have multiple database clusters so long as they use different data areas and different communication ports. One postmaster and port per cluster. Accessed from a single “Data Directory”.
  • A database is a named collection of SQL objects (table , function, etc).
Pg_database
A database is a collection of schemas and the schemas contain the tables functions, etc.

Comments

Popular posts from this blog

Oracle DBMS SCHEDULER Examples

How to find the server is whether standby (slave) or primary(master) in Postgresql replication ?

7 Steps to configure BDR replication in postgresql

How to Get Table Size, Database Size, Indexes Size, schema Size, Tablespace Size, column Size in PostgreSQL Database

vacuumlo - removing large objects orphans from a database PostgreSQL