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. Tablespaces can be used to segregate data based on performance needs?

2 / 20

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

3 / 20

3. Which of below are predefined schemas?

choose 3

4 / 20

4. Files are logically split into pages?

5 / 20

5. What is the default standard size for a fork file?

6 / 20

6. System Catalog tables begin with which prefix?

7 / 20

7. Postgres uses a thread based process model?

8 / 20

8. What is the point of the pg_global tablespace?

9 / 20

9. What is a schema?

10 / 20

10. Who is the Author of the Postgres 14 Internals book?

11 / 20

11. It is the postmasters job to listener for incoming connections?

12 / 20

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

13 / 20

13. Which fork contains the actual table data?

14 / 20

14. A single Postgres Instance can server only one database?

15 / 20

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

16 / 20

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

17 / 20

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

18 / 20

18. Which fork is specific for unlogged tables?

19 / 20

19. The pg_default tablespace should never be used to create user tables?

20 / 20

20. What is the purpose of autovacuum?

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 of the below statements will start a transaction as Read Repeatable?

2 / 10

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

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. At any moment the database system can contain several versions of one and the same row?

7 / 10

7. Which parameters sets the database default isolation level?

8 / 10

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

9 / 10

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

choose 3

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. virtual IDs exist only in PGDATA/pg_vxid when not cached?

2 / 10

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

3 / 10

3. CLOG Pages are never cached in memory?

4 / 10

4. Which of the below are true about a Pages Item Pointer?

5 / 10

5. When a row is created, its xmin value is set to the transaction ID of which command?

6 / 10

6. The page header is located in the highest address?

7 / 10

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

8 / 10

8. indexes do not use row versioning?

9 / 10

9. Indexes values also support multi versioning with several versions of an index value existing at any point in time?

10 / 10

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

Your score is

0%