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

1. What is a schema?

2 / 20

2. Which fork is specific for unlogged tables?

3 / 20

3. Which of below are predefined schemas?

choose 2

4 / 20

4. Which of below are predefined schemas?

choose 3

5 / 20

5. To understand each other, a client and a server must use one and the same interfacing protocol?

6 / 20

6. TOAST tables reside in a seperate schema?

7 / 20

7. What is the purpose of the template0 database?

8 / 20

8. What is the purpose of the public schema?

9 / 20

9. How many rows in a page does Postgres aim to have before considering TOAST?

10 / 20

10. System Catalog tables begin with which prefix?

11 / 20

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

12 / 20

12. What is the purpose of autovacuum?

13 / 20

13. Tablespaces are used to define physical data layout?

14 / 20

14. Some System Catalog tables are common to all databases in the cluster?

15 / 20

15. pg_catalog schema is used to store system catalog tables?

16 / 20

16. What is the name of the catalog that stores metadata for all cluster objects?

17 / 20

17. Each Database has its own System Catalog?

18 / 20

18. What is the purpose of the postgres database?

19 / 20

19. To be able to restore data consistency, Postgres maintains

20 / 20

20. If we create a new tablespace which directory will symbolic links be created from?

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

1. Which parameters sets the database default isolation level?

2 / 10

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

3 / 10

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

4 / 10

4. Which of the below would best describe a dirty read?

5 / 10

5. Which of the below are valid Isolations Levels?

choose 2

6 / 10

6. What are some of database features we can use to avoid a non repeatable read?

Select more than 1 answer below:

7 / 10

7. What is the acronym used for the attributes that ensure Data consistency, integrity and durability?

8 / 10

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

9 / 10

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

10 / 10

10. At any moment the database system can contain several versions of one and the same row?

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

1. a transaction containing a savepoint is will still be considered as only a single transaction?

2 / 10

2. at any one time Postgres can have several versions of a row?

3 / 10

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

4 / 10

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

5 / 10

5. CLOG Pages are never cached in memory?

6 / 10

6. UPDATE can be regarded as which 2 separate operations?

7 / 10

7. Each page has a layer that usually consists of?

choose 2

8 / 10

8. CLOG contains how many bits for each transaction?

9 / 10

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

10 / 10

10. index row headers like table row headers contain xmin and xmax fields?

Your score is

0%