Q1
True / FalsePostgreSQL can only be hosted on Linux operating systems.
PostgreSQL can be hosted on multiple operating systems, including Linux, Windows, and macOS.
Q2
True / FalsePostgreSQL hosting in the cloud is limited to only Amazon Web Services (AWS).
PostgreSQL can be hosted on various cloud platforms, including AWS, Google Cloud Platform (GCP), Microsoft Azure, and more.
Q3
True / FalsePostgreSQL offers native support for clustering and replication.
PostgreSQL supports various methods of replication and clustering, including physical replication, logical replication, and solutions like Patroni for high availability.
Q4
True / FalsePostgreSQL's default port for database connections is 5433.
The default port for PostgreSQL database connections is 5432.
Q5
True / FalsePostgreSQL supports hosting databases with multi-tenant architectures using schemas.
PostgreSQL supports multi-tenancy by allowing multiple schemas within a single database, providing isolation between different tenants.
Q6
True / FalseIn PostgreSQL, the pgAdmin tool is not capable of remote database management.
pgAdmin is a powerful tool for managing PostgreSQL databases and can be used to manage remote PostgreSQL instances.
Q7
True / FalsePostgreSQL's native backup tool, pg_dump, supports parallel backups for faster performance.
pg_dump supports the -j (jobs) option, which allows parallel backups to improve performance by using multiple threads.
Q8
True / FalsePostgreSQL does not support hosting in containers using Docker.
: PostgreSQL can be easily hosted in containers using Docker, providing a flexible and portable environment for database instances.
Q9
True / FalsePostgreSQL supports logical replication, which allows selective replication of specific tables or even specific columns.
Logical replication in PostgreSQL allows for the replication of individual tables or even specific columns, enabling fine-grained control over the replication process.
Q10
True / FalsePostgreSQL allows setting up replication slots to ensure data consistency during streaming replication.
Replication slots in PostgreSQL help manage and ensure data consistency during streaming replication by preventing the removal of WAL segments needed by the standby servers.