Postgres Quiz Archive

You have 200 seconds to answer 20 Random questions so think fast!

You will need to score 80% or over to pass!


Created by Paul Sammy

PostgreSQL 14 Internals Chapter 1

A quiz to test the knowledge of those reading and learning from Postgres 14 Internals book by Egor Rogov, covering topics in Chapter 1.

1 / 20

Postgres by default has built in connection pooling abilities?

2 / 20

Postgres uses a thread based process model?

3 / 20

What is the purpose of wal writer?

4 / 20

Which fork contains the actual table data?

5 / 20

What 3 files/forks as a minimum make up a table on disk?

6 / 20

What is a schema?

7 / 20

System Catalog tables begin with which prefix?

8 / 20

Each tablespaces can only be assigned for use by one database

9 / 20

How many files or forks on disk will a 10Mb table with no index have?

10 / 20

What is the name of the system catalog table for relations?

11 / 20

Which of the below objects can be referred to as relations?

choose 3

12 / 20

What is the name of the 2 default tablespaces created after initialization?

choose 2

13 / 20

To be able to restore data consistency, Postgres maintains

14 / 20

What is the name of the mechanism used to store a row bigger than a page size?

15 / 20

Postgres server spawns a new backend session for each connection?

16 / 20

How does Postgres know which schema to use if not specified?

17 / 20

What is the point of the pg_global tablespace?

18 / 20

A schema can belong to more than one database?

19 / 20

What command is used to create the Postgres cluster?

20 / 20

What column in system catalogs servers as the Primary Key

Your score is

0%

Created by Paul Sammy

PostgreSQL 14 Internals Chapter 2

A quiz to test the knowledge of those reading and learning from Postgres 14 Internals book by Egor Rogov, covering topics in Chapter 2.

1 / 10

Based on Snapshot Isolation use of MVCC which of the below are permitted?

choose 3

2 / 10

Lost updates are forbidden by the standard at all isolation levels?

3 / 10

A phantom read anomaly occurs when?

4 / 10

which of the below statements will start a transaction as Read Repeatable?

5 / 10

Data Consistency is best handled at the application layer rather than at the database layer?

6 / 10

Snapshot isolation is preferred but increases the number of required locks?

7 / 10

Which of the below would best describe a dirty read?

8 / 10

The SQL standard specifies three isolation levels?

9 / 10

What is the default Isolation Level?

10 / 10

Which isolation level in theory could mean an application does not have to consider isolation anomalies?

Your score is

0%

Created by Paul Sammy

PostgreSQL 14 Internals Chapter 3

A quiz to test the knowledge of those reading and learning from Postgres 14 Internals book by Egor Rogov, covering topics in Chapter 3.

1 / 10

CLOG Pages are never cached in memory?

2 / 10

The page Special Space is located at the start of the page with highest address

3 / 10

To identify different versions of one and the same row, PostgreSQL marks each of them with which two value?

4 / 10

If a transaction is read only which kind of Transaction ID is it allocated?

5 / 10

CLOG files are stored in which directory?

6 / 10

Which function can we use to find the current transaction ID?

7 / 10

Which 2 of the below represent transaction IDs used for row versioning?

8 / 10

The page header stores checksum and the sizes of the other parts of the page?

9 / 10

psql provides a special mode that allows you to continue a transaction after a failure?

10 / 10

If a transaction aborts, all page changes are reverted(rolled back) in place?

Your score is

0%