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. To be able to restore data consistency, Postgres maintains

2 / 20

2. What is a schema?

3 / 20

3. What is the purpose of the template1 database?

4 / 20

4. Which of below are predefined schemas?

choose 3

5 / 20

5. What is the purpose of the template0 database?

6 / 20

6. What is the purpose of wal writer?

7 / 20

7. What command is used to create the Postgres cluster?

8 / 20

8. Which fork is specific for unlogged tables?

9 / 20

9. Postgres server spawns a new backend session for each connection?

10 / 20

10. A Postgres cluster consists of 2 or more physical servers accessing one Postgres Instance?

11 / 20

11. What is the purpose of the postgres database?

12 / 20

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

13 / 20

13. System Catalog tables begin with which prefix?

14 / 20

14. Each Database has its own System Catalog?

15 / 20

15. What column in system catalogs servers as the Primary Key

16 / 20

16. Each tablespaces can only be assigned for use by one database

17 / 20

17. Tablespaces are used to define physical data layout?

18 / 20

18. Which fork keeps track of available space within pages?

19 / 20

19. What is the point of the pg_global tablespace?

20 / 20

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

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. The more locks a transaction acquires, the better it is isolated from other transactions?

2 / 10

2. Which parameters sets the database default isolation level?

3 / 10

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

4 / 10

4. A phantom read anomaly occurs when?

5 / 10

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

6 / 10

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

7 / 10

7. What is the default Isolation Level?

8 / 10

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

Select more than 1 answer below:

9 / 10

9. non-repeatable read anomaly occurs when?

10 / 10

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

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. What does an Item Pointer contain?

choose 3

4 / 10

4. Postgres table physical data files are always cross compatible across platforms?

5 / 10

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

6 / 10

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

7 / 10

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

8 / 10

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

9 / 10

9. Page header sizes can be easily displayed using the <choose from answers> extension

10 / 10

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

Your score is

0%