Introduction to Replication in PostgreSQL 0 (0)

Introduction to Replication in PostgreSQL Introduction to Replication:-     Replication refers to the process of copying modifications in data from the Primary database to the Standby database. Both these databases are usually located on different physical servers and help in distributing various types of database queries. Replication is implemented in PostgreSQL using a master-slave

Loading

Read More

Schema in PostgreSQL 0 (0)

Schema in PostgreSQL In PostgreSQL, a schema is a namespace that contains database objects such as tables, views, indexes, data types, functions, stored procedures. A database can contain one or multiple schemas and each schema belongs to only one database. PostgreSQL automatically creates a public schema for every new database. Whatever DB objects are created

Loading

Read More